about summary refs log tree commit diff
path: root/dracut
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2013-08-22 11:52:07 +0200
committerJuan RP <xtraeme@gmail.com>2013-08-22 11:52:07 +0200
commit783a25e632139846c592990413abba8d98cb5164 (patch)
tree8c04cb93364709282066f958ef8d6626e6a34df4 /dracut
parentc15dd6d8d56615f1729a31140d11a3b338588467 (diff)
downloadhrmpf-783a25e632139846c592990413abba8d98cb5164.tar.gz
hrmpf-783a25e632139846c592990413abba8d98cb5164.tar.xz
hrmpf-783a25e632139846c592990413abba8d98cb5164.zip
Misc changes to reduce image size.
1- Stop generating locale via dracut; generate choosen locale at build time.
2- Stop generating a local repository (/packages) to the rootfs.
3- Drop support for -l option.
4- There's no need to copy kernel modules manually anymore.
5- Switch to base-system and some more additional packages to drop base-system-live
   requirement.

WIP! the installer must be updated to copy rootfs files to the targetdir.
Diffstat (limited to 'dracut')
-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