Takashi Iwai
dd7b3ef9f8
- Remove obsoleted README.SuSE (bnc#889023) - Correct SUSE branding names in some texts (bnc#889023,FATE#316521) - Properly include time.h for CLOCK_MONOTONIC_RAW: 0015-pcm-pcm_local.h-include-time.h-to-enable-CLOCK_MONOT.patch OBS-URL: https://build.opensuse.org/request/show/243338 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/alsa?expand=0&rev=164
114 lines
2.3 KiB
Bash
114 lines
2.3 KiB
Bash
#! /bin/bash
|
|
# Copyright (c) 2002 SuSE Linux AG Nuernberg, Germany.
|
|
# (c) 2014 SUSE Linux Products GmbH
|
|
#
|
|
# Author: Takashi Iwai <tiwai@suse.de>, 2001
|
|
#
|
|
# /etc/init.d/joystick
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: joystick
|
|
# Required-Start: alsasound
|
|
# Required-Stop: alsasound
|
|
# Default-Start: 2 3 5
|
|
# Default-Stop:
|
|
# Short-Description: Set up analog joysticks
|
|
# Description: Loading joystick drivers
|
|
### END INIT INFO
|
|
|
|
. /etc/rc.status
|
|
. /etc/sysconfig/joystick
|
|
|
|
alsactl=/usr/sbin/alsactl
|
|
if [ -x /sbin/lsmod ]; then
|
|
lsmod=/sbin/lsmod
|
|
else
|
|
lsmod=/bin/lsmod
|
|
fi
|
|
|
|
# load joystick drivers
|
|
function start () {
|
|
# first load joydev module
|
|
if [ -z "${JOYSTICK_MODULE_0}${JOYSTICK_MODULE_1}${JOYSTICK_MODULE_2}${JOYSTICK_MODULE_3}" ]; then
|
|
rc_failed 5
|
|
return
|
|
fi
|
|
|
|
/sbin/modprobe joydev
|
|
for js in 0 1 2 3; do
|
|
# load gameport module
|
|
eval jsmod=\$GAMEPORT_MODULE_$js
|
|
if [ -n "$jsmod" -a "$jsmod" != off ]; then
|
|
/sbin/modprobe $jsmod >/dev/null 2>&1
|
|
fi
|
|
# load joystick module
|
|
eval jsdev=\$JOYSTICK_MODULE_$js
|
|
eval jsdev_opts=\$JOYSTICK_MODULE_OPTION_$js
|
|
if [ -n "$jsdev" -a "$jsdev" != off ]; then
|
|
/sbin/modprobe $jsdev $jsdev_opts >/dev/null 2>&1
|
|
fi
|
|
done
|
|
}
|
|
|
|
function stop () {
|
|
for js in 0 1 2 3; do
|
|
# remove gameport module
|
|
eval jsmod=\$GAMEPORT_MODULE_$js
|
|
if [ -n "$jsmod" -a "$jsmod" != off ]; then
|
|
/sbin/modprobe -r $jsmod
|
|
fi
|
|
# remove joystick module
|
|
eval jsdev=\$JOYSTICK_MODULE_$js
|
|
if [ -n "$jsdev" -a "$jsdev" != off ]; then
|
|
/sbin/modprobe -r $jsdev
|
|
fi
|
|
done
|
|
}
|
|
|
|
# See how we were called.
|
|
case "$1" in
|
|
start)
|
|
echo -n "Starting joystick driver"
|
|
start
|
|
rc_status -v
|
|
;;
|
|
stop)
|
|
# Stop daemons.
|
|
echo -n "Stopping joystick driver"
|
|
stop
|
|
rc_status -v
|
|
;;
|
|
try-restart)
|
|
$0 status >/dev/null && $0 restart
|
|
rc_status
|
|
;;
|
|
restart)
|
|
$0 stop
|
|
$0 start
|
|
rc_status
|
|
;;
|
|
force-reload)
|
|
$0 stop && $0 start
|
|
rc_status
|
|
;;
|
|
reload)
|
|
rc_failed 3
|
|
rc_status -v
|
|
;;
|
|
status)
|
|
if $lsmod | grep -q joydev; then
|
|
echo -n "Joystick driver loaded."
|
|
rc_status -v
|
|
else
|
|
echo -n "Joystick driver not loaded."
|
|
rc_status -u
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|try-restart|restart|force-reload|reload|status}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
rc_exit
|