aboutsummaryrefslogtreecommitdiff
path: root/rc.sysinit
diff options
context:
space:
mode:
Diffstat (limited to 'rc.sysinit')
-rwxr-xr-xrc.sysinit14
1 files changed, 7 insertions, 7 deletions
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