summaryrefslogtreecommitdiff
path: root/extras/keymap/check-keymaps.sh
diff options
context:
space:
mode:
authorMartin Pitt <martin.pitt@ubuntu.com>2009-06-17 11:56:52 +0200
committerKay Sievers <kay.sievers@vrfy.org>2009-06-17 11:56:52 +0200
commit2417dc20f5147556d0ed4f95a37b1547fb4b0f2b (patch)
treeda5ee11aa30082e8f58cca252ab8b0c5ce973730 /extras/keymap/check-keymaps.sh
parenta8aab0e95b18c772c91104c02a283d03180ff19f (diff)
keymap: move from udev-extras
Diffstat (limited to 'extras/keymap/check-keymaps.sh')
-rwxr-xr-xextras/keymap/check-keymaps.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/extras/keymap/check-keymaps.sh b/extras/keymap/check-keymaps.sh
new file mode 100755
index 0000000000..dc46f59531
--- /dev/null
+++ b/extras/keymap/check-keymaps.sh
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+# check that all key names in keymaps/* are known in <linux/input.h>
+KEYLIST=./keys.txt
+RULES=95-keymap.rules
+
+[ -e "$KEYLIST" ] || {
+ echo "need $KEYLIST please build first" >&2
+ exit 1
+}
+
+missing=$(join -v 2 <(awk '{print tolower(substr($1,5))}' $KEYLIST | sort -u) <(awk '{print $2}' keymaps/*|sort -u))
+[ -z "$missing" ] || {
+ echo "ERROR: unknown key names in keymaps/*:" >&2
+ echo "$missing" >&2
+ exit 1
+}
+
+# check that all maps referred to in $RULES exist
+maps=$(sed -rn '/keymap \$name/ { s/^.*\$name ([^"]+).*$/\1/; p }' $RULES)
+for m in $maps; do
+ [ -e keymaps/$m ] || {
+ echo "ERROR: unknown map name in $RULES: $m" >&2
+ exit 1
+ }
+ grep -q "keymaps/$m\>" Makefile.am || {
+ echo "ERROR: map file $m is not added to Makefile.am" >&2
+ exit 1
+ }
+done