diff options
author | Karel Kočí <cynerd@email.cz> | 2020-05-28 11:29:34 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2020-05-28 11:29:34 +0200 |
commit | c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5 (patch) | |
tree | 23efbf3e0456a78bb4a820037789477b8ab8881d /netifd/Makefile | |
parent | 68bf801ffbda2868703db98cfb2625232da9535c (diff) | |
download | openwrt-personal-pkgs-c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5.tar.gz openwrt-personal-pkgs-c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5.tar.bz2 openwrt-personal-pkgs-c606e009f2639c6b0518c9ad2bdf2b77c35ca6e5.zip |
Add netifd with patch to fix service restart
Diffstat (limited to 'netifd/Makefile')
-rw-r--r-- | netifd/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/netifd/Makefile b/netifd/Makefile new file mode 100644 index 0000000..0edd277 --- /dev/null +++ b/netifd/Makefile @@ -0,0 +1,46 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=netifd +PKG_RELEASE:=2 + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL=$(PROJECT_GIT)/project/netifd.git +PKG_SOURCE_DATE:=2019-08-05 +PKG_SOURCE_VERSION:=5e02f94411b06f192fb2a7d9be9abde3549153a8 +PKG_MIRROR_HASH:=96e158584c605e96aceb3ce7e8ad8faa8e774ffd67d59558b2d6c2ff49d0f1a5 +PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name> + +PKG_LICENSE:=GPL-2.0 +PKG_LICENSE_FILES:= + +PKG_BUILD_PARALLEL:=1 + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk + +define Package/netifd + SECTION:=base + CATEGORY:=Base system + DEPENDS:=+libuci +libnl-tiny +libubus +ubus +ubusd +jshn +libubox + TITLE:=OpenWrt Network Interface Configuration Daemon +endef + +TARGET_CFLAGS += \ + -I$(STAGING_DIR)/usr/include/libnl-tiny \ + -I$(STAGING_DIR)/usr/include \ + -flto + +TARGET_LDFLAGS += -flto -fuse-linker-plugin + +CMAKE_OPTIONS += \ + -DLIBNL_LIBS=-lnl-tiny \ + -DDEBUG=1 + +define Package/netifd/install + $(INSTALL_DIR) $(1)/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/netifd $(1)/sbin/ + $(CP) ./files/* $(1)/ + $(CP) $(PKG_BUILD_DIR)/scripts/* $(1)/lib/netifd/ +endef + +$(eval $(call BuildPackage,netifd)) |