#!/bin/bash # --enable-zlib-dynamic: To handle compressed kernel modules. CONFIGURE_OPTS="\ --enable-zlib-dynamic \ --mandir=/usr/share/man \ ${CONFIGURE_OPTS}" 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() { cat > /etc/modprobe.conf << "EOF" # modprobe.conf EOF }