diff options
author | Zack Winkles <winkie@linuxfromscratch.org> | 2004-05-06 16:22:04 +0000 |
---|---|---|
committer | Zack Winkles <winkie@linuxfromscratch.org> | 2004-05-06 16:22:04 +0000 |
commit | b32e80330973383d4eca995d6193e35a743176cd (patch) | |
tree | c657760bd2b5c756d0371c908425ecc5835e90ca /chapter06/sysvinit.xml | |
parent | 4dc8dc63eef4a0b4e70ffa3ff12d8678a6a81e92 (diff) |
Committed Alexander's i18n patch
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3489 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/sysvinit.xml')
-rw-r--r-- | chapter06/sysvinit.xml | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/chapter06/sysvinit.xml b/chapter06/sysvinit.xml index 48418db53..4494a269a 100644 --- a/chapter06/sysvinit.xml +++ b/chapter06/sysvinit.xml @@ -74,16 +74,26 @@ ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -r now su:S016:once:/sbin/sulogin -1:2345:respawn:/sbin/agetty tty1 9600 -2:2345:respawn:/sbin/agetty tty2 9600 -3:2345:respawn:/sbin/agetty tty3 9600 -4:2345:respawn:/sbin/agetty tty4 9600 -5:2345:respawn:/sbin/agetty tty5 9600 -6:2345:respawn:/sbin/agetty tty6 9600 +1:2345:respawn:/sbin/agetty -I '\033(K' tty1 9600 +2:2345:respawn:/sbin/agetty -I '\033(K' tty2 9600 +3:2345:respawn:/sbin/agetty -I '\033(K' tty3 9600 +4:2345:respawn:/sbin/agetty -I '\033(K' tty4 9600 +5:2345:respawn:/sbin/agetty -I '\033(K' tty5 9600 +6:2345:respawn:/sbin/agetty -I '\033(K' tty6 9600 # End /etc/inittab <userinput>EOF</userinput></screen> +<para> The -I '\033(K' switch tells agetty to send this escape sequence to +the terminal before doing anything else. This escape sequence switches the +console character set to a user-defined one, which can be modified by +running the <command>setfont</command> program. +Actually, the <command>console</command> initscript from the LFS-Bootscripts +package calls the <command>setfont</command> program during system +startup. Sending this escape sequence is necessary for +people who use non-ISO-8859-1 screen font, but does not hurt native English +speakers.</para> + </sect2> |