The Module-Init-Tools package contains programs for handling kernel modules in Linux kernels greater than or equal to version 2.5.47.
Prepare Module-Init-Tools for compilation:
./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
--prefix=/ --enable-zlib
The meaning of the configure options:
This allows the Module-Init-Tools package to handle compressed kernel modules.
Compile the package:
make
Install the package:
make DESTDIR=${CLFS} INSTALL=install install
The meaning of the make parameter:
Normally, make install will not install the binaries if they already exist. This option overrides that behavior by calling install instead of using the default wrapper script.