firmware/src/packages/fff/fff-firewall/Makefile
Tim Niemeyer b61830c304 fff-firewall: new package
- moves the node<-->client ra rules to package fff-uradvd

Signed-off-by: Tim Niemeyer <tim@tn-x.org>
Reviewed-by: Tobias Klaus <tk+ff@meskal.net>
Reviewed-by: Jan Kraus <mayosemmel@gmail.com>
2016-04-05 23:27:11 +02:00

44 lines
920 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-firewall
PKG_VERSION:=1
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/fff-firewall
include $(INCLUDE_DIR)/package.mk
define Package/fff-firewall
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken firewall
URL:=http://www.freifunk-franken.de
DEPENDS:=+arptables \
+ebtables +ebtables-utils \
+kmod-ebtables-ipv4 +kmod-ebtables-ipv6 \
+iptables-mod-filter +iptables-mod-ipopt +iptables-mod-conntrack-extra
endef
define Package/fff-firewall/description
This is the firewall for the Freifunk Franken Firmware
It is used to configure firewall.
endef
define Build/Prepare
echo "all: " > $(PKG_BUILD_DIR)/Makefile
endef
define Build/Configure
# nothing
endef
define Build/Compile
# nothing
endef
define Package/fff-firewall/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-firewall))