mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 17:31:27 +00:00
* enhance maverick stability * add persistent certificate storage * update schema * add channel stats to telemetry messages * make rtty cmd handler work * add support for recovery images Signed-off-by: John Crispin <john@phrozen.org>
31 lines
532 B
Makefile
31 lines
532 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=certificates
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/certificates
|
|
SECTION:=ucentral
|
|
CATEGORY:=uCentral
|
|
TITLE:=TIP DigiCer certificate store
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Compile/Default
|
|
|
|
endef
|
|
Build/Compile = $(Build/Compile/Default)
|
|
|
|
define Package/certificates/install
|
|
$(CP) ./files/* $(1)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,certificates))
|