pull/378/merge
Daniel Dickinson 2020-01-16 15:45:00 -05:00 committed by GitHub
commit fab6646008
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View File

@ -82,6 +82,13 @@ The following environment variables are supported:
Default system locale.
* `LOCALE_GEN_DEFAULT` (Default: "en_GB.UTF-8 UTF-8" )
List of locales to generate each separated by a comma and a space (in that
order). Note a locale is typically of the form
`<lang>_<COUNTRY>.<encoding> <encoding>` (e.g. `en_GB.UTF-8 UTF-8`).
See `stage0/01-locale/00-debconf` for a list of available locales.
* `HOSTNAME` (Default: "raspberrypi" )
Setting the hostname to the specified value.
@ -283,7 +290,7 @@ maintenance and allows for more easy customization.
- **Stage 5** - The Raspbian Full image. More development
tools, an email client, learning tools like Scratch, specialized packages
like sonic-pi, office productivity, etc.
like sonic-pi, office productivity, etc.
### Stage specification

View File

@ -172,6 +172,9 @@ export WPA_COUNTRY
export ENABLE_SSH="${ENABLE_SSH:-0}"
export LOCALE_DEFAULT="${LOCALE_DEFAULT:-en_GB.UTF-8}"
# LOCALE_GEN_DEFAULT is a list of locales to generate separated by comma and
# space)
export LOCALE_GEN_DEFAULT="${LOCALE_GEN_DEFAULT:-en_GB.UTF-8 UTF-8}"
export KEYBOARD_KEYMAP="${KEYBOARD_KEYMAP:-gb}"
export KEYBOARD_LAYOUT="${KEYBOARD_LAYOUT:-English (UK)}"

File diff suppressed because one or more lines are too long