Use symlinks for busybox utils

Use full path to mount since it gets grumpy without it in later bb versions for some reason
cleanup-cruft
Andrew Gaffney 16 years ago
parent 967899176d
commit de93b4bb8d

@ -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

@ -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

Loading…
Cancel
Save