Accepting request 613906 from home:favogt:branches:openSUSE:Factory:Live

- Implement the keytable= parameter provided by isolinux to override
  the keyboard layouer

OBS-URL: https://build.opensuse.org/request/show/613906
OBS-URL: https://build.opensuse.org/package/show/system:install:head/live-langset-data?expand=0&rev=13
This commit is contained in:
Fabian Vogt 2018-06-04 12:22:44 +00:00 committed by Git OBS Bridge
parent e288758985
commit 5215a95bf7
2 changed files with 12 additions and 0 deletions

View File

@ -6,6 +6,9 @@ for o in $(cat /proc/cmdline); do
lang=*)
eval $o
;;
keytable=*)
eval $o
;;
esac
done
@ -29,7 +32,10 @@ fi
[ -z "$CONSOLE_SCREENMAP" ] || echo "FONT_MAP=$CONSOLE_SCREENMAP" >> /etc/vconsole.conf
[ -z "$CONSOLE_UNICODEMAP" ] || echo "FONT_UNIMAP=$CONSOLE_UNICODEMAP" >> /etc/vconsole.conf
# Try the lang-provided keytable first
[ -z "$KEYTABLE" ] || localectl set-keymap $KEYTABLE
# Then override with the cmdline provided one, if possible
[ -z "$keytable" ] || localectl set-keymap $keytable
[ -n "$TIMEZONE" ] && [ -f "/usr/share/zoneinfo/$TIMEZONE" ] && rm -f /etc/localtime && ln -s /usr/share/zoneinfo/$TIMEZONE /etc/localtime

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu May 31 09:08:22 UTC 2018 - fvogt@suse.de
- Implement the keytable= parameter provided by isolinux to override
the keyboard layouer
-------------------------------------------------------------------
Wed Jan 31 09:49:14 UTC 2018 - fvogt@suse.com