From b3aae97b6f29bebd7c7387d93cf1de3e371e4228 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 24 Feb 2018 16:13:31 +0100 Subject: [PATCH] ethtool: remove package (added to OpenWrt main repository) Signed-off-by: Felix Fietkau --- net/ethtool/Config.in | 7 ------ net/ethtool/Makefile | 57 ------------------------------------------- 2 files changed, 64 deletions(-) delete mode 100644 net/ethtool/Config.in delete mode 100644 net/ethtool/Makefile diff --git a/net/ethtool/Config.in b/net/ethtool/Config.in deleted file mode 100644 index 7ec55536e..000000000 --- a/net/ethtool/Config.in +++ /dev/null @@ -1,7 +0,0 @@ -menu "Configuration" - depends on PACKAGE_ethtool - - config ETHTOOL_PRETTY_DUMP - bool "Enable pretty printing" - -endmenu diff --git a/net/ethtool/Makefile b/net/ethtool/Makefile deleted file mode 100644 index d8a904b18..000000000 --- a/net/ethtool/Makefile +++ /dev/null @@ -1,57 +0,0 @@ -# -# Copyright (C) 2006-2014 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=ethtool -PKG_VERSION:=4.13 -PKG_RELEASE:=1 - -PKG_MAINTAINER:=Matthias Schiffer -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz -PKG_SOURCE_URL:=@KERNEL/software/network/ethtool -PKG_HASH:=b7c1a380007d30eaf261a63b3cfc000f9d93f9eb7626dcd48b5d2a733af99cba - -PKG_LICENSE:=GPL-2.0 -PKG_LICENSE_FILES:=COPYING - -PKG_FIXUP:=autoreconf -PKG_INSTALL:=1 -PKG_BUILD_PARALLEL:=1 - -PKG_CONFIG_DEPENDS:=ETHTOOL_PRETTY_DUMP - -include $(INCLUDE_DIR)/package.mk - -define Package/ethtool - SECTION:=net - CATEGORY:=Network - TITLE:=Display or change ethernet card settings - URL:=http://www.kernel.org/pub/software/network/ethtool/ -endef - -define Package/ethtool/description - ethtool is a small utility for examining and tuning your ethernet-based - network interface -endef - -define Package/ethtool/config - source "$(SOURCE)/Config.in" -endef - -ifeq ($(CONFIG_ETHTOOL_PRETTY_DUMP),y) -CONFIGURE_ARGS += --enable-pretty-dump -else -CONFIGURE_ARGS += --disable-pretty-dump -endif - -define Package/ethtool/install - $(INSTALL_DIR) $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/ethtool $(1)/usr/sbin -endef - -$(eval $(call BuildPackage,ethtool))