Displaying 1 result from an estimated 1 matches for "mod_libc_wrapper".
2005 May 23
3
module-init-tools ported to klibc
...the following two patches (one
for klibc) and a big one (several smaller incorporated to one) to
modules-init-tools enables running modprobe and friends in early user space.
There are some issues so I post here for discussion
The porting strategy was copied from the udev package. I make a file
mod_libc_wrapper.{c,h} in order to provide the missing functionality.
The port was quite easy. The following pieces were:
1)
int fnmatch(pattern, string, flags) (3) implementation. I copied this
one, from udev package. I would post it against libc but the udev
implementation does not care for flags. Luckily mod...