wol: Add a init script and a UCI configuration file

git-svn-id: svn://svn.openwrt.org/openwrt/packages@8849 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
olli 2007-09-19 21:21:04 +00:00
parent 6cc741ea89
commit 82911a59e5
3 changed files with 38 additions and 1 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=wol
PKG_VERSION:=0.7.1
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE_URL:=@SF/ahh
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
@ -40,6 +40,10 @@ CONFIGURE_VARS += \
define Package/wol/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_DATA) ./files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
endef
$(eval $(call BuildPackage,wol))

3
net/wol/files/wol.config Normal file
View File

@ -0,0 +1,3 @@
config wol-target
option mac ''
option enabled '0'

30
net/wol/files/wol.init Normal file
View File

@ -0,0 +1,30 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2007 OpenWrt.org
START=60
append_string() {
local section="$1"
local option="$2"
local value="$3"
local _val
config_get _val "$section" "$option"
[ -n "$_val" ] && append args "$3$_val"
}
start_service() {
local cfg="$1"
args=""
append_string "$cfg" broadcast "--host="
append_string "$cfg" port "--port="
append_string "$cfg" password "--passwd="
append_string "$cfg" mac ""
config_get_bool enabled "$cfg" "enabled" '1'
[ "$enabled" -gt 0 ] && /usr/bin/wol $args
}
start() {
config_load wol
config_foreach start_service wol-target
}