#!/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
|