Use symlinks for busybox utils
authorAndrew Gaffney <agaffney@gentoo.org>
Tue, 25 Nov 2008 18:39:25 +0000 (12:39 -0600)
committerAndrew Gaffney <agaffney@gentoo.org>
Tue, 25 Nov 2008 18:39:25 +0000 (12:39 -0600)
Use full path to mount since it gets grumpy without it in later bb versions for some reason

ChangeLog
netboot/linuxrc.x

index 5caa35bb2e79417941c4c4a71f3b8e211c7e452c..241d31be4bb367d974b7de4768105a42ee1b039c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2008 Gentoo Foundation; 2008 Chris Gianelloni, Andrew Gaffney
 # Distributed under the GPL v2
 
+  25 Nov 2008; Andrew Gaffney <agaffney@gentoo.org> netboot/linuxrc.x:
+  Use symlinks for busybox utils Use full path to mount since it gets grumpy
+  without it in later bb versions for some reason
+
   17 Nov 2008; Andrew Gaffney <agaffney@gentoo.org> gen_initramfs.sh:
   Break apart cryptsetup stuff into separate append_luks() and make
   append_auxillary() dependent on ${BUSYBOX} for gentoo bug #247052
index 230e260873c7fb04a60781f6a96b00d8eb0034c0..7a8463488e0fd1e92f38320835011a92a50fd6e3 100644 (file)
@@ -27,12 +27,12 @@ BasicSetup() {
 StartUp() {
        if [ ! -f "/tmp/.startup" ]; then
                #// Mount proc && sys
-               mount proc      /proc           -t proc                 # /proc
-               mount sys       /sys            -t sysfs                # /sys
-               mount mdev      /dev            -t tmpfs  -o size=800k  # /dev for mdev
+               /bin/mount proc /proc           -t proc                 # /proc
+               /bin/mount sys  /sys            -t sysfs                # /sys
+               /bin/mount mdev /dev            -t tmpfs  -o size=800k  # /dev for mdev
 
                #// Let busybox build its applets
-               /bin/busybox --install
+               /bin/busybox --install -s
 
                #// Create additional mount points
                mkdir           /dev/pts