mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-11-02 03:17:48 +00:00
* properly pass current firmware hash to the gateway * revert lldp downgrade patch * update ucentral-client - fixes zlib/b64 error * add radius disctionary to ucentral-defaults * several additional hostapd patches Signed-off-by: John Crispin <john@phrozen.org>
35 lines
600 B
Makefile
35 lines
600 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tip-defaults
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/tip-defaults
|
|
SECTION:=ucentral
|
|
CATEGORY:=uCentral
|
|
TITLE:=tip-defaults
|
|
endef
|
|
|
|
define Package/tip-defaults/description
|
|
The default configuration of the AP.
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Compile/Default
|
|
|
|
endef
|
|
Build/Compile = $(Build/Compile/Default)
|
|
|
|
define Package/tip-defaults/install
|
|
$(CP) ./files/* $(1)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,tip-defaults))
|