1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-02 17:30:43 +03:00

added a init.d script to fonera-mp3d

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8734 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic 2007-09-10 21:19:21 +00:00
parent 0cb4d5d141
commit 947311329f
2 changed files with 14 additions and 0 deletions

View File

@ -57,6 +57,8 @@ define Package/fonera-mp3d/install
ln -sf mp3.cgi $(1)/www/cgi-bin/mp3_remote.cgi
$(INSTALL_DIR) $(1)/www/local
$(INSTALL_DATA) $(PKG_BUILD_DIR)/cgi/{stylesheet.css,json.js} $(1)/www/local/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/mp3d.init $(1)/etc/init.d/mp3d
endef
$(eval $(call BuildPackage,fonera-mp3d))

View File

@ -0,0 +1,12 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2007 OpenWrt.org
START=90
start() {
/usr/bin/mp3d
}
stop() {
killall mp3d
}