mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	Packages such as xfrm contain only script files, add PKGARCH:=all Signed-off-by: Deng Qingfang <dengqf6@mail2.sysu.edu.cn>
		
			
				
	
	
		
			34 lines
		
	
	
		
			663 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			663 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=vxlan
 | 
						|
PKG_VERSION:=2
 | 
						|
PKG_LICENSE:=GPL-2.0
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
 | 
						|
define Package/vxlan
 | 
						|
  SECTION:=net
 | 
						|
  CATEGORY:=Network
 | 
						|
  MAINTAINER:=Matthias Schiffer <mschiffer@universe-factory.net>
 | 
						|
  TITLE:=Virtual eXtensible LAN config support
 | 
						|
  DEPENDS:=+kmod-vxlan
 | 
						|
  PKGARCH:=all
 | 
						|
endef
 | 
						|
 | 
						|
define Package/vxlan/description
 | 
						|
 Virtual eXtensible LAN config support in /etc/config/network.
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Compile
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Configure
 | 
						|
endef
 | 
						|
 | 
						|
define Package/vxlan/install
 | 
						|
	$(INSTALL_DIR) $(1)/lib/netifd/proto
 | 
						|
	$(INSTALL_BIN) ./files/vxlan.sh $(1)/lib/netifd/proto/vxlan.sh
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackage,vxlan))
 |