mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-23 11:02:48 +02:00
16 lines
203 B
Bash
Executable File
16 lines
203 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=01
|
|
STOP=01
|
|
|
|
start() {
|
|
/usr/sbin/alsactl restore -f /etc/asound.state
|
|
return 0
|
|
}
|
|
|
|
stop() {
|
|
/usr/sbin/alsactl store -f /etc/asound.state
|
|
killall gmenu2x.bin
|
|
return 0
|
|
}
|