#!/bin/bash echo "Running udevstart to get /dev started ... " /sbin/udevstart if [ ! -e /dev/sound/dsp ] ; then echo 'EEP! We have no sound!' echo 'You can switch to another console with -<Alt>- + -<F2>- to try' echo 'and load a sound-module by hand.' echo echo 'Press -<Enter>- when done to continue ...' readfi if [ ! -e /dev/sound/dsp ] ; then echo "Still no sound. Continuing anyway"fi exit 0
#!/bin/bash
echo "Running udevstart to get /dev started ... "
/sbin/udevstart
if [ ! -e /dev/sound/dsp ] ; then
echo 'EEP! We have no sound!'
echo 'You can switch to another console with -<Alt>- + -<F2>- to try'
echo 'and load a sound-module by hand.'
echo
echo 'Press -<Enter>- when done to continue ...'
read
fi
echo "Still no sound. Continuing anyway"
exit 0