My situation: I have a machine with a SBLive card. When the LTSP client would start, I would see the modules for it load automaticly, and the esd server would start. But no sound would come out.
I eventaully figured out that the emu10k1 kernel module just needed reloading.
Solution:
Modify the etc/rc.sound file to load, unload, load the module.
I went from:
Code: Select all
AUTOPROBE=`/sbin/pci_scan /etc/audiolist`
if [ "$AUTOPROBE" ]
then
SMODULE_AUTO=$AUTOPROBE
modprobe $AUTOPROBE && reg_info SMODULE_AUTO
fi
Code: Select all
AUTOPROBE=`/sbin/pci_scan /etc/audiolist`
if [ "$AUTOPROBE" ]
then
SMODULE_AUTO=$AUTOPROBE
modprobe $AUTOPROBE && reg_info SMODULE_AUTO
rmmod $AUTOPROBE
modprobe $AUTOPROBE
fi
After that, sound worked right off once booted.
Hope this helps someone in the future!
