helper/init: Handle compressed modules transparently.
authorErik Nolte <erik_nolte@acm.org>
Thu, 6 Oct 2011 20:31:37 +0000 (14:31 -0600)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 14 Oct 2011 09:57:46 +0000 (10:57 +0100)
commita98be5ba1deea4f0b46eb4273ea278e3e0eb87ea
tree17363a8abd6becd363e13e9663d09844e7122a90
parent359718fa6c7ff177ef3413552f57a174d7205102
helper/init: Handle compressed modules transparently.

Detect libz and, if present, define HAS_LIBZ and add -lz to Makefile's
LIBS variable.

Add entry on optional zlib package requirement.

Detect both uncompressed and gzipped kernel modules.

Some Linux distros (like ArchLinux) use gzipped kernel modules with
filenames like ext2.ko.gz.  This change modifies the filename pattern
from (e.g.) "ext2.ko" to "ext2.ko*".

When available, use libz to read the module.

The init_module system call requires uncompressed kernel module bytes.
On some systems (e.g. ArchLinux) the modules are gzipped on disk.
Libz is used to read and uncompress gzipped disk files (*.ko.gz) or
transparently read uncompressed modules (*.ko).
README
configure.ac
helper/ext2initrd.c
helper/init.c