You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
340 B
14 lines
340 B
#!/bin/sh -efu
|
|
# if no means for locale setup are employed,
|
|
# it should still be at least marginally reasonable
|
|
# NB: keyboard layout not included!
|
|
|
|
if [ -s /etc/sysconfig/i18n ]; then exit 0; fi
|
|
|
|
mkdir -p /etc/sysconfig
|
|
cat >> /etc/sysconfig/i18n << _EOF_
|
|
# mkimage-profiles live 20-locale hook
|
|
SYSFONT=UniCyr_8x16
|
|
LANG=en_US.utf8
|
|
_EOF_
|
|
:
|
|
|