firmware/src/packages/fff/fff-babeld/Makefile
Fabian Bläse 779f5c1c47 fff-babeld: Clarify warning about missing ipv4 peering address
When neither peer_ip nor ipaddr are set, no ipv4 address for peering
interfaces is available. Therefore, no IPv4 routes can be advertised.

Other than that, a configuration like this is perfectly valid and
configuration is already continued. Therefore, the "FATAL" message might
be misleading so it is replaced with "WARNING" and clarified slightly.

Signed-off-by: Fabian Bläse <fabian@blaese.de>
Reviewed-by: Johannes Kimmel <fff@bareminimum.eu>
[bump PKG_RELEASE]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2021-01-28 09:12:44 +01:00

32 lines
616 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-babeld
PKG_RELEASE:=6
PKG_BUILD_DIR:=$(BUILD_DIR)/fff-babeld
include $(INCLUDE_DIR)/package.mk
define Package/fff-babeld
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken babeld configuration example
URL:=http://www.freifunk-franken.de
DEPENDS:=+babeld
endef
define Package/fff-babeld/description
This is the Freifunk Franken Firmware babeld package.
This package provides an example babeld configuration.
endef
define Build/Compile
# nothing
endef
define Package/fff-babeld/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-babeld))