#!/bin/bash hvconfig_pre() { # To avoid a problem with regenerating the man pages when not needed, # first rewrite a file that just points to another man page: echo '.so man5/modprobe.conf.5' > ${LFS_TMP}/${PACKAGE}/modprobe.d.5 # --enable-zlib-dynamic: To handle compressed kernel modules. CONFIGURE_OPTS="\ --prefix=/usr \ --bindir=/bin \ --sbindir=/sbin \ --sysconfdir=/etc \ --enable-zlib-dynamic" } hvbuild() { make # INSTALL=install # 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. make INSTALL=install install } hvbuild_post() { install -dv ${LFS}/etc/modprobe.d }