diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-08-10 15:12:15 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-08-10 21:17:57 +0200 |
commit | bf77d59772722e96508df91bd24e1b6940b3edfb (patch) | |
tree | 4009ab2c0f25aa7183bc7360e4361e491e2e6ff5 /meson.build | |
parent | Merge pull request #28760 from poettering/coredump-tweaks (diff) | |
download | systemd-bf77d59772722e96508df91bd24e1b6940b3edfb.tar.xz systemd-bf77d59772722e96508df91bd24e1b6940b3edfb.zip |
vconsole-setup: use "@kernel" rather than "kernel" as special string to leave keymap untouched
This is a magic string, and we should avoid stepping into the territory
of normal keymap names with that, given that users can pick names
otherwise freely.
Hence, prefix the name with a special char to avoid any namespace
issues.
Follow-up for: #28660
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build index f37aa0aca5..8f7da1ec6e 100644 --- a/meson.build +++ b/meson.build @@ -947,9 +947,9 @@ conf.set_quoted('SYSTEMD_NSPAWN_LOCALE', nspawn_locale) default_keymap = get_option('default-keymap') if default_keymap == '' - # We canonicalize empty keymap to 'kernel', as it makes the default value + # We canonicalize empty keymap to '@kernel', as it makes the default value # in the factory provided /etc/vconsole.conf more obvious. - default_keymap = 'kernel' + default_keymap = '@kernel' endif conf.set_quoted('SYSTEMD_DEFAULT_KEYMAP', default_keymap) |