diff options
Diffstat (limited to 'rescue/tree')
-rwxr-xr-x | rescue/tree/etc/rc.sysinit | 10 |
1 files changed, 10 insertions, 0 deletions
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 <enter> to continue" + read +fi |