mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 09:32:34 +00:00
b971b73 Support HaLow Mesh on EAP112 7d28320 Fix in ucode script of config_raw to add multiple UCI sections via config-raw object of the schema 1453f2e chanUtil per radio shall be obtained from the policy_chanutil.uc script fa26853 enable multiple bssid by default on 6G Signed-off-by: John Crispin <john@phrozen.org>
53 lines
1.7 KiB
Makefile
53 lines
1.7 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ucentral-schema
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL=https://github.com/Telecominfraproject/wlan-ucentral-schema.git
|
|
PKG_MIRROR_HASH:=9b12cf94b94688aaf2245742ac1cd3d7a2bccade7e248c47c5f13a3dd7c07401
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2025-07-11
|
|
PKG_SOURCE_VERSION:=b971b73d4cedae6175926373adcdc37a04ced11c
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ucentral-schema
|
|
SECTION:=ucentral
|
|
CATEGORY:=uCentral
|
|
TITLE:=OpenWrt uCentral schema
|
|
DEPENDS+= +ucode-mod-nl80211 +ucode-mod-rtnl +ucode-mod-log
|
|
endef
|
|
|
|
define Package/ucentral-recovery
|
|
SECTION:=ucentral
|
|
CATEGORY:=uCentral
|
|
TITLE:=OpenWrt uCentral recovery tooling
|
|
endef
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
define Package/ucentral-schema/install
|
|
$(INSTALL_DIR) $(1)/usr/share/ucentral $(1)/etc/ucentral/
|
|
$(CP) $(PKG_BUILD_DIR)/schema.json $(1)/etc/ucentral/
|
|
$(CP) $(PKG_BUILD_DIR)/schemareader.uc $(1)/usr/share/ucentral
|
|
$(CP) $(PKG_BUILD_DIR)/renderer/* $(1)/usr/share/ucentral
|
|
$(CP) $(PKG_BUILD_DIR)/command/*.uc $(1)/usr/share/ucentral
|
|
$(CP) $(PKG_BUILD_DIR)/system/*.uc $(1)/usr/share/ucentral
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/system/wifi_detect.sh $(1)/usr/share/ucentral
|
|
$(CP) ./files/* $(1)
|
|
endef
|
|
|
|
define Package/ucentral-recovery/install
|
|
$(INSTALL_DIR) $(1)/usr/share/ucentral $(1)/etc/uci-defaults/
|
|
$(CP) $(PKG_BUILD_DIR)/command/*.uc $(1)/usr/share/ucentral
|
|
$(CP) $(PKG_BUILD_DIR)/system/{capabilities,crashlog}.uc $(1)/usr/share/ucentral
|
|
$(CP) ./files/etc/uci-defaults/99-ucentral-hostname $(1)/etc/uci-defaults/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ucentral-recovery))
|
|
$(eval $(call BuildPackage,ucentral-schema))
|