From de93b4bb8d7cfd8fac297014f5d54eb7416b2a4e Mon Sep 17 00:00:00 2001 From: Andrew Gaffney Date: Tue, 25 Nov 2008 12:39:25 -0600 Subject: Use symlinks for busybox utils Use full path to mount since it gets grumpy without it in later bb versions for some reason --- netboot/linuxrc.x | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'netboot') diff --git a/netboot/linuxrc.x b/netboot/linuxrc.x index 230e2608..7a846348 100644 --- a/netboot/linuxrc.x +++ b/netboot/linuxrc.x @@ -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 -- cgit v1.2.3-65-gdbad