www.nico.schottelius.org/software/cinit/browse_source/cinit-0.3pre16/bin/cinit-conf.svc.keymap.linux
Nico Schottelius 0c13ed6979 add cinit-0.3pre16
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
2009-09-29 21:36:27 +02:00

43 lines
945 B
Bash
Executable file

#!/bin/sh
# Nico Schottelius
# cinit: install keymap from environment setting
# Date: 2005-10-15
#
. $(dirname $0)/cinit-conf.read-conf
set -e
if [ $# -ne 0 ]; then
echo "$(basename $0) (no args)"
exit 1
fi
if [ -z "$C_KEYMAP" ]; then
echo "Set C_KEPMAP to the wanted keymap."
exit 1
fi
if [ -d "${DESTDIR}/${CINIT_DIR}/local-tuning/keymap" ]; then
echo "Service keymap already exists."
exit 1
fi
BINARY_PATH=$($(dirname $0)/cinit.path-find loadkeys)
if [ $? -ne 0 ]; then
echo "Did not find binary loadkeys."
exit 1
fi
echo -n "Installing keymap to ${DESTDIR}/${CINIT_DIR}/local-tuning/keymap ..."
"$INSTALL_PROG" "$INSTALL_DIRECTORY" \
"${DESTDIR}/${CINIT_DIR}/local-tuning/keymap"
ln -sf "$BINARY_PATH" "${DESTDIR}/${CINIT_DIR}/local-tuning/keymap/$C_ON"
echo "$C_KEYMAP" >> "${DESTDIR}/${CINIT_DIR}/local-tuning/keymap/$C_ON$C_PARAMS"
echo "finished."
exit 0