aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--netboot/linuxrc.x8
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5caa35bb..241d31be 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 <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
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