diff options
Diffstat (limited to 'extras/keymap/check-keymaps.sh')
-rwxr-xr-x | extras/keymap/check-keymaps.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/extras/keymap/check-keymaps.sh b/extras/keymap/check-keymaps.sh index 15e8ef8c1e..f79c3f5a82 100755 --- a/extras/keymap/check-keymaps.sh +++ b/extras/keymap/check-keymaps.sh @@ -1,17 +1,17 @@ #!/bin/bash # check that all key names in keymaps/* are known in <linux/input.h> -KEYLIST=./keys.txt -RULES=95-keymap.rules +KEYLIST=extras/keymap/keys.txt +RULES=extras/keymap/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)) +missing=$(join -v 2 <(awk '{print tolower(substr($1,5))}' $KEYLIST | sort -u) <(awk '{print $2}' extras/keymap/keymaps/*|sort -u)) [ -z "$missing" ] || { - echo "ERROR: unknown key names in keymaps/*:" >&2 + echo "ERROR: unknown key names in extras/keymap/keymaps/*:" >&2 echo "$missing" >&2 exit 1 } @@ -22,11 +22,11 @@ for m in $maps; do # ignore inline mappings [ "$m" = "${m#0x}" ] || continue - [ -e keymaps/$m ] || { + [ -e extras/keymap/keymaps/$m ] || { echo "ERROR: unknown map name in $RULES: $m" >&2 exit 1 } - grep -q "keymaps/$m\>" Makefile.am || { + grep -q "extras/keymap/keymaps/$m\>" Makefile.am || { echo "ERROR: map file $m is not added to Makefile.am" >&2 exit 1 } |