summaryrefslogtreecommitdiffstats
path: root/scripts/getkeymaps
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-05-20 01:00:03 +0000
committerJeremy Katz <katzj@redhat.com>2004-05-20 01:00:03 +0000
commitb0746334d82c8cf745e3b0e6ae645e43c921903b (patch)
tree57f48cbf516b37c342a2336f11c203ebf204d3ef /scripts/getkeymaps
parent1e43a4082cdbe6c1628d77e0bda2e9c72f9de2e3 (diff)
downloadanaconda-b0746334d82c8cf745e3b0e6ae645e43c921903b.tar.gz
anaconda-b0746334d82c8cf745e3b0e6ae645e43c921903b.tar.xz
anaconda-b0746334d82c8cf745e3b0e6ae645e43c921903b.zip
the file exists and loadkeys is good about errors to stderr
Diffstat (limited to 'scripts/getkeymaps')
-rwxr-xr-xscripts/getkeymaps2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/getkeymaps b/scripts/getkeymaps
index 8f4e4d2fc..7b1478d84 100755
--- a/scripts/getkeymaps
+++ b/scripts/getkeymaps
@@ -37,7 +37,7 @@ MAPS=$(python -c "import rhpl.keyboard_models ; rhpl.keyboard_models.get_support
for map in $MAPS ; do
eval find /lib/kbd/keymaps/$PATTERN -name "$map.map*" | while read n; do
- /bin/loadkeys `basename $n .gz`
+ /bin/loadkeys `basename $n .gz` >/dev/null
$READMAP $TMPDIR/`basename $n .map.gz`.map
done
done