changeset 368:2c5b02b47c8e

Switch to building defconfig busybox. (Keep trimmed config anyway.)
author Rob Landley <rob@landley.net>
date Fri, 18 Jul 2008 09:00:05 -0500
parents b375712e7634
children 943e01ae5603
files host-tools.sh mini-native.sh
diffstat 2 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/host-tools.sh	Fri Jul 18 08:58:09 2008 -0500
+++ b/host-tools.sh	Fri Jul 18 09:00:05 2008 -0500
@@ -112,7 +112,8 @@
   if [ ! -f "${HOSTTOOLS}/busybox" ]
   then
     setupfor busybox &&
-    make allnoconfig KCONFIG_ALLCONFIG="${SOURCES}/config-busybox" &&
+    # make allnoconfig KCONFIG_ALLCONFIG="${SOURCES}/config-busybox" &&
+    make defconfig &&
     make -j $CPUS &&
     make busybox.links &&
     cp busybox "${HOSTTOOLS}"
--- a/mini-native.sh	Fri Jul 18 08:58:09 2008 -0500
+++ b/mini-native.sh	Fri Jul 18 09:00:05 2008 -0500
@@ -67,7 +67,8 @@
 # Build and install busybox
 
 setupfor busybox
-make allnoconfig KCONFIG_ALLCONFIG="${SOURCES}/config-busybox" .config &&
+#make allnoconfig KCONFIG_ALLCONFIG="${SOURCES}/config-busybox" .config &&
+make defconfig &&
 make -j $CPUS CROSS_COMPILE="${ARCH}-" &&
 make busybox.links &&
 cp busybox "${TOOLS}/bin"
@@ -76,6 +77,7 @@
 do
   ln -s busybox "${TOOLS}/bin/$i" # || dienow
 done
+rm "${TOOLS}/bin/sh" &&
 cd ..
 
 cleanup busybox