mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 17:04:32 +04:00
oor: remove package
It seems this software is no longer maintained. - The latest upstream commit is 5 years ago. - Official domain name has been suspended. No packages depend on this. Signed-off-by: Yanase Yuki <dev@zpc.st>
This commit is contained in:
committed by
Josef Schlehofer
parent
7eea92b91c
commit
d29dd8e025
@@ -1,60 +0,0 @@
|
||||
# Copyright (C) 2011, 2015 Cisco Systems, Inc.
|
||||
# Copyright (C) 2015 CBA research group, Technical University of Catalonia.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at:
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=oor
|
||||
PKG_VERSION:=1.3.0
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_SOURCE_URL=https://github.com/OpenOverlayRouter/oor/releases/download/$(PKG_VERSION)/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_HASH:=e2bee73611984f0412798f4b72145f4f00037a9e874d3c2168a49e1bf49e4809
|
||||
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
PKG_MAINTAINER:=Albert Lopez <alopez@ac.upc.edu>
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include $(INCLUDE_DIR)/nls.mk
|
||||
|
||||
MAKE_FLAGS += platform=openwrt
|
||||
|
||||
define Package/oor
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=Open Overlay Router
|
||||
URL:=https://github.com/OpenOverlayRouter
|
||||
DEPENDS:= +librt +confuse +kmod-tun +uci @IPV6
|
||||
endef
|
||||
|
||||
define Package/oor/description
|
||||
This packet provides support for the Locator-ID Separation Protocol, VXLAN-GPE.
|
||||
endef
|
||||
|
||||
define Package/oor/conffiles
|
||||
/etc/config/oor
|
||||
endef
|
||||
|
||||
define Package/oor/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/oor/oor $(1)/usr/sbin/
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_CONF) $(PKG_BUILD_DIR)/openWRT/oor.uci.example $(1)/etc/config/oor
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/openWRT/openwrt.init.script $(1)/etc/init.d/oor
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,oor))
|
||||
@@ -1,26 +0,0 @@
|
||||
--- a/oor/data-plane/tun/tun.c
|
||||
+++ b/oor/data-plane/tun/tun.c
|
||||
@@ -53,6 +53,8 @@ int tun_rm_fwd_from_entry(lisp_addr_t *e
|
||||
tun_dplane_data_t * tun_dplane_data_new_init(oor_encap_t encap_type, glist_t *allowed_dst_eids);
|
||||
void tun_dplane_data_free(tun_dplane_data_t *data);
|
||||
|
||||
+int tun_receive_fd;
|
||||
+int tun_ifindex;
|
||||
|
||||
data_plane_struct_t dplane_tun = {
|
||||
.datap_init = tun_configure_data_plane,
|
||||
--- a/oor/data-plane/tun/tun.h
|
||||
+++ b/oor/data-plane/tun/tun.h
|
||||
@@ -60,9 +60,9 @@
|
||||
|
||||
/* Tun MN variables */
|
||||
|
||||
-int tun_receive_fd;
|
||||
-int tun_ifindex;
|
||||
-uint8_t *tun_receive_buf;
|
||||
+extern int tun_receive_fd;
|
||||
+extern int tun_ifindex;
|
||||
+extern uint8_t *tun_receive_buf;
|
||||
|
||||
lisp_addr_t * tun_get_default_output_address(int afi);
|
||||
int tun_get_default_output_socket(int);
|
||||
Reference in New Issue
Block a user