diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:49:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 00:49:14 +0000 |
commit | 3c2d31adff62d355d29246bdbe3c43bc25b9008b (patch) | |
tree | cf28adc8f4ab5f7eec9f5e13dfd65b099acbb709 /scripts/init-top/keymap | |
parent | Initial commit. (diff) | |
download | initramfs-tools-upstream.tar.xz initramfs-tools-upstream.zip |
Adding upstream version 0.133+deb10u1.upstream/0.133+deb10u1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'scripts/init-top/keymap')
-rwxr-xr-x | scripts/init-top/keymap | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/init-top/keymap b/scripts/init-top/keymap new file mode 100755 index 0000000..1c6b2dc --- /dev/null +++ b/scripts/init-top/keymap @@ -0,0 +1,18 @@ +#!/bin/sh + +PREREQ="" +prereqs() +{ + echo "$PREREQ" +} +case $1 in +# get pre-requisites +prereqs) + prereqs + exit 0 + ;; +esac + +if [ -x /bin/setupcon ]; then + /bin/setupcon +fi |