firmware/src/packages/fff/fff-node/Makefile
Christian Dresel 1e373481cf treewide: Split home.html in ssl-webui
We have different VPN or other things in the home.html of the ssl-webui

The patch split the files to the correct packages.

The layer3 file is a little bit smaller and need some work in feature to
add some informations (e.g. wireguard or babel information)

Signed-off-by: Christian Dresel <freifunk@dresel.systems>
2021-01-29 08:54:13 +01:00

33 lines
584 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-node
PKG_RELEASE:=4
include $(INCLUDE_DIR)/package.mk
define Package/fff-node
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken node configuration
URL:=https://www.freifunk-franken.de
DEPENDS:=+fff-batman-adv \
+fff-fastd \
+fff-firewall \
+fff-hoods \
+fff-uradvd
endef
define Package/fff-node/description
This package configures the node
endef
define Build/Compile
# nothing
endef
define Package/fff-node/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,fff-node))