2 ########################################################################
5 # Description : Sets keymap and screen font
7 # Authors : Gerard Beekmans - gerard@linuxfromscratch.org
8 # Alexander E. Patrakov
9 # DJ Lucas - dj@linuxfromscratch.org
10 # Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
14 ########################################################################
19 # Should-Start: $local_fs
24 # Short-Description: Sets up a localised console.
25 # Description: Sets up fonts and language settings for the user's
26 # local as defined by /etc/sysconfig/console.
27 # X-LFS-Provided-By: LFS
30 .
/lib
/lsb
/init-functions
32 # Native English speakers probably don't have /etc/sysconfig/console at all
33 [ -r /etc
/sysconfig
/console
] && .
/etc
/sysconfig
/console
37 [ "$1" = "1" ] ||
[ "$1" = "yes" ] ||
[ "$1" = "true" ]
40 # See if we need to do anything
41 if [ -z "${KEYMAP}" ] && [ -z "${KEYMAP_CORRECTIONS}" ] &&
42 [ -z "${FONT}" ] && [ -z "${LEGACY_CHARSET}" ] &&
43 is_true
"${UNICODE}"; then
51 # There should be no bogus failures below this line!
52 log_info_msg
"Setting up Linux console..."
54 # Figure out if a framebuffer console is used
55 [ -d /sys
/class
/graphics
/fb0
] && use_fb
=1 || use_fb
=0
57 # Figure out the command to set the console into the
59 is_true
"${UNICODE}" &&
60 MODE_COMMAND
="echo -en '\033%G' && kbd_mode -u" ||
61 MODE_COMMAND
="echo -en '\033%@\033(K' && kbd_mode -a"
63 # On framebuffer consoles, font has to be set for each vt in
64 # UTF-8 mode. This doesn't hurt in non-UTF-8 mode also.
66 ! is_true
"${use_fb}" ||
[ -z "${FONT}" ] ||
67 MODE_COMMAND
="${MODE_COMMAND} && setfont ${FONT}"
69 # Apply that command to all consoles mentioned in
70 # /etc/inittab. Important: in the UTF-8 mode this should
71 # happen before setfont, otherwise a kernel bug will
72 # show up and the unicode map of the font will not be
75 for TTY
in `grep '^[^#].*respawn:/sbin/agetty' /etc/inittab |
76 grep -o '\btty[[:digit:]]*\b'`
78 openvt
-f -w -c ${TTY#tty} -- \
79 /bin
/sh
-c "${MODE_COMMAND}" || failed
=1
82 # Set the font (if not already set above) and the keymap
83 [ "${use_fb}" == "1" ] ||
[ -z "${FONT}" ] || setfont
$FONT || failed
=1
86 loadkeys
${KEYMAP} >/dev
/null
2>&1 ||
89 [ -z "${KEYMAP_CORRECTIONS}" ] ||
90 loadkeys
${KEYMAP_CORRECTIONS} >/dev
/null
2>&1 ||
93 # Convert the keymap from $LEGACY_CHARSET to UTF-8
94 [ -z "$LEGACY_CHARSET" ] ||
95 dumpkeys
-c "$LEGACY_CHARSET" | loadkeys
-u >/dev
/null
2>&1 ||
98 # If any of the commands above failed, the trap at the
99 # top would set $failed to 1
107 echo $
"Usage:" "${0} {start}"