firmware/src/packages/fff/fff-timeserver/Makefile
Adrian Schmutzler fd317c7a08 fff-timeserver: add 'zonename' to config
The timezone data is typically set by OpenWrt as a combination of
timezone and zonename. Add both values in our initialization, in
case we need them later.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
2021-01-31 15:18:10 +01:00

29 lines
552 B
Makefile

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