X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Flive-bottom%2F14locales;h=db26f0b12af7575b7890e294a1d89548fa84afda;hb=efc1e8ac663a70d2b538aeb215f04b2d1edddbd9;hp=3653e1b163a78c88c727dd161a86d6574e6104d9;hpb=482099e5a39fa3f8eec108a4e26182647c8cb4d6;p=live-boot-grml.git diff --git a/scripts/live-bottom/14locales b/scripts/live-bottom/14locales index 3653e1b..db26f0b 100755 --- a/scripts/live-bottom/14locales +++ b/scripts/live-bottom/14locales @@ -44,8 +44,6 @@ if [ -n "${grep_file}" ] then # use rootfs configured locale locale=$(grep -s 'LANG=' ${grep_file} | sed s/'LANG='// | tr -d '"' ) -else - grep_file=/root/etc/default/locale fi if [ -n "${LOCALE}" ] @@ -79,6 +77,20 @@ then 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_message "Locale ${locale} is unsupported." @@ -88,7 +100,8 @@ then really_export LANG - printf 'LANG=%s\n' "${LANG}" > "${grep_file}" + 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