blob: b7ea704a76a63c4e608d3e273da0ac13e1ef3158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#!/bin/sh
#set -e
# initramfs-tools header
PREREQ=""
prereqs()
{
echo "${PREREQ}"
}
case "${1}" in
prereqs)
prereqs
exit 0
;;
esac
# live-initramfs header
if [ -n "${NOLOCALES}" ]
then
exit 0
fi
. /scripts/live-functions
log_begin_msg "Setting up locales"
# live-initramfs script
if [ -e /root/etc/default/locale ]
then
grep_file=/root/etc/default/locale
elif [ -e /root/etc/environment ]
then
# Old locales policy
grep_file=/root/etc/environment
fi
if [ -n "${grep_file}" ]
then
# use rootfs configured locale
locale=$(grep -s 'LANG=' ${grep_file} | sed s/'LANG='// | tr -d '"' )
fi
if [ -n "${LOCALE}" ]
then
locale="${LOCALE}"
set_locale="true"
fi
if [ -z "${locale}" ]
then
# Set a default one
locale=en_US.UTF-8
set_locale="true"
fi
if [ "${set_locale}" ]
then
if echo "${locale}" | grep -sqE '^[[:lower:]]{2}$'
then
# input is like "locale=it", so we will convert and setup also the keyboard if not already set
if [ -z "${KBD}" ]
then
# FIXME: look if this keyb is supported
KBD="${locale}"
really_export KBD
fi
uploc=$(echo "${locale}" | tr '[a-z]' '[A-Z]')
locale="${locale}_${uploc}.UTF-8"
fi
LANG=$(grep "^${locale}" /root/usr/share/i18n/SUPPORTED | grep UTF-8 | sed -e 's, .*,,' -e q)
language="${LANG%%.UTF-8*}"
if [ -d /root/etc/default/kdm.d/ ]
then
cat > /root/etc/default/kdm.d/live-autologin << EOF
LANGUAGE=${language}
EOF
elif [ -f /root/etc/kde3/kdm/kdmrc ]
then
sed -i -r -e "s/#Language=.*/Language=${language}/" \
/root/etc/kde3/kdm/kdmrc
fi
if [ -z "${LANG}" ]
then
log_warning_msg "Locale ${locale} is unsupported."
locale="en_US.UTF-8"
LANG="${locale}"
fi
really_export LANG
printf 'LANG="%s"\n' "${LANG}" >> /root/etc/default/locale
printf 'LANG="%s"\n' "${LANG}" >> /root/etc/environment
printf '%s UTF-8\n' "${LANG}" > /root/etc/locale.gen
chroot /root /usr/sbin/locale-gen
fi
log_end_msg
|