diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-02-06 00:46:35 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-06 00:46:35 +0000 |
commit | 9b188ea2600bce6ed35559b21677bd8b7223f5a8 (patch) | |
tree | 40e9328ce853279c0eae8ecc851d514ef01c26d1 /packages/altboot/files/altboot-menu/20-bootCF | |
parent | 76107d774ec7a96b7788d2f2b98b5621a04cfe71 (diff) | |
parent | 1be31761f3449cd4f92508fd2c2c41968039c918 (diff) |
merge of 1133a2f6d7624f04cdda9771f28e1502680e7213
and 59438d13db19ded8e22646fb8cddf849804f3a90
Diffstat (limited to 'packages/altboot/files/altboot-menu/20-bootCF')
-rw-r--r-- | packages/altboot/files/altboot-menu/20-bootCF | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/packages/altboot/files/altboot-menu/20-bootCF b/packages/altboot/files/altboot-menu/20-bootCF index 931e46995c..3a3f4fbafe 100644 --- a/packages/altboot/files/altboot-menu/20-bootCF +++ b/packages/altboot/files/altboot-menu/20-bootCF @@ -17,23 +17,11 @@ run_module() { 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" - - echo -n "Generating device files..." >/dev/tty0 - /etc/init.d/devices start && echo ok >/dev/tty0|| die "FAILED" - - - echo -n "Mounting /proc..." >/dev/tty0 - mount /proc >/dev/tty0 2>&1 && echo ok >/dev/tty0|| die "mount /proc failed!" + # Mount /proc, etc + init_rootfs - /etc/init.d/pcmcia start || die "/etc/init.d/pcmcia/start failed!" + mount_cf - echo "" - - # Give the SD and CF mounting some time. This is a must for SD - sleep 2 - # Check for a real fs and loop-images. check_target "$CF_MOUNTPOINT" |