]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/initscripts/init.d/console
Unsere Konsole ist jetzt UTF8-Fit.
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / console
index bc1f4e043cbf314fb6d0ff5dfe525999b21b1e07..cb61a405ff03963723ad7598976ccd4b61a6e7f6 100644 (file)
 
 . /etc/sysconfig/rc
 . ${rc_functions}
+eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
 
-# Native English speakers probably don't have /etc/sysconfig/console at all
-if [ -f /etc/sysconfig/console ]
-then
-       . /etc/sysconfig/console
+if [ "$LANGUAGE" == "de" ]; then
+       #KEYMAP="de-latin1"
+       KEYMAP_CORRECTIONS="euro2"
+       LEGACY_CHARSET="iso-8859-15"
+       #FONT="LatArCyrHeb-16 -m 8859-15"
+       FONT="lat0-16 -m 8859-15"
 else
-        exit 0
+       # English
+       FONT="lat0-16"
+       KEYMAP_CORRECTIONS="euro2"
 fi
 
+UNICODE="1"
+BROKEN_COMPOSE="0"
+
 is_true() {
        [ "$1" = "1" ] || [ "$1" = "yes" ] || [ "$1" = "true" ]
 }