#!/sbin/runscript # Copyright 1999-2002 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { use localmount before xdm gpm } start() { ebegin "Loading synaptics-usb module (if neccesary)" modprobe synaptics-usb eend $? ebegin "Binding synaptics to synaptics-usb." /usr/sbin/synaptics-usb rebind_to synaptics-usb eend $? } stop() { ebegin "Returning synaptics to hid mode" /usr/sbin/synaptics-usb rebind_to usbhid eend $? }