firmware/src/packages/fff/fff-ra/Makefile
Adrian Schmutzler 95c8ee78b7 fff-ra: remove IPv4 support of odhcpd
We do not use the IPv4 functionality of odhcpd, but use dnsmasq
for that. Use odhcpd-ipv6only instead.

This is also the default for OpenWrt.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Reviewed-by: Fabian Bläse <fabian@blaese.de>
Reviewed-by: Johannes Kimmel <fff@bareminimum.eu>
2021-01-27 19:58:07 +01:00

32 lines
620 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-ra
PKG_RELEASE:=3
PKG_BUILD_DIR:=$(BUILD_DIR)/fff-ra
include $(INCLUDE_DIR)/package.mk
define Package/fff-ra
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken Router Advertisements
URL:=https://www.freifunk-franken.de
DEPENDS:=+odhcpd-ipv6only
endef
define Package/fff-ra/description
This is the fff-ra for the Freifunk Franken Firmware
It is used to configure odhcpd to send Router Advertisements for use as gateway.
endef
define Build/Compile
# nothing
endef
define Package/fff-ra/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-ra))