mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-17 10:24:39 +02:00
13 lines
120 B
Plaintext
13 lines
120 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=99
|
||
|
STOP=99
|
||
|
|
||
|
start() {
|
||
|
/usr/sbin/alsactl restore
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
/usr/sbin/alsactl store
|
||
|
}
|