aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2006-10-18 16:36:43 +0000
committerBill Nottingham <notting@redhat.com>2006-10-18 16:36:43 +0000
commit1c7bb9d0af3934db9d2761c64ae8745f999ac4dd (patch)
treef9c376aedef1fd3a77d319a0ce52edebc8aa11c9
parent58aa59f9310ece2e13f4ae14d8536b5dd580eb37 (diff)
downloadinitscripts-1c7bb9d0af3934db9d2761c64ae8745f999ac4dd.tar
initscripts-1c7bb9d0af3934db9d2761c64ae8745f999ac4dd.tar.gz
initscripts-1c7bb9d0af3934db9d2761c64ae8745f999ac4dd.tar.bz2
initscripts-1c7bb9d0af3934db9d2761c64ae8745f999ac4dd.tar.xz
initscripts-1c7bb9d0af3934db9d2761c64ae8745f999ac4dd.zip
blacklist CJKI on the virtual console (#209579)
-rwxr-xr-xlang.csh20
-rwxr-xr-xlang.sh14
2 files changed, 34 insertions, 0 deletions
diff --git a/lang.csh b/lang.csh
index 4c815d30..25d59f0c 100755
--- a/lang.csh
+++ b/lang.csh
@@ -71,6 +71,16 @@ if ($sourced == 1) then
if ( $?TERM ) then
if ( "$TERM" == "linux" ) then
if ( "$consoletype" == "vt" ) then
+ switch ($LANG)
+ case en_IN*:
+ breaksw
+ case ja*:
+ case ko*:
+ case zh*:
+ case *_IN*:
+ setenv LANG en_US.UTF-8
+ breaksw
+ endsw
if ( -x /bin/unicode_start ) then
if { /sbin/consoletype fg } then
if ( $?SYSFONT ) then
@@ -90,6 +100,16 @@ if ($sourced == 1) then
if ( $?TERM ) then
if ( "$TERM" == "linux" ) then
if ( "$consoletype" == "vt" ) then
+ switch ($LANG)
+ case en_IN*:
+ breaksw
+ case ja*:
+ case ko*:
+ case zh*:
+ case *_IN*:
+ setenv LANG en_US
+ breaksw
+ endsw
if ( -x /bin/unicode_stop ) then
if { /sbin/consoletype fg } then
/bin/unicode_stop
diff --git a/lang.sh b/lang.sh
index 19bf9158..7c0332b2 100755
--- a/lang.sh
+++ b/lang.sh
@@ -65,6 +65,13 @@ if [ "$sourced" = 1 ]; then
*.utf8*|*.UTF-8*)
if [ "$TERM" = "linux" ]; then
if [ "$consoletype" = "vt" ]; then
+ case $LANG in
+ ja*) LANG=en_US.UTF-8 ;;
+ ko*) LANG=en_US.UTF-8 ;;
+ zh*) LANG=en_US.UTF-8 ;;
+ en_IN*) ;;
+ *_IN*) LANG=en_US.UTF-8 ;;
+ esac
[ -x /bin/unicode_start ] && /sbin/consoletype fg && /bin/unicode_start $SYSFONT $SYSFONTACM
fi
fi
@@ -72,6 +79,13 @@ if [ "$sourced" = 1 ]; then
*)
if [ "$TERM" = "linux" ]; then
if [ "$consoletype" = "vt" ]; then
+ case $LANG in
+ ja*) LANG=en_US ;;
+ ko*) LANG=en_US ;;
+ zh*) LANG=en_US ;;
+ en_IN*) ;;
+ *_IN*) LANG=en_US ;;
+ esac
[ -x /bin/unicode_stop ] && /sbin/consoletype fg && /bin/unicode_stop
fi
fi