diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:29:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 10:29:49 +0000 |
commit | 1fd7da94235a7ee9cc21d25d39e6c03421ef5ab6 (patch) | |
tree | b4cc647f3e5833b224c5fd593023397a80cca78f /scripts/init-top/keymap | |
parent | Initial commit. (diff) | |
download | initramfs-tools-1fd7da94235a7ee9cc21d25d39e6c03421ef5ab6.tar.xz initramfs-tools-1fd7da94235a7ee9cc21d25d39e6c03421ef5ab6.zip |
Adding upstream version 0.140.upstream/0.140upstream
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 |