From: Andrew Gaffney Date: Tue, 25 Nov 2008 18:39:25 +0000 (-0600) Subject: Use symlinks for busybox utils X-Git-Tag: v3.4.10.902~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=de93b4bb8d7cfd8fac297014f5d54eb7416b2a4e;p=genkernel.git Use symlinks for busybox utils Use full path to mount since it gets grumpy without it in later bb versions for some reason --- diff --git a/ChangeLog b/ChangeLog index 5caa35b..241d31b 100644 --- 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 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 gen_initramfs.sh: Break apart cryptsetup stuff into separate append_luks() and make append_auxillary() dependent on ${BUSYBOX} for gentoo bug #247052 diff --git a/netboot/linuxrc.x b/netboot/linuxrc.x index 230e260..7a84634 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