aboutsummaryrefslogtreecommitdiffstats
path: root/packages/openmoko-base/openmoko-sound-system/pulseaudio
blob: 76daacd3aed74c89f6e4e852139ac9e5716016d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh
#
# pulseaudio	This shell script starts and stops pulseaudio.
#
# chkconfig: 345 90 40
# description: Pulseaudio manages the sound input/output
# processname: pulseaudio

# Source function library.
#. /etc/rc.d/init.d/functions

RETVAL=0
prog="pulseaudio"

start() {
    echo -n "Starting the audio server..."
    # FIXME once alsa/shm permissions have been fixed, supply --system
	pulseaudio --resample-method=trivial -D -nF /etc/pulse/session
	echo $prog
}

stop() {
	# Stop daemons.
	echo -n "Shutting down $prog: "
	killall pulseaudio
    echo "done"
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  restart|reload)
	stop
	start
	;;
  *)
	echo "Usage: $0 {start|stop|restart}"
	exit 1
esac

exit $RETVAL