summaryrefslogtreecommitdiff
path: root/packages/altboot/files/altboot-menu/15-bootSD
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2006-02-02 00:52:41 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-02-02 00:52:41 +0000
commit69f2223275267fbb7428c305c9ee67eb73c8068d (patch)
treed59a979a29292a74445f390e430a6fb078539a06 /packages/altboot/files/altboot-menu/15-bootSD
parent6d0cbb9292836080fe20feb2e450dd61a4a71019 (diff)
altboot: Bugfixes
- Fix disable_printk.sh - Boot NFS: Ignore failure of mounting /proc
Diffstat (limited to 'packages/altboot/files/altboot-menu/15-bootSD')
-rw-r--r--packages/altboot/files/altboot-menu/15-bootSD4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/altboot/files/altboot-menu/15-bootSD b/packages/altboot/files/altboot-menu/15-bootSD
index d086cde344..baa85a7cf7 100644
--- a/packages/altboot/files/altboot-menu/15-bootSD
+++ b/packages/altboot/files/altboot-menu/15-bootSD
@@ -15,11 +15,13 @@ die() {
# This function is activated by init.altboot by calling this script with the "run" option
run_module() {
- test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!"
+ test -e /etc/altboot.func && . /etc/altboot.func || die "ERROR: /etc/altboot.func not found. Check your installation!"
echo -n "Mounting rootfs rw..." >/dev/tty0
mount -o remount,rw / >/dev/tty0 2>&1 && echo ok >/dev/tty0|| die "mount -o remount,rw / failed"
+ mount proc -t proc /proc >/dev/tty0 2>&1
+
echo -n "Generating device files..." >/dev/tty0
/etc/init.d/devices start && echo ok >/dev/tty0|| die "FAILED"