From a45a0d1448a8a6b60769f33c114b6db243aede47 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 14 Jun 2012 11:21:54 +0200 Subject: Added a new dracut script to overwrite keymap/locale settings in NEWROOT. --- dracut/module-setup.sh | 1 + dracut/vmklive-conf.sh | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 dracut/vmklive-conf.sh (limited to 'dracut') diff --git a/dracut/module-setup.sh b/dracut/module-setup.sh index 34d5120..0e334b8 100644 --- a/dracut/module-setup.sh +++ b/dracut/module-setup.sh @@ -13,4 +13,5 @@ depends() { install() { inst chmod inst_hook pre-pivot 01 "$moddir/vmklive-adduser.sh" + inst_hook pre-pivot 02 "$moddir/vmklive-conf.sh" } diff --git a/dracut/vmklive-conf.sh b/dracut/vmklive-conf.sh new file mode 100644 index 0000000..4fe1747 --- /dev/null +++ b/dracut/vmklive-conf.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*- +# ex: ts=8 sw=4 sts=4 et filetype=sh + +KEYMAP=$(getarg vconsole.keymap) +FONT=$(getarg vconsole.font) +FONT_MAP=$(getarg vconsole.font.map) +FONT_UNIMAP=$(getarg vconsole.font.unimap) +LOCALE=$(getarg locale.LANG) + +if [ -n "$KEYMAP" ]; then + sed -i -e "s|^KEYMAP=.*|KEYMAP=$KEYMAP|g" ${NEWROOT}/etc/vconsole.conf +fi +if [ -n "$FONT" ]; then + sed -i -e "s|^FONT=.*|FONT=$FONT|g" ${NEWROOT}/etc/vconsole.conf +fi +if [ -n "$FONT_MAP" ]; then + sed -i -e "s|^FONT_MAP=.*|FONT_MAP=$FONT_MAP|g" ${NEWROOT}/etc/vconsole.conf +fi +if [ -n "$FONT_UNIMAP" ]; then + sed -i -e "s|^FONT_UNIMAP=.*|FONT_UNIMAP=$FONT_UNIMAP|g" ${NEWROOT}/etc/vconsole.conf +fi +if [ -n "$LOCALE" ]; then + sed -i -e "s|^LANG=.*|LANG=$LOCALE|g" ${NEWROOT}/etc/locale.conf +fi -- cgit 1.4.1