mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Add new macvlan packages with needed scripts
This commit is contained in:
parent
48aaf6bc5e
commit
7ef3c690b8
5 changed files with 165 additions and 2 deletions
45
macvlan/Makefile
Normal file
45
macvlan/Makefile
Normal file
|
@ -0,0 +1,45 @@
|
|||
#
|
||||
# Copyright (C) 2018-2019 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v3 or later.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=macvlan
|
||||
PKG_VERSION:=1
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/macvlan
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=MacVLAN configuration scripts
|
||||
DEPENDS:=+kmod-macvlan
|
||||
PKGARCH:=all
|
||||
endef
|
||||
|
||||
define Package/macvlan/description
|
||||
MacVLAN configuration for OpenMPTCProuter.
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/macvlan/install
|
||||
$(INSTALL_DIR) $(1)
|
||||
$(CP) ./files/* $(1)/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,macvlan))
|
Loading…
Add table
Add a link
Reference in a new issue