From 055abc57879dc03ffa45b9a2b593a55aa4a79a86 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 22 May 2010 15:32:24 -0400 Subject: [PATCH] Add (C)ontinue option for the impatient --- etc/rc.bootup | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/etc/rc.bootup b/etc/rc.bootup index 95bdbc92ae..b8c9f89163 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -40,12 +40,13 @@ function rescue_detect_keypress() { echo "[ press I to launch the installer ]\n\n"; echo "(R)ecovery mode can assist by rescuing config.xml\n"; echo "from a broken hard disk installation, etc.\n\n"; - echo "Alternatively the (I)nstaller may be invoked now if you do \n"; - echo "not wish to boot into the liveCD environment at this time.\n\n"; + echo "(I)nstaller may be invoked now if you do \n"; + echo "not wish to boot into the liveCD environment at this time.\n"; + echo "(C) continues the LiveCD bootup without further pause.\n\n" echo "Timeout before auto boot continues (seconds): {$timeout}"; $key = null; exec("/bin/stty erase " . chr(8)); - while(!in_array($key, array("r","R", "i", "I", "~", "!"))) { + while(!in_array($key, array("c", "C", "r","R", "i", "I", "~", "!"))) { echo chr(8) . "{$timeout}"; `/bin/stty -icanon min 0 time 25`; $key = trim(`KEY=\`dd count=1 2>/dev/null\`; echo \$KEY`);