Changeset 958

Show
Ignore:
Timestamp:
09/05/08 12:42:59 (3 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
Location:
trunk/initramfs-tools-tcos
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/initramfs-tools-tcos/debian/changelog

    r955 r958  
    1010  * debian/control: 
    1111    - 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 
    1416 
    1517initramfs-tools-tcos (0.89.5) unstable; urgency=low 
  • trunk/initramfs-tools-tcos/hooks-addons/21pulseaudio

    r955 r958  
    8989 cpifexists /etc/pulse/client.conf     /etc/pulse/ 
    9090 cpifexists /etc/pulse/daemon.conf     /etc/pulse/ 
    91  
    92  cat << EOF >> ${DESTDIR}/etc/asound.conf 
    93 pcm.!default { 
    94     type pulse 
    95 } 
    96 ctl.!default { 
    97     type pulse 
    98 } 
    99 EOF 
    10091 
    10192  mkdir -p ${DESTDIR}/usr/lib/alsa-lib/ 
  • 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