mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 16:01:54 -09:00
Changelog:
https://web.git.kernel.org/pub/scm/network/ethtool/ethtool.git/tree/NEWS?h=v6.14
Signed-off-by: Mattias Walström <lazzer@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit ebd2a810a7)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
24 lines
711 B
Makefile
24 lines
711 B
Makefile
################################################################################
|
|
#
|
|
# ethtool
|
|
#
|
|
################################################################################
|
|
|
|
ETHTOOL_VERSION = 6.14
|
|
ETHTOOL_SOURCE = ethtool-$(ETHTOOL_VERSION).tar.xz
|
|
ETHTOOL_SITE = $(BR2_KERNEL_MIRROR)/software/network/ethtool
|
|
ETHTOOL_LICENSE = GPL-2.0
|
|
ETHTOOL_LICENSE_FILES = LICENSE COPYING
|
|
ETHTOOL_CPE_ID_VENDOR = kernel
|
|
ETHTOOL_CONF_OPTS = \
|
|
$(if $(BR2_PACKAGE_ETHTOOL_PRETTY_PRINT),--enable-pretty-dump,--disable-pretty-dump)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBMNL),y)
|
|
ETHTOOL_DEPENDENCIES += host-pkgconf libmnl
|
|
ETHTOOL_CONF_OPTS += --enable-netlink
|
|
else
|
|
ETHTOOL_CONF_OPTS += --disable-netlink
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|