[ltp] I must rerun alsaconf before using xmms.
Brad Langhorst
linux-thinkpad@linux-thinkpad.org
Wed, 16 Mar 2005 15:00:56 -0500
On Wed, 2005-03-16 at 14:33 -0500, Eben King wrote:
> Heck if I know what that is. Boy I wish someone who had actually done
> this would jump in...
>
> >
> > What do alsaconf ? Then I can create a dirty /etc/init.d/S40_my_alsa.
>
> Probably the creation of the devices is all that's necessary.
my alsa setup includes this
/etc/alsa/dev.d/alsa-base
#!/bin/sh
#
# dev script for alsa
DEV_BASENAME="${DEVNAME##*/}"
case "$DEV_BASENAME" in
controlC[0-7])
N="${DEV_BASENAME#controlC}"
case "$ACTION" in
add) /etc/init.d/alsa start $N || : ;;
# remove) /etc/init.d/alsa stop $N || : ;;
esac
;;
esac