X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage2%2Fpkg%2Fmodule-init-tools;h=a7d9c13978542e996af4dcb171561286e3b1c896;hb=1eb363044c6ee3115e62736aed4403b750082b44;hp=44a2aa64c7de8a23392305d94b13f6229161d06d;hpb=b5bfb2006502b57fab234345a2393fd04e6d55ad;p=hvlinux.git diff --git a/stage2/pkg/module-init-tools b/stage2/pkg/module-init-tools old mode 100755 new mode 100644 index 44a2aa6..a7d9c13 --- a/stage2/pkg/module-init-tools +++ b/stage2/pkg/module-init-tools @@ -1,14 +1,17 @@ #!/bin/bash -# --enable-zlib-dynamic: To handle compressed kernel modules. -CONFIGURE_OPTS="\ - --enable-zlib-dynamic \ - --mandir=/usr/share/man \ - ${CONFIGURE_OPTS}" +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} + make -j ${MAKEJOBS} DOCBOOKTOMAN="" # INSTALL=install # Normally, make install will not install the binaries if they already @@ -19,7 +22,5 @@ hvbuild() hvbuild_post() { - cat > /etc/modprobe.conf << "EOF" -# modprobe.conf -EOF + install -dv ${LFS}/etc/modprobe.d }