I get the busybox error even when the "output setting" field is not
empty. Used to work under 7.0.1. Setup is a RPi 4 with an Aureon XFire
HD 8.0 USB soundcard. I run a custom /etc/asound.conf for a multiroom
audio system:


Code:
--------------------
    #########################################################################
  ## CUSTOM ASOUND.CONF by mfd https://knx-user-forum.de/member/7968-mfd
  #########################################################################
  ##   Channel splitting your UA0099 USB sound card to get up to four
  ##     independent stereo outputs (...and more )
  #########################################################################
  ##        stereofront        = the FRONT labeled green jack
  ##        stereosurround    = the SURROUND labeled black jack
  ##        stereocenter    = the CENTER / BASS labeled yellow jack
  ##        stereoback        = the BACK labeled black jack
  ##        stereoall        = all stereo outputs
  
  
  pcm.pcpinput {
  type hw
  card HD;
  device 0;
  }
  
  pcm.AureonHD {        # alias for our sound card
  type hw            # must be hw in our case
  card HD            # check your correct card number by typing
  device 0        # 'aplay -l' in your terminal
  }                    # the 1st usb card on the Raspi shows as
  # card 1: Device [USB Sound Device], device 0: USB Audio [USB Audio]
  
  ctl.AureonHD{
  type hw
  card 1
  device 0
  }
  
  pcm.dmixer {
  type dmix
  ipc_key 1024            # must be unique number on your system
  ipc_perm 0666            # neccesary for normal user to have access
  slave.pcm "AureonHD"
  slave {
  period_time 0
  period_size 1024
  buffer_size 4096
  rate 44100
  channels 8
  }
  bindings {
  0 0
  1 1
  2 2
  3 3
  4 4
  5 5
  6 6
  7 7
  }
  
  }
  
  pcm.!default {
  type plug
  slave.pcm "dmixer"
  }
  
  pcm.stereofront {
  type plug
  slave {
  pcm "dmixer"
  channels 8
  }
  ttable.0.0 1
  ttable.1.1 1
  }
  
  pcm.stereocenter {
  type plug
  slave {
  pcm "dmixer"
  channels 8
  }
  ttable.0.2 1
  ttable.1.3 1
  }
  
  pcm.stereoback {
  type plug
  slave {
  pcm "dmixer"
  channels 8
  }
  ttable.0.4 1
  ttable.1.5 1
  }
  
  pcm.stereosurround {
  type plug
  slave {
  pcm "dmixer"
  channels 8
  }
  ttable.0.6 1
  ttable.1.7 1
  }
  
  pcm.stereoall {
  type plug
  slave {
  pcm "dmixer"
  channels 8
  }
  ttable.0.0 1    # input left and right to all 4 l+r outputs
  ttable.1.1 1
  ttable.0.2 1
  ttable.1.3 1
  ttable.0.4 1
  ttable.1.5 1
  ttable.0.6 1
  ttable.1.7 1
  }
--------------------


The Output Setting field is set to stereofront

35318

Despite the error, everything seems to work as it should. It just takes
a lot longer to boot. I'd be grateful for any ideas on how to fix this.


+-------------------------------------------------------------------+
|Filename: Clipboard01.jpg                                          |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=35318|
+-------------------------------------------------------------------+

------------------------------------------------------------------------
slimlurker's Profile: http://forums.slimdevices.com/member.php?userid=71948
View this thread: http://forums.slimdevices.com/showthread.php?t=114851

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to