- Add pulseaudio in system mode - Add alsactl restore with correct mixer state from Aether - Add x6200-control package (I2C hardware control library) - Audio chain: pulseaudio -> x6200_control_init -> voice_rec -> speaker
41 lines
397 B
Bash
Executable File
41 lines
397 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Alsa config
|
|
#
|
|
|
|
source /etc/profile
|
|
|
|
start() {
|
|
printf "Restore alsa"
|
|
alsactl restore
|
|
echo "OK"
|
|
}
|
|
|
|
stop() {
|
|
printf "Store alsa"
|
|
# alsactl store
|
|
echo "OK"
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|