about summary refs log tree commit diff
path: root/dracut/locale.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dracut/locale.sh')
-rw-r--r--dracut/locale.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/dracut/locale.sh b/dracut/locale.sh
index c56cec0..bad138b 100644
--- a/dracut/locale.sh
+++ b/dracut/locale.sh
@@ -2,17 +2,11 @@
 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
 # ex: ts=8 sw=4 sts=4 et filetype=sh
 
-# Regen locales if it's set in the kernel cmdline.
-
 type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
 
 LOCALE=$(getarg locale.LANG)
 [ -z "$LOCALE" ] && LOCALE="en_US.UTF-8"
 
-# Create new user and remove password. We'll use autologin by default.
-sed -e "s,^\#\($LOCALE.*\),\1," -i $NEWROOT/etc/default/libc-locales
-chroot $NEWROOT xbps-reconfigure -f glibc-locales >/dev/null 2>&1
-
 # also enable this locale in newroot.
 echo "LANG=$LOCALE" > $NEWROOT/etc/locale.conf
 echo "LC_COLLATE=C" >> $NEWROOT/etc/locale.conf