Hi, to avoid the message that tell me the codec is not ready, i have tried a similar solution on my bootlocal.sh:
sleep 3s && /usr/local/etc/init.d/alsasound start
Some time work and some no; i do not really want to increase the number of seconds, for me it does not have much sense.
I have found a similar (ugly) solution too, to wait the xserver to start:
while [ ! -e /tmp/wm_errors ]; do
sleep 0s
done
/usr/local/etc/init.d/alsasound start
I do not know if these messages are a problem; i have noticed on kernel message log by dmesg that this happen in any case when i load alsa.tcz, sound always works fine.
What do you thik about?