1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #
- # Copyright (C) 2021 Jo-Philipp Wich <[email protected]>
- #
- include $(TOPDIR)/rules.mk
- PKG_NAME:=firewall4
- PKG_RELEASE:=1
- PKG_SOURCE_PROTO:=git
- PKG_SOURCE_URL=$(PROJECT_GIT)/project/firewall4.git
- PKG_SOURCE_DATE:=2023-11-03
- PKG_SOURCE_VERSION:=698a53354fd280aae097efe08803c0c9a10c14c2
- PKG_MIRROR_HASH:=466c43e46fc4b9c24053874b322b84556e24718c1149bd9a52b889062de0dc29
- PKG_MAINTAINER:=Jo-Philipp Wich <[email protected]>
- PKG_LICENSE:=ISC
- include $(INCLUDE_DIR)/package.mk
- define Package/firewall4
- SECTION:=net
- CATEGORY:=Base system
- TITLE:=OpenWrt 4th gen firewall
- DEPENDS:= \
- +kmod-nft-core +kmod-nft-fib +kmod-nft-offload \
- +kmod-nft-nat \
- +nftables-json \
- +ucode +ucode-mod-fs +ucode-mod-ubus +ucode-mod-uci
- EXTRA_DEPENDS:=ucode (>=2022.03.22)
- PROVIDES:=uci-firewall
- endef
- define Package/firewall4/description
- This package provides an nftables-based implementation of the UCI firewall
- sharing the same configuration format.
- endef
- define Package/firewall4/conffiles
- /etc/config/firewall
- /etc/nftables.d/
- endef
- define Package/firewall4/install
- $(CP) -a $(PKG_BUILD_DIR)/root/* $(1)/
- endef
- define Build/Compile
- endef
- $(eval $(call BuildPackage,firewall4))
|