mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-27 15:02:10 -05:00
Version 6.14 - April 7, 2025
* Feature: list PHYs (--show-phys)
* Feature: target a specific PHY with some commands (--phy)
* Feature: more attributes for C33 PSE (--show-pse, --set-pse)
* Feature: source information for cable tests (--cable-test[-tdr])
* Feature: JSON output for module info (-m)
* Feature: misc RSS hash info improvements (-x)
* Feature: tsinfo hwtstamp provider (--{get,set}-hwtimestamp-cfg)
* Fix: fix wrong auto-negotiation state (no option)
* Fix: more explicit RSS context action (-n)
* Fix: print PHY address as decimal (no option)
* Fix: fix return value on flow hashing error (-N)
* Fix: fix JSON output for IRQ coalescing
* Fix: fix MDI-X info output (no option)
* Misc: code cleanup in module parsers
* Misc: provide module_info JSON schema
* Misc: add '-j' alias for --json
* Misc: provide AppStream metainfo XML
* Misc: update message descriptions for debugging output
Signed-off-by: Piotr Kubik <piotr.kubik@adtran.com>
Signed-off-by: Chad Monroe <chad@monroe.io>
Link: https://github.com/openwrt/openwrt/pull/18803
Signed-off-by: Robert Marko <robimarko@gmail.com>
74 lines
1.7 KiB
Makefile
74 lines
1.7 KiB
Makefile
#
|
|
# 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:=6.14
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@KERNEL/software/network/ethtool
|
|
PKG_HASH:=9338bb00e492878d3bbe3cd2894e60db35813634c208db0b20f5c7ee84da69b1
|
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:kernel:ethtool
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
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/
|
|
VARIANT:=tiny
|
|
CONFLICTS:=ethtool-full
|
|
endef
|
|
|
|
define Package/ethtool-full
|
|
$(Package/ethtool)
|
|
TITLE += (full)
|
|
VARIANT:=full
|
|
PROVIDES:=ethtool
|
|
DEPENDS:=+libmnl
|
|
CONFLICTS:=
|
|
endef
|
|
|
|
define Package/ethtool/description
|
|
ethtool is a small utility for examining and tuning your ethernet-based
|
|
network interface
|
|
endef
|
|
|
|
Package/ethtool-full/description:=$(Package/ethtool/description)
|
|
|
|
ifeq ($(BUILD_VARIANT),full)
|
|
CONFIGURE_ARGS += --enable-netlink --enable-pretty-dump
|
|
else
|
|
CONFIGURE_ARGS += --disable-netlink --disable-pretty-dump
|
|
endif
|
|
|
|
# enable support for input_xfrm with kernels newer than 6.6
|
|
ifeq ($(CONFIG_LINUX_6_6),)
|
|
CONFIGURE_ARGS += --enable-rss-input-xfrm
|
|
endif
|
|
|
|
define Package/ethtool/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ethtool $(1)/usr/sbin
|
|
endef
|
|
|
|
Package/ethtool-full/install=$(Package/ethtool/install)
|
|
|
|
$(eval $(call BuildPackage,ethtool))
|
|
$(eval $(call BuildPackage,ethtool-full))
|