diff options
author | Thomas Bächler <thomas@archlinux.org> | 2007-10-21 10:41:21 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2007-10-21 10:41:21 +0200 |
commit | 1828938d4406d5a95b7c89828f61600f9e6975a6 (patch) | |
tree | e09600edbf7117ecd019bcf986b2cd17c2d312d3 | |
parent | c8030f33082229530ef2f0ed699eddea4465dad9 (diff) |
fix the utf8 activating code: there are 63 virtual terminals, not 12
-rwxr-xr-x | rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -348,7 +348,7 @@ stat_done if echo "$LOCALE" | /bin/grep -qi utf ; then stat_busy "Setting Consoles to UTF-8" /usr/bin/kbd_mode -u - for i in $(seq 1 12); do + for i in $(seq 1 63); do echo -ne "\e%G" >/dev/vc/${i} done stat_done |