mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 10:49:42 +02:00
13 lines
123 B
Plaintext
13 lines
123 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2007 OpenWrt.org
|
||
|
|
||
|
START=90
|
||
|
|
||
|
start() {
|
||
|
/usr/bin/mp3d
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall mp3d
|
||
|
}
|