amixer.init 437 B

1234567891011121314151617181920212223242526272829303132
  1. #!/bin/sh
  2. #PKG alsa-utils
  3. #INIT 60
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${amixer:-NO}" = x"NO" && exit 0
  9. exec sh $0 start
  10. ;;
  11. start)
  12. for mixer in $amixer_mixer; do
  13. amixer set $mixer on
  14. amixer set $mixer $amixer_volume
  15. done
  16. ;;
  17. stop)
  18. for mixer in $amixer_mixer; do
  19. amixer set $mixer off
  20. done
  21. ;;
  22. restart)
  23. sh $0 stop
  24. sh $0 start
  25. ;;
  26. *)
  27. echo "Usage: $0 {start | stop | restart}"
  28. exit 1
  29. ;;
  30. esac
  31. exit $?