From da966f2da8fc670e17f753b22b1365fdd72e1499 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Thu, 28 May 2009 00:17:42 -0300 Subject: Convert to new initscript to new virtual console scheme Just convert vc/N to ttyN in all required places. Signed-off-by: Gerardo Exequiel Pozzi Signed-off-by: Allan McRae --- rc.sysinit | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'rc.sysinit') diff --git a/rc.sysinit b/rc.sysinit index 6ccc48a..7356b77 100755 --- a/rc.sysinit +++ b/rc.sysinit @@ -360,8 +360,8 @@ if echo "$LOCALE" | /bin/grep -qi utf ; then # this code is needed not only for older kernels, # but also when user has set vt.default_utf8=0 but LOCALE is *.UTF-8. for i in $(/usr/bin/seq 0 63); do - /usr/bin/kbd_mode -u < /dev/vc/${i} - printf "\e%%G" > /dev/vc/${i} + /usr/bin/kbd_mode -u < /dev/tty${i} + printf "\e%%G" > /dev/tty${i} done # the $CONSOLE check helps us avoid this when running scripts from cron echo 'if [ "$CONSOLE" = "" -a "$TERM" = "linux" -a -t 1 ]; then printf "\e%%G"; fi' >>/etc/profile.d/locale.sh @@ -371,8 +371,8 @@ else stat_busy "Setting Consoles to legacy mode" # make non-UTF-8 consoles work on 2.6.24 and newer kernels for i in $(/usr/bin/seq 0 63); do - /usr/bin/kbd_mode -a < /dev/vc/${i} - printf "\e%%@" > /dev/vc/${i} + /usr/bin/kbd_mode -a < /dev/tty${i} + printf "\e%%@" > /dev/tty${i} done # the $CONSOLE check helps us avoid this when running scripts from cron echo 'if [ "$CONSOLE" = "" -a "$TERM" = "linux" -a -t 1 ]; then printf "\e%%@"; fi' >>/etc/profile.d/locale.sh @@ -388,16 +388,16 @@ if [ -n "$CONSOLEFONT" ]; then fi for i in $(/usr/bin/seq 0 63); do if [ -n "$CONSOLEMAP" ]; then - /usr/bin/setfont -m $CONSOLEMAP $CONSOLEFONT -C /dev/vc/${i} >/dev/null 2>&1 + /usr/bin/setfont -m $CONSOLEMAP $CONSOLEFONT -C /dev/tty${i} >/dev/null 2>&1 else - /usr/bin/setfont $CONSOLEFONT -C /dev/vc/${i} >/dev/null 2>&1 + /usr/bin/setfont $CONSOLEFONT -C /dev/tty${i} >/dev/null 2>&1 fi done if [ $? -ne 0 ]; then stat_fail else for i in $(/usr/bin/seq 0 63); do - printf "\e(K" > /dev/vc/${i} + printf "\e(K" > /dev/tty${i} done # the $CONSOLE check helps us avoid this when running scripts from cron echo 'if [ "$CONSOLE" = "" -a "$TERM" = "linux" -a -t 1 ]; then printf "\e(K"; fi' >>/etc/profile.d/locale.sh -- cgit v1.2.3