From: Raymond Danks Date: Wed, 31 May 2006 22:36:33 +0000 (+0000) Subject: gpm - Init script cleanup. X-Git-Tag: Release-2010-05/1~9453^2~1534 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f34b9a269d69ae50920ae52cd32add61899cc62;p=openembedded.git gpm - Init script cleanup. --- diff --git a/packages/gpm/gpm-1.20.1/init b/packages/gpm/gpm-1.20.1/init index bb6e4a3f55..f90fce9fc0 100644 --- a/packages/gpm/gpm-1.20.1/init +++ b/packages/gpm/gpm-1.20.1/init @@ -1,12 +1,12 @@ -#! /bin/sh i-e +#! /bin/sh # Grab the common functions -. /etc/init.d/functions +#. /etc/init.d/functions # FIXME: # Add a configuration file for GPM here -test -x /bin/gpm || exit 0 +test -x /usr/sbin/gpm || exit 0 case "$1" in start) @@ -14,10 +14,12 @@ case "$1" in mkfifo /dev/gpmdata fi - action "Starting GPM:" start-stop-daemon -S -x /bin/gpm -- -R -m /dev/mouse -t imps2 + echo "Starting GPM:" + start-stop-daemon -S -x /usr/sbin/gpm -- -R -m /dev/psaux -t ps2 ;; stop) - action "Stopping GPM:" start-stop-daemon -K -x /bin/gpm + echo "Stopping GPM:" + start-stop-daemon -K -x /usr/sbin/gpm ;; restart|force-reload) $0 stop