firmware/src/packages/fff/fff-boardname/Makefile

29 lines
568 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=fff-boardname
PKG_RELEASE:=$(COMMITCOUNT)
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
SECTION:=base
CATEGORY:=Freifunk
TITLE:=Freifunk-Franken boardname
URL:=https://www.freifunk-franken.de
endef
define Package/$(PKG_NAME)/description
This is the Freifunk Franken Firmware boardname package.
This packages configures the boardname in the board config.
endef
define Build/Compile
# nothing
endef
define Package/$(PKG_NAME)/install
$(CP) ./files/* $(1)/
endef
$(eval $(call BuildPackage,$(PKG_NAME)))