PKG_NAME:=pulseaudio
PKG_VERSION:=1.1
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://freedesktop.org/software/pulseaudio/releases/
endef
CONFIGURE_ARGS += \
- --with-system-user=root \
- --with-system-group=root \
- --with-access-group=root \
+ --with-system-user=pulse \
+ --with-system-group=pulse \
+ --with-access-group=audio \
--with-database=simple \
--enable-alsa \
--disable-hal \
--disable-tcpwrap \
--disable-nls \
--disable-manpages \
- --disable-oss-output \
+ --enable-oss-output \
--disable-oss-wrapper \
--disable-samplerate \
--disable-per-user-esound-socket \
ifeq ($(BUILD_VARIANT),noavahi)
CONFIGURE_ARGS += \
--disable-avahi \
- --disable-dbus
+ --disable-dbus
endif
CONFIGURE_VARS += \
#!/bin/sh /etc/rc.common
# Copyright (C) 2011 OpenWrt.org
+
START=65
+SERVICE_USE_PID=1
+SERVICE_PID_FILE=/var/run/pulse/pid
+
start() {
- mkdir -p /tmp/lib/pulse
- /usr/bin/pulseaudio --daemonize --system --disallow-exit --disallow-module-loading --disable-shm --exit-idle-time=-1
+ user_exists pulse 51 || user_add pulse 51
+ group_exists pulse 51 || group_add pulse 51
+ [ -d /var/run/pulse ] || {
+ mkdir -m 0755 -p /var/run/pulse
+ chmod 0750 /var/run/pulse
+ chown pulse:pulse /var/run/pulse
+ }
+ [ -d /var/lib/pulse ] || {
+ mkdir -m 0755 -p /var/lib/pulse
+ chmod 0750 /var/lib/pulse
+ chown pulse:pulse /var/lib/pulse
+ }
+ service_start /usr/bin/pulseaudio --daemonize --system --disallow-exit --disallow-module-loading --disable-shm --exit-idle-time=-1
}
stop() {
- killall pulseaudio
+ service_stop /usr/bin/pulseaudio
}