#!/bin/sh # # # 07-Dec-02 amo Modified for Slack-8.1 # 12-Oct-03 amo Fixed for DFI PM10-EL # 18-Nov-03 amo Cleanup for EPIA-800 # # case "$1" in 'start') insmod soundcore insmod sound insmod uart401 insmod ac97_codec # insmod esssolo1 # insmod i810_audio insmod via82cxxx_audio # # show that its running $0 status # ;; 'stop') # rmmod via82cxxx_audio # rmmod i810_audio # rmmod esssolo1 rmmod ac97_codec rmmod uart401 rmmod sound rmmod soundcore # # show that its stopped $0 status # ;; # 'status') lsmod ;; # 'play') # play /usr/X11R6/share/WindowMaker/Sounds/startup.wav # # play /usr/share/sounds/phone.wav # play /opt/Src/MultiMedia/Samples/WAV/phone.wav # play /opt/Src/MultiMedia/Samples/gotspam.wav # # play /usr/share/licq/sounds/icq/Message.wav # ;; *) echo "Usage: /etc/rc.d/rc.sound { start | stop | status | play }" ;; esac # # End of file