openpower: Add loadkeys package to enable backtab
This is a copy of the buildroot package 'kbd', but with a custom install
command that only installs the 'loadkeys' binary, saving almost 1MB of
space.
The loadkeys command then allows us to add additional keymap definitions
during init to enable the use of Shift-Tab on the VGA console.
Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
diff --git a/openpower/package/loadkeys/S16-keymap b/openpower/package/loadkeys/S16-keymap
new file mode 100755
index 0000000..aa3f068
--- /dev/null
+++ b/openpower/package/loadkeys/S16-keymap
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+case "$1" in
+ start)
+ loadkeys /etc/kbd/config
+ ;;
+esac
+
+exit 0