diff options
author | Matthias Hentges <oe@hentges.net> | 2006-02-05 18:04:55 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-05 18:04:55 +0000 |
commit | 6843b7cb49b0e0ac01d6e6d3599a64ac1b5dbbb5 (patch) | |
tree | 66709d318e6cab36e90f17167917690c0705d29b /packages/altboot/files/altboot-menu/Advanced/55-bin-sh | |
parent | 51d9083c54c7f7b308624ba36b0e72dd0b55cfc5 (diff) |
altboot:
- New funcitions: init_rootfs, mount_sd, mount_cf and mount_home for smaller code and easier debugging / bugfixing. These functions can be used by all plugins.
- Do not try to mount /sys, /proc, /media/cf and /media/home when they are already mounted (mainly for testing purposes)
- Added plugin: install-tgz
This plugin allows installation of an OE generated .tar.gz rootfs onto CF or SD as a real filesystem or into a loopfile of user-defined size. Still needs some work but is usable.
Diffstat (limited to 'packages/altboot/files/altboot-menu/Advanced/55-bin-sh')
-rw-r--r-- | packages/altboot/files/altboot-menu/Advanced/55-bin-sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/altboot/files/altboot-menu/Advanced/55-bin-sh b/packages/altboot/files/altboot-menu/Advanced/55-bin-sh index 90a6f37ff5..4619e51ce7 100644 --- a/packages/altboot/files/altboot-menu/Advanced/55-bin-sh +++ b/packages/altboot/files/altboot-menu/Advanced/55-bin-sh @@ -8,10 +8,8 @@ run_module() { test "$ASK_PW_ON_BOOT" != "yes" && verify_master_pw >/dev/tty0 - # Make the system a little bit more usable than a standard init=/bin/sh boot - mount -t proc proc /proc >/dev/null 2>&1 - uname -r | grep -q "2.6." && mount sys -t sysfs /sys - mount -o remount,rw / + # Mount /proc, etc + init_rootfs echo -e "\nBoot system with 'exec /sbin/init 5'\n" while true |