Corrections erreurs de compilation udev et module-init-tools, et déplacé les éxécutab...
authorgobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Sun, 8 Jan 2012 01:54:34 +0000 (01:54 +0000)
committergobo72 <gobo72@364a67c3-989e-7be9-548d-dae8560ea662>
Sun, 8 Jan 2012 01:54:34 +0000 (01:54 +0000)
stage2/hv-install-2
stage2/pkg/dhcp
stage2/pkg/module-init-tools
stage2/pkg/udev

index 824ff26..d9ed780 100755 (executable)
@@ -41,7 +41,7 @@ FORCE_UNSAFE_CONFIGURE=1 ipkg ${TAR_PACKAGE} "--bindir=/bin --libexecdir=/usr/sb
 ipkg ${TEXINFO}
 ipkg ${UDEV}
 ipkg ${GRUB}
-ipkg -m acnb ${DHCP}
+ipkg -m acnb ${DHCP} "--exec-prefix=/"
 
 if [ -n "${WIFI_SUPPORT}" ]; then
     PREFIX=/usr ipkg -m noac -s wireless-tools ${WIRELESS_TOOLS}
index ce13b4b..391e31f 100644 (file)
@@ -1,16 +1,5 @@
 #!/bin/bash
 
-hvconfig_pre()
-{
-    CONFIGURE_OPTS=""
-}
-
-hvbuild()
-{
-    ${HVMAKE}
-    ${HVMAKE} LIBDIR=/usr/lib INCDIR=/usr/include install
-}
-
 hvbuild_post()
 {
     # This is for the DHCP client
index e7b8c1d..5a0d77d 100644 (file)
@@ -6,6 +6,8 @@ hvconfig_pre()
     # first rewrite a file that just points to another man page:
     echo '.so man5/modprobe.conf.5' > ${LFS_TMP}/${PACKAGE}/modprobe.d.5
 
+    export DOCBOOKTOMAN=/bin/true
+
     # --enable-zlib-dynamic: To handle compressed kernel modules.
     CONFIGURE_OPTS="\
         --prefix=/usr \
@@ -29,4 +31,6 @@ hvbuild()
 hvbuild_post()
 {
     install -dv ${LFS}/etc/modprobe.d
+
+    unset DOCBOOKTOMAN
 }
index 1cea3cb..aa2c177 100644 (file)
@@ -2,6 +2,8 @@
 
 hvconfig_pre()
 {
+    # --disable-keymap: to remove gperf dependency
+
     CONFIGURE_OPTS="\
         ${CONFIGURE_OPTS} \
         --sbindir=/sbin \
@@ -9,6 +11,8 @@ hvconfig_pre()
         --libexecdir=/lib/udev \
         --docdir=/usr/share/doc/${PACKAGE} \
         --disable-extras \
+        --disable-hwdb \
+        --disable-keymap \
         --disable-introspection"
 }