Changeset 958
- Timestamp:
- 09/05/08 12:42:59 (3 months ago)
- Location:
- trunk/initramfs-tools-tcos
- Files:
-
- 3 modified
-
debian/changelog (modified) (1 diff)
-
hooks-addons/21pulseaudio (modified) (1 diff)
-
xmlrpc/sh/rtp-controller.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/initramfs-tools-tcos/debian/changelog
r955 r958 10 10 * debian/control: 11 11 - Add libsox-fmt-all and libasound2-plugins to tcos-core Depends 12 13 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com> Fri, 05 Sep 2008 11:08:42 +0200 12 * xmlrpc/sh/rtp-controller.sh, hooks-addons/21pulseaudio: 13 - Revert creation of /etc/asound.conf in 21pulseaudio because breaks tmixer 14 15 -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com> Fri, 05 Sep 2008 12:38:28 +0200 14 16 15 17 initramfs-tools-tcos (0.89.5) unstable; urgency=low -
trunk/initramfs-tools-tcos/hooks-addons/21pulseaudio
r955 r958 89 89 cpifexists /etc/pulse/client.conf /etc/pulse/ 90 90 cpifexists /etc/pulse/daemon.conf /etc/pulse/ 91 92 cat << EOF >> ${DESTDIR}/etc/asound.conf93 pcm.!default {94 type pulse95 }96 ctl.!default {97 type pulse98 }99 EOF100 91 101 92 mkdir -p ${DESTDIR}/usr/lib/alsa-lib/ -
trunk/initramfs-tools-tcos/xmlrpc/sh/rtp-controller.sh
r955 r958 53 53 mkfifo /tmp/audiofifo 2>/dev/null 54 54 if [ $STANDALONE = 0 ]; then 55 cat << EOF > /etc/asound.conf 56 pcm.!default { 57 type pulse 58 } 59 ctl.!default { 60 type pulse 61 } 62 EOF 55 63 /sbin/daemonize.sh "rtpdump" "-F payload -o /tmp/audiofifo $2/1234" 56 64 /sbin/daemonize.sh "play" "-t raw -r 44100 -s -2 -c 2 -B /tmp/audiofifo" … … 65 73 killall -SIGKILL play 2>/dev/null 66 74 killall -SIGKILL rtpdump 2>/dev/null 67 rm -f /tmp/audiofifo 75 rm -f /tmp/audiofifo /etc/asound.conf 68 76 if [ $? = 0 ]; then echo "ok"; else echo "error: stopping rtp play"; fi 69 77 else
