mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
15
package/ethtool/Config.in
Normal file
15
package/ethtool/Config.in
Normal 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.
|
||||
5
package/ethtool/ethtool.hash
Normal file
5
package/ethtool/ethtool.hash
Normal 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
|
||||
15
package/ethtool/ethtool.mk
Normal file
15
package/ethtool/ethtool.mk
Normal 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))
|
||||
Reference in New Issue
Block a user