Show
Ignore:
Timestamp:
09/05/08 12:42:59 (4 months ago)
Author:
mariodebian
Message:

initramfs-tools-tcos (0.89.6)

  • xmlrpc/sh/rtp-controller.sh, hooks-addons/21pulseaudio:
    • Revert creation of /etc/asound.conf in 21pulseaudio because breaks tmixer
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/initramfs-tools-tcos/xmlrpc/sh/rtp-controller.sh

    r955 r958  
    5353        mkfifo /tmp/audiofifo 2>/dev/null 
    5454        if [ $STANDALONE = 0 ]; then 
     55             cat << EOF > /etc/asound.conf 
     56pcm.!default { 
     57    type pulse 
     58} 
     59ctl.!default { 
     60    type pulse 
     61} 
     62EOF 
    5563             /sbin/daemonize.sh "rtpdump" "-F payload -o /tmp/audiofifo $2/1234" 
    5664             /sbin/daemonize.sh "play" "-t raw -r 44100 -s -2 -c 2 -B /tmp/audiofifo" 
     
    6573            killall -SIGKILL play 2>/dev/null 
    6674            killall -SIGKILL rtpdump 2>/dev/null 
    67             rm -f /tmp/audiofifo 
     75            rm -f /tmp/audiofifo /etc/asound.conf 
    6876            if [ $? = 0 ]; then echo "ok"; else echo "error: stopping rtp play"; fi 
    6977        else