This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions

15
package/ethtool/Config.in Normal file
View File

@@ -0,0 +1,15 @@
config BR2_PACKAGE_ETHTOOL
bool "ethtool"
help
ethtool is a small utility for examining and tuning your
ethernet-based network interface.
https://www.kernel.org/pub/software/network/ethtool/
config BR2_PACKAGE_ETHTOOL_PRETTY_PRINT
bool "enable pretty printing"
default y
depends on BR2_PACKAGE_ETHTOOL
help
Enables ethtool's pretty printing for drivers
and SFP modules.

View File

@@ -0,0 +1,5 @@
# From https://www.kernel.org/pub/software/network/ethtool/sha256sums.asc
sha256 665fd70841860d6cb974387e3ab97e0dde7745f95cb3ef35b98ef9aace137805 ethtool-5.2.tar.xz
# Locally calculated
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
sha256 5d632934396f90c82dfebe3c9512648bbb6333b406113d0cd331b0e0aa2d34a1 LICENSE

View File

@@ -0,0 +1,15 @@
################################################################################
#
# ethtool
#
################################################################################
ETHTOOL_VERSION = 5.2
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_CONF_OPTS = \
$(if $(BR2_PACKAGE_ETHTOOL_PRETTY_PRINT),--enable-pretty-dump,--disable-pretty-dump)
$(eval $(autotools-package))