4
Fork 0

Finally to production

This commit is contained in:
R3ABM Artem 2016-08-04 11:52:45 +04:00
parent 3d79575f03
commit ec037a2e00
5 changed files with 38 additions and 25 deletions

View file

@ -17,10 +17,10 @@ DEPENDS:=
endef
define Package/cronosagent/description
CronosAgent for BrandMeister DMR Master Server
Allows to connect Radio Activity KAIROS Repetaters to BrandMeister DMR Master Server
Radio Activity KAIROS should have built-in feature of External Server Access
which is available on firmware customization 008 (Radio Amateur community)
CronosAgent for BrandMeister DMR Master Server
Allows to connect Radio Activity KAIROS Repetaters to BrandMeister DMR Master Server
Radio Activity KAIROS should have built-in feature of External Server Access
which is available on firmware customization 008 (Radio Amateur community)
endef
define Build/Prepare
@ -28,20 +28,6 @@ define Build/Prepare
$(CP) -R $(X_SOURCE_DIR)/* $(PKG_BUILD_DIR)/
endef
define Package/cronosagent/conffiles
/etc/config/cronosagent
endef
define Package/cronosagent/postinst
#!/bin/sh
/etc/init.d/cronosagent enable
endef
define Package/cronosagent/prerm
#!/bin/sh
/etc/init.d/cronosagent disable
endef
define Package/cronosagent/install
$(INSTALL_DIR) $(1)/opt/CronosAgent
$(INSTALL_DIR) $(1)/etc/init.d
@ -56,4 +42,21 @@ define Package/cronosagent/install
$(INSTALL_DATA) $(X_SOURCE_DIR)/OpenWRT/model/cbi/cronosagent/configure.lua $(1)/usr/lib/lua/luci/model/cbi/cronosagent/
endef
define Package/cronosagent/conffiles
/etc/config/cronosagent
endef
define Package/cronosagent/postinst
#!/bin/sh
/etc/init.d/cronosagent enable
exit 0
endef
define Package/cronosagent/prerm
#!/bin/sh
/etc/init.d/cronosagent stop
/etc/init.d/cronosagent disable
exit 0
endef
$(eval $(call BuildPackage,cronosagent))

View file

@ -10,5 +10,4 @@ function restartCronosAgent()
luci.sys.init.stop("cronosagent")
luci.sys.init.start("cronosagent")
luci.http.write("Done!")
-- luci.http.redirect("/")
end

View file

@ -10,3 +10,7 @@ start() {
stop() {
killall cronosagent
}
reload() {
restart
}

View file

@ -1,4 +1,9 @@
local function handleAferCommit()
luci.sys.init.stop("cronosagent")
luci.sys.init.start("cronosagent")
end
local map = Map("cronosagent", "CronosAgent")
local section = map:section(TypedSection, "cronosagent", "Configuration")
@ -7,11 +12,13 @@ local repeater = section:option(Value, "repeaterAddress", "Repeater Address", "A
local server = section:option(Value, "serverAddress", "Server address", "Address of BrandMeister DMR Server")
local password = section:option(Value, "serverPassword", "Password", "Password to login to the server" )
number.datatype = "range(1,16777215)"
repeater.datatype = "ip4addr"
number.datatype = "range(1,16777215)"
repeater.datatype = "ip4addr"
server.datatype = "host"
password.datatype = "string"
password.password = true
server.datatype = "host"
password.datatype = "string"
password.password = true
map.on_after_commit = handleAferCommit
return map

View file

@ -1 +1 @@
#define VERSION 20160731
#define VERSION 20160804