diff options
| author | Yanase Yuki | 2026-01-14 08:03:02 +0000 |
|---|---|---|
| committer | Wesley Gimenes | 2026-03-05 23:09:18 +0000 |
| commit | 0f574b5f5ba466817adb87ecff49cc0a3ec3e333 (patch) | |
| tree | 191c91563fb2ed4f4b3135d5b9310f9f74a67b46 | |
| parent | 97bf24f0c594554ce08c7c829bc1ec808fd7c983 (diff) | |
| download | packages-master.tar.gz | |
bridge-utils is obsolete software because ip command has
bridge functionality. And OpenWrt uses BusyBox's brctl
by default, so most users will not be affected by this change.
Signed-off-by: Yanase Yuki <dev@zpc.st>
| -rw-r--r-- | net/bridge-utils/Makefile | 51 | ||||
| -rw-r--r-- | net/bridge-utils/patches/010-limits.patch | 20 |
2 files changed, 0 insertions, 71 deletions
diff --git a/net/bridge-utils/Makefile b/net/bridge-utils/Makefile deleted file mode 100644 index 649e66a23a..0000000000 --- a/net/bridge-utils/Makefile +++ /dev/null @@ -1,51 +0,0 @@ -# -# Copyright (C) 2006-2015 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk -include $(INCLUDE_DIR)/kernel.mk - -PKG_NAME:=bridge-utils -PKG_VERSION:=1.7.1 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=@KERNEL/linux/utils/net/bridge-utils -PKG_HASH:=a61d8be4f1a1405c60c8ef38d544f0c18c05b33b9b07e5b4b31033536165e60e - -PKG_MAINTAINER:=Nikolay Martynov <mar.kolya@gmail.com> -PKG_LICENSE:=GPL-2.0-or-later -PKG_LICENSE_FILES:=COPYING -PKG_CPE_ID:=cpe:/a:kernel:bridge-utils - -PKG_FIXUP:=autoreconf -PKG_INSTALL:=1 -PKG_BUILD_PARALLEL:=1 - -include $(INCLUDE_DIR)/package.mk - -define Package/bridge - SECTION:=net - CATEGORY:=Base system - TITLE:=Ethernet bridging configuration utility - URL:=http://www.linuxfromscratch.org/blfs/view/svn/basicnet/bridge-utils.html - ALTERNATIVES:=300:/usr/sbin/brctl:/usr/libexec/brctl-bridge-utils -endef - -define Package/bridge/description - Manage ethernet bridging: a way to connect networks together to - form a larger network. -endef - -CONFIGURE_ARGS += \ - --with-linux-headers="$(LINUX_DIR)" - -define Package/bridge/install - $(INSTALL_DIR) $(1)/usr/libexec - $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/brctl $(1)/usr/libexec/brctl-bridge-utils -endef - -$(eval $(call BuildPackage,bridge)) diff --git a/net/bridge-utils/patches/010-limits.patch b/net/bridge-utils/patches/010-limits.patch deleted file mode 100644 index a3aa624ea4..0000000000 --- a/net/bridge-utils/patches/010-limits.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/libbridge/libbridge_devif.c -+++ b/libbridge/libbridge_devif.c -@@ -24,6 +24,7 @@ - #include <string.h> - #include <dirent.h> - #include <fcntl.h> -+#include <limits.h> - - #include "libbridge.h" - #include "libbridge_private.h" ---- a/libbridge/libbridge_init.c -+++ b/libbridge/libbridge_init.c -@@ -24,6 +24,7 @@ - #include <dirent.h> - #include <sys/types.h> - #include <sys/stat.h> -+#include <limits.h> - - #include "libbridge.h" - #include "libbridge_private.h" |