diff options
author | Kay Sievers <kay@vrfy.org> | 2013-07-16 16:13:32 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2013-07-16 16:22:01 +0200 |
commit | ddc77f62244bb41d5c8261517e2e1ff1b763fc94 (patch) | |
tree | ae09b63d8b71e3d497adcb609c07e81ae0d588cd /src/udev/keymap/check-keymaps.sh | |
parent | 7080ea16b5a0bfd71bfcdffc998e91f5273d47f9 (diff) |
switch from udev keymaps to hwdb
Diffstat (limited to 'src/udev/keymap/check-keymaps.sh')
-rwxr-xr-x | src/udev/keymap/check-keymaps.sh | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/src/udev/keymap/check-keymaps.sh b/src/udev/keymap/check-keymaps.sh deleted file mode 100755 index c4572745e0..0000000000 --- a/src/udev/keymap/check-keymaps.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -# check that all key names in keymaps/* are known in <linux/input.h> -# and that all key maps listed in the rules are valid and present in -# Makefile.am -SRCDIR=${1:-.} -KEYLIST=${2:-src/udev/keymap/keys.txt} -KEYMAPS_DIR=$SRCDIR/keymaps -RULES=$SRCDIR/src/udev/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) \ - <(grep -hv '^#' ${KEYMAPS_DIR}/*| awk '{print $2}' | 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 ([^"[:space:]]+).*$/\1/; p }' $RULES) -for m in $maps; do - # ignore inline mappings - [ "$m" = "${m#0x}" ] || continue - - [ -e ${KEYMAPS_DIR}/$m ] || { - echo "ERROR: unknown map name in $RULES: $m" >&2 - exit 1 - } - grep -q "keymaps/$m\>" $SRCDIR/Makefile.am || { - echo "ERROR: map file $m is not added to Makefile.am" >&2 - exit 1 - } -done |