public inbox for speakup@linux-speakup.org
 help / color / mirror / Atom feed
* cut and paste still doesn't work
@  Igor Gueths
   ` Adam Myrow
  0 siblings, 1 reply; 2+ messages in thread
From: Igor Gueths @  UTC (permalink / raw)
  To: speakup

[-- Attachment #1: Type: TEXT/PLAIN, Size: 383 bytes --]

Hi Adam. Attached is the only script that I found in /etc/init.d
concerning keymaps. As far as I know, it doesn't reference any speakup
keymaps in any way, however correct me if I am wrong. I wouldn't advise
doing a -x on this script, for it seems to be loading keymaps that are
used by the kernel such as the qwertty-us one. Do you have any idea where
this script would be located?

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: TEXT/x-sh; name="keymaps-lct.sh", Size: 836 bytes --]

#!/bin/sh

#
# Load the keymaps *as soon as possible*
#

test -f /bin/loadkeys || exit 0

PACKAGE=console-tools

CONFDIR=/etc/${PACKAGE}

EXT=kmap

#KERNEL_KEYMAP=/var/state/misc/kernel.${EXT}

case "$1" in
    start | restart | force-reload | reload)
# 	# save kernel keymap
# 	if [ -d ${KERNEL_KEYMAP%/*} -a ! -r ${KERNEL_KEYMAP} ]
# 	then
# 	    /usr/bin/dumpkeys > ${KERNEL_KEYMAP}
# 	fi

	# load new map
	if [ -r ${CONFDIR}/default.${EXT} ] ; then
	    /bin/loadkeys ${CONFDIR}/default.${EXT}
	elif [ -r ${CONFDIR}/default.${EXT}.gz ] ; then
	    /bin/loadkeys ${CONFDIR}/default.${EXT}.gz
	fi
	;;

    stop)
# 	# ensure the saved kernel keymap is removed before halt/reboot
# 	rm -f ${KERNEL_KEYMAP}
	;;

    *)
	echo "Usage: $0 {start|stop|restart|reload|force-reload}"
	exit 1
	;;
esac

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~ UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
 cut and paste still doesn't work Igor Gueths
 ` Adam Myrow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).