OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | include $(TOPDIR)/rules.mk |
2 | |||
3 | PKG_NAME:=vxlan |
||
4 | PKG_VERSION:=2 |
||
5 | PKG_LICENSE:=GPL-2.0 |
||
6 | |||
7 | include $(INCLUDE_DIR)/package.mk |
||
8 | |||
9 | define Package/vxlan |
||
10 | SECTION:=net |
||
11 | CATEGORY:=Network |
||
12 | MAINTAINER:=Matthias Schiffer <mschiffer@universe-factory.net> |
||
13 | TITLE:=Virtual eXtensible LAN config support |
||
14 | DEPENDS:=+kmod-vxlan |
||
15 | endef |
||
16 | |||
17 | define Package/vxlan/description |
||
18 | Virtual eXtensible LAN config support in /etc/config/network. |
||
19 | endef |
||
20 | |||
21 | define Build/Compile |
||
22 | endef |
||
23 | |||
24 | define Build/Configure |
||
25 | endef |
||
26 | |||
27 | define Package/vxlan/install |
||
28 | $(INSTALL_DIR) $(1)/lib/netifd/proto |
||
29 | $(INSTALL_BIN) ./files/vxlan.sh $(1)/lib/netifd/proto/vxlan.sh |
||
30 | endef |
||
31 | |||
32 | $(eval $(call BuildPackage,vxlan)) |