summaryrefslogtreecommitdiffstats
path: root/etc/rc.bootup
diff options
context:
space:
mode:
Diffstat (limited to 'etc/rc.bootup')
-rwxr-xr-xetc/rc.bootup9
1 files changed, 4 insertions, 5 deletions
diff --git a/etc/rc.bootup b/etc/rc.bootup
index 76042f5..261dbc6 100755
--- a/etc/rc.bootup
+++ b/etc/rc.bootup
@@ -38,20 +38,19 @@ function rescue_detect_keypress() {
echo "\n";
echo "[ Press R to enter recovery mode or ]\n";
echo "[ press I to launch the installer ]\n\n";
- echo "Recovery mode can assist by rescuing config.xml from a \n";
- echo "broken hard disk installation, etc.\n\n";
+ echo "Recovery mode can assist by rescuing config.xml\n";
+ echo "from a broken hard disk installation, etc.\n\n";
echo "Alternatively the installer may be invoked now if you do \n";
echo "not wish to boot into the liveCD environment at this time.\n\n";
- echo "Timeout before auto boot continues (seconds): {$timeout}\n";
+ echo "Timeout before auto boot continues (seconds): {$timeout}";
$key = null;
while(!in_array($key, array("r","R"))) {
echo " {$timeout}";
- `/bin/stty -icanon min 0 time 10`;
+ `/bin/stty -icanon min 0 time 25`;
$key = trim(`KEY=\`dd count=1 2>/dev/null\`; echo \$KEY`);
`/bin/stty icanon`;
// Decrement our timeout value
$timeout--;
- sleep(1);
// If we have reached 0 exit and continue on
if ($timeout == 0)
break;
OpenPOWER on IntegriCloud