summaryrefslogtreecommitdiffstats
path: root/scripts/getkeymaps
blob: 8436900fc681fe5e5aa8e2a0cb872013bb9bd809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh
#
# getkeymaps
#
# Copyright (C) 2007  Red Hat, Inc.  All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

ARCH=$1
if [ -z "$ARCH" ]; then
    echo "usage: $0 <arch>"
    exit 1
fi

TOPDIR=`pwd`
OUTPUT=$2
if [ -z "$OUTPUT" ]; then
    echo "No output specified, using ${TMPDIR:-/tmp}/keymaps-$ARCH.$$"
    OUTPUT=${TMPDIR:-/tmp}/keymaps-$ARCH.$$
fi

UTILDIR=$3
if [ -z "$UTILDIR" ]; then
    READMAP=../utils/readmap
    MAPSHDR=$TOPDIR/../utils/mapshdr
else    
    READMAP=$UTILDIR/usr/lib/anaconda-runtime/readmap
    MAPSHDR=$UTILDIR/usr/lib/anaconda-runtime/mapshdr
fi

TMP=${TMPDIR:-/tmp}/keymaps.$$

rm -rf $TMP
mkdir -p $TMP

if [ $ARCH = "sparc" ]; then
    PATTERN={i386,sun}
else
    PATTERN=i386
fi

MAPS=$(python -c "import system_config_keyboard.keyboard_models ; system_config_keyboard.keyboard_models.get_supported_models()")

for map in $MAPS ; do 
 eval find /lib/kbd/keymaps/$PATTERN -name "$map.map*.gz" | while read n; do
    /bin/loadkeys `basename $n .gz` >/dev/null
    $READMAP $TMP/`basename $n .map.gz`.map
  done
done

loadkeys us

rm -f $TMP/defkeymap* $TMP/ANSI* $TMP/lt.map

(cd $TMP; $MAPSHDR *.map) > $TMP/hdr
cat $TMP/hdr $TMP/*.map | gzip -9 > $OUTPUT
rm -rf $TMP