summaryrefslogtreecommitdiffstats
path: root/hooks/keymap
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-03 05:42:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-03 05:42:59 +0000
commitc45bd7dca7394d3a25f5bbf416f3b75c50759190 (patch)
treef7dbbfcc2f6b787eea456d1f1e28525ca2ceb9ba /hooks/keymap
parentInitial commit. (diff)
downloadinitramfs-tools-c45bd7dca7394d3a25f5bbf416f3b75c50759190.tar.xz
initramfs-tools-c45bd7dca7394d3a25f5bbf416f3b75c50759190.zip
Adding upstream version 0.143.upstream/0.143upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'hooks/keymap')
-rwxr-xr-xhooks/keymap40
1 files changed, 40 insertions, 0 deletions
diff --git a/hooks/keymap b/hooks/keymap
new file mode 100755
index 0000000..64f8e6d
--- /dev/null
+++ b/hooks/keymap
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+PREREQ=""
+
+prereqs()
+{
+ echo "$PREREQ"
+}
+
+case $1 in
+# get pre-requisites
+prereqs)
+ prereqs
+ exit 0
+ ;;
+esac
+
+# Hook to load keymaps into the initramfs if requested by KEYMAP="y"
+if [ "$KEYMAP" != "y" ] && [ "$KEYMAP" != "Y" ]; then
+ exit 0
+fi
+
+if [ ! -x /bin/setupcon ]; then
+ echo "setupcon is missing. Please install the 'console-setup' package."
+ exit 0
+fi
+
+. /usr/share/initramfs-tools/hook-functions
+
+# Tell setupcon to copy/create the files it needs.
+setupcon --setup-dir "$DESTDIR"
+
+# Copy additional files that setupcon needs. We assume they are
+# executables.
+while read -r file; do
+ copy_exec "$file"
+done < "$DESTDIR/morefiles"
+rm -f "$DESTDIR/morefiles"
+
+exit 0