X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=scripts%2Fcasper-bottom%2F14locales;h=5080df649ac98c5c5340cf5ec1cd776f2484d26b;hb=269ea83c30e08ac2f82cea67b5d6ac065a67cbef;hp=d9343cd6467044ee34d6f5e05cf855ecab9ba9b1;hpb=a7e62470dcdcd93501d9f54a96ca45d267ad1fe5;p=live-boot-grml.git diff --git a/scripts/casper-bottom/14locales b/scripts/casper-bottom/14locales index d9343cd..5080df6 100755 --- a/scripts/casper-bottom/14locales +++ b/scripts/casper-bottom/14locales @@ -3,7 +3,7 @@ PREREQ="" DESCRIPTION="Setting up locales..." -. /scripts/functions +. /scripts/casper-functions prereqs() { @@ -20,18 +20,38 @@ esac log_begin_msg "$DESCRIPTION" -locale=en_US.UTF-8 -for x in $(cat /proc/cmdline); do - case $x in - debian-installer/locale=*) - locale=${x#debian-installer/locale=} - ;; - esac -done - -LANG=$(grep "^${locale}" /root/usr/share/i18n/SUPPORTED | grep UTF-8 |sed -e 's, .*,,' -e q) - -printf 'LANG="%s"\n' "${LANG}" >> /root/etc/environment -chroot /root /usr/sbin/locale-gen "${LANG}" +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 [ ! -z "${grep_file}" ]; then + locale=$(grep -s 'LANG=' ${grep_file} | sed s/'LANG='// | tr -d '"' ) +else + grep_file=/root/etc/default/locale +fi + +# commandline +if [ ! -z "${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 + LANG=$(grep "^${locale}" /root/usr/share/i18n/SUPPORTED | grep UTF-8 |sed -e 's, .*,,' -e q) + printf 'LANG="%s"\n' "${LANG}" >> "${grep_file}" + if [ "${BUILD_SYSTEM}" == "Debian" ]; then + chroot /root /usr/sbin/locale-gen + else + chroot /root /usr/sbin/locale-gen "${LANG}" + fi +fi log_end_msg