diff options
author | Mike Yuan <me@yhndnzj.com> | 2023-01-17 18:21:59 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2023-02-15 21:00:51 +0100 |
commit | f129d0e77c4c9a0e12ae38cd241cd49846844a80 (patch) | |
tree | 6518a9c10e5f4697ac1ab47e668330bcfa780ba9 /factory | |
parent | journal: cat: set JOURNAL_STREAM before exec-ing (diff) | |
download | systemd-f129d0e77c4c9a0e12ae38cd241cd49846844a80.tar.xz systemd-f129d0e77c4c9a0e12ae38cd241cd49846844a80.zip |
vconsole: allow setting default keymap through build option
Allow defining the default keymap to be used by
vconsole-setup through a build option. A template
vconsole.conf also gets populated by tmpfiles if
it doesn't exist.
Diffstat (limited to 'factory')
-rw-r--r-- | factory/templates/meson.build | 8 | ||||
-rw-r--r-- | factory/templates/vconsole.conf.in | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/factory/templates/meson.build b/factory/templates/meson.build index ece2c644ff..a3ba7b166f 100644 --- a/factory/templates/meson.build +++ b/factory/templates/meson.build @@ -9,3 +9,11 @@ custom_target( command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'], install : true, install_dir : factory_etc_dir) + +custom_target( + 'vconsole.conf', + input : 'vconsole.conf.in', + output : 'vconsole.conf', + command : [jinja2_cmdline, '@INPUT@', '@OUTPUT@'], + install : true, + install_dir : factory_etc_dir) diff --git a/factory/templates/vconsole.conf.in b/factory/templates/vconsole.conf.in new file mode 100644 index 0000000000..f682487695 --- /dev/null +++ b/factory/templates/vconsole.conf.in @@ -0,0 +1,3 @@ +# This is the fallback vconsole configuration provided by systemd. + +#KEYMAP={{ SYSTEMD_DEFAULT_KEYMAP }} |