wlan-ap-Telecominfraproject/feeds/ucentral/switch-fabric/Makefile
John Crispin 179d1b5770 switch-fabric: add package that handles switch-fabric features
* add support for port mirroring
* lagcp will be housed within this package aswell in future

Signed-off-by: John Crispin <john@phrozen.org>
2021-08-16 18:16:12 +02:00

35 lines
623 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=switch-fabric
PKG_RELEASE:=1
PKG_LICENSE:=BSD-3-Clause
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
include $(INCLUDE_DIR)/package.mk
define Package/switch-fabric
SECTION:=ucentral
CATEGORY:=uCentral
TITLE:=switch-fabric
endef
define Package/switch-fabric/description
Allow configuring HW specific switch fabric features.
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Compile/Default
endef
Build/Compile = $(Build/Compile/Default)
define Package/switch-fabric/install
$(CP) ./files/* $(1)
endef
$(eval $(call BuildPackage,switch-fabric))