mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
411 B

#!/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
if [ ! -e /dev/sound/dsp ] ; then
echo "Still no sound. Continuing anyway"
fi
exit 0