mmfd: split package into mmfd and gluon-mmfd, bump mmfd version

* include ability to open socket
* include dependency for libjson-c
This commit is contained in:
Christof Schulze 2019-07-07 02:03:28 +02:00
parent 9c0ac53551
commit 63e6e0da06
2 changed files with 8 additions and 29 deletions

View File

@ -1,10 +1,15 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=mmfd
PKG_SOURCE_DATE:=2019-07-07
PKG_SOURCE_DATE:=2019-07-20
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL=https://github.com/freifunk-gluon/mmfd.git
PKG_SOURCE_VERSION:=2a9ff51260e81ae47caa3c7c3fcdbe84357bd561
PKG_SOURCE_VERSION:=3c4ce688e40c32e7dfbf945d9f224353fe5d8363
PKG_BUILD_DEPENDS += libjson-c
CMAKE_OPTIONS += -DCMAKE_BUILD_TYPE:STRING=MINSIZEREL
#CMAKE_OPTIONS += -DCMAKE_BUILD_TYPE:STRING=Debug
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
@ -13,11 +18,10 @@ define Package/mmfd
SECTION:=net
CATEGORY:=Network
TITLE:=mesh multicast forwarding daemon
DEPENDS:= +kmod-tun
DEPENDS:= +kmod-tun +libjson-c
endef
define Package/mmfd/install
$(CP) ./files/* $(1)/
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/mmfd $(1)/usr/sbin/
endef

View File

@ -1,25 +0,0 @@
#!/bin/sh /etc/rc.common
USE_PROCD=1
START=50
DAEMON=/usr/sbin/mmfd
start_service() {
procd_open_instance
procd_set_param command $DAEMON
procd_set_param respawn ${respawn_threshold:-60} ${respawn_timeout:-1} ${respawn_retry:-0}
procd_set_param stderr 1
procd_set_param stdout 1
procd_close_instance
}
service_triggers() {
local script=$(readlink "$initscript")
local name=$(basename "${script:-$initscript}")
procd_open_trigger
procd_add_raw_trigger "interface.*" 0 "/etc/init.d/$name" reload
procd_close_trigger
}