firmware/src/packages/fff/fff-network/Makefile
Johannes Kimmel 27e074b1ea fff-network: exclude vxmesh fdb entries in client count
This avoids counting a single client multiple times.

Neighbours behind the vxlan device are actually local to another router
and should only be counted there.

Signed-off-by: Johannes Kimmel <fff@bareminimum.eu>
2021-02-17 07:14:03 +01:00

33 lines
606 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-network
PKG_RELEASE:=32
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken network configuration
URL:=http://www.freifunk-franken.de
DEPENDS:= \
+owipcalc \
+fff-boardname \
+fff-firewall
endef
define Package/$(PKG_NAME)/description
This package configures the network interfaces
endef
define Build/Compile
# nothing
endef
define Package/$(PKG_NAME)/install
$(CP) ./files/* $(1)/
test -d ./$(ARCH) && $(CP) ./$(ARCH)/* $(1)/etc/
endef
$(eval $(call BuildPackage,$(PKG_NAME)))