amixer.init 406 B

12345678910111213141516171819202122232425262728293031
  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. amixer set Master on
  13. amixer set PCM on
  14. amixer set Master 75%
  15. amixer set PCM 75%
  16. ;;
  17. stop)
  18. amixer set Master off
  19. amixer set PCM off
  20. ;;
  21. restart)
  22. sh $0 stop
  23. sh $0 start
  24. ;;
  25. *)
  26. echo "Usage: $0 {start | stop | restart}"
  27. exit 1
  28. ;;
  29. esac
  30. exit $?