Added KEYBOARD_MODEL build parameter

master
B.J. Dweck 2020-09-01 19:27:50 +02:00
parent 0e722a9e71
commit 4f80f9a7e4
3 changed files with 10 additions and 1 deletions

View File

@ -91,6 +91,14 @@ The following environment variables are supported:
Setting the hostname to the specified value.
* `KEYBOARD_MODEL` (Default: "Generic 101-key PC" )
Default keyboard model.
To get the current value from a running system, run `debconf-show
keyboard-configuration` and look at the
`keyboard-configuration/model` value.
* `KEYBOARD_KEYMAP` (Default: "gb" )
Default keyboard keymap.

1
build.sh Executable file → Normal file
View File

@ -174,6 +174,7 @@ export ENABLE_SSH="${ENABLE_SSH:-0}"
export LOCALE_DEFAULT="${LOCALE_DEFAULT:-en_GB.UTF-8}"
export KEYBOARD_MODEL="${KEYBOARD_MODEL:-Generic 101-key PC}"
export KEYBOARD_KEYMAP="${KEYBOARD_KEYMAP:-gb}"
export KEYBOARD_LAYOUT="${KEYBOARD_LAYOUT:-English (UK)}"

File diff suppressed because one or more lines are too long