From 5e08e5a12f3a890b9622e7fe9c6ec96d7aff4b41 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Sun, 10 Jun 2001 21:08:33 +0000 Subject: - add 'guessmounts' that mimics RH's detecting of partitions when rescue starts --- rescue/tree/etc/rc.sysinit | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'rescue/tree') diff --git a/rescue/tree/etc/rc.sysinit b/rescue/tree/etc/rc.sysinit index 78d6cb257..f31b4598d 100755 --- a/rescue/tree/etc/rc.sysinit +++ b/rescue/tree/etc/rc.sysinit @@ -36,3 +36,13 @@ grep -q oem /proc/cmdline && exec /etc/oem -f /sbin/ifconfig lo 127.0.0.1 netmask 255.0.0.0 /sbin/route add 127.0.0.1 lo + +grep -q noguessmounts /proc/cmdline +if [ $? != 0 ]; then + echo "I will try now to guess your mountpoints;" + echo -e "If any problems, reboot with \\033[1;37mrescue noguessmounts\\033[0;39m to disable this." + echo "" + guessmounts + echo "Press to continue" + read +fi -- cgit v1.2.1