From 69f2223275267fbb7428c305c9ee67eb73c8068d Mon Sep 17 00:00:00 2001 From: Matthias Hentges Date: Thu, 2 Feb 2006 00:52:41 +0000 Subject: altboot: Bugfixes - Fix disable_printk.sh - Boot NFS: Ignore failure of mounting /proc --- packages/altboot/files/altboot-menu/Advanced/40-bootNFS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/altboot/files/altboot-menu/Advanced/40-bootNFS') diff --git a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS index e83a2867c5..7279ba66ee 100644 --- a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS +++ b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS @@ -23,7 +23,7 @@ run_module() { /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 || echo failed + mount /proc >/dev/tty0 >/dev/null 2>&1 && echo ok >/dev/tty0 || echo failed # Needed for NFS /etc/init.d/portmap start >/dev/tty1 2>&1 || die "/etc/init.d/portmap start failed!" -- cgit v1.2.3 From 6843b7cb49b0e0ac01d6e6d3599a64ac1b5dbbb5 Mon Sep 17 00:00:00 2001 From: Matthias Hentges Date: Sun, 5 Feb 2006 18:04:55 +0000 Subject: 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. --- packages/altboot/files/altboot-menu/Advanced/40-bootNFS | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'packages/altboot/files/altboot-menu/Advanced/40-bootNFS') diff --git a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS index 7279ba66ee..818a93943d 100644 --- a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS +++ b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS @@ -16,14 +16,8 @@ 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 >/dev/null 2>&1 && echo ok >/dev/tty0 || echo failed + # Mount /proc, etc + init_rootfs # Needed for NFS /etc/init.d/portmap start >/dev/tty1 2>&1 || die "/etc/init.d/portmap start failed!" -- cgit v1.2.3