12345678910111213141516171819202122 |
- #!/bin/sh
- # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
- # ex: ts=8 sw=4 sts=4 et filetype=sh
- type getarg >/dev/null 2>&1 || . /lib/dracut-lib.sh
- LOCALE=$(getarg locale.LANG)
- [ -z "$LOCALE" ] && LOCALE="en_US.UTF-8"
- # also enable this locale in newroot.
- echo "LANG=$LOCALE" > $NEWROOT/etc/locale.conf
- echo "LC_COLLATE=C" >> $NEWROOT/etc/locale.conf
- # set keymap too.
- KEYMAP=$(getarg vconsole.keymap)
- [ -z "$KEYMAP" ] && KEYMAP="us"
- if [ -f ${NEWROOT}/etc/vconsole.conf ]; then
- sed -e "s,^KEYMAP=.*,KEYMAP=$KEYMAP," -i $NEWROOT/etc/vconsole.conf
- elif [ -f ${NEWROOT}/etc/rc.conf ]; then
- sed -e "s,^#KEYMAP=.*,KEYMAP=$KEYMAP," -i $NEWROOT/etc/rc.conf
- fi
|