From d4b1e549c259c4a2be50d92fe8de65b72b7263bb Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Wed, 2 Jul 2014 17:18:47 -0300 Subject: Back to cons25 for now since we found some issues with xterm on serial console --- etc/rc.bootup | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'etc/rc.bootup') diff --git a/etc/rc.bootup b/etc/rc.bootup index 265effb..815480a 100755 --- a/etc/rc.bootup +++ b/etc/rc.bootup @@ -61,19 +61,19 @@ function rescue_detect_keypress() { } // If R or I was pressed do our logic here if (in_array($key, array("r", "R"))) { - putenv("TERM=xterm"); + putenv("TERM=cons25"); echo "\n\nRecovery mode selected...\n"; - passthru("/usr/bin/env TERM=xterm /bin/tcsh -c /scripts/lua_installer_rescue"); + passthru("/usr/bin/env TERM=cons25 /bin/tcsh -c /scripts/lua_installer_rescue"); } elseif (in_array($key, array("i", "I"))) { - putenv("TERM=xterm"); + putenv("TERM=cons25"); echo "\n\nInstaller mode selected...\n"; - passthru("/usr/bin/env TERM=xterm /bin/tcsh -c /scripts/lua_installer"); + passthru("/usr/bin/env TERM=cons25 /bin/tcsh -c /scripts/lua_installer"); if(file_exists("/tmp/install_complete")) { passthru("/etc/rc.reboot"); exit; } } elseif (in_array($key, array("!", "~"))) { - putenv("TERM=xterm"); + putenv("TERM=cons25"); echo "\n\nRecovery shell selected...\n"; echo "\n"; touch("/tmp/donotbootup"); -- cgit v1.1