mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-29 09:32:34 +00:00
73e9fbc open-flow: support OpenFlow bridged mode ac24d7f drop vlan-id from the gre tunnel definition Fixes: WIFI-4639 Signed-off-by: John Crispin <john@phrozen.org>
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ucentral-schema
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL=https://github.com/blogic/ucentral-schema.git
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_DATE:=2021-02-15
|
|
PKG_SOURCE_VERSION:=73e9fbc03c617b007e25bbc135a0cb53ce90301b
|
|
|
|
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
|
|
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
|
|
$(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
|
|
$(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))
|