#!/bin/bash hvconfig_pre() { # --enable-zlib-dynamic: To handle compressed kernel modules. CONFIGURE_OPTS="\ ${CONFIGURE_OPTS} \ --enable-zlib-dynamic \ --mandir=/usr/share/man" } hvbuild() { make -j ${MAKEJOBS} # 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 }