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.

23 lines
513 B

  1. #!/bin/bash
  2. echo "Trying to autodetect hardware..."
  3. hwscan >/tmp/hardware
  4. if [ `grep -c '^# ' /tmp/hardware` -gt 0 ] ; then
  5. echo 'Found the following:'
  6. grep '^# ' /tmp/hardware | sed 's,^# ,- ,g'
  7. echo 'Now trying to initialise them...'
  8. . /tmp/hardware
  9. fi
  10. if [ ! -e /dev/sound/dsp ] ; then
  11. echo 'EEP! We have no sound!'
  12. echo 'You can switch to another console with -<Alt>- + -<F2>- to try'
  13. echo 'and load a sound-module by hand.'
  14. echo
  15. echo 'Press -<Enter>- when done to continue ...'
  16. read
  17. fi
  18. exit 0