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

  1. #!/bin/bash
  2. echo "Running udevstart to get /dev started ... "
  3. /sbin/udevstart
  4. if [ ! -e /dev/sound/dsp ] ; then
  5. echo 'EEP! We have no sound!'
  6. echo 'You can switch to another console with -<Alt>- + -<F2>- to try'
  7. echo 'and load a sound-module by hand.'
  8. echo
  9. echo 'Press -<Enter>- when done to continue ...'
  10. read
  11. fi
  12. if [ ! -e /dev/sound/dsp ] ; then
  13. echo "Still no sound. Continuing anyway"
  14. fi
  15. exit 0