* [PATCH] ethtool: Update to version 6.0
@ 2022-11-25 17:37 Adolf Belka
2022-11-27 11:56 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-11-25 17:37 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1908 bytes --]
- Update from version 5.16 to 6.0
- Update of rootfile not required
- Changelog
Version 6.0 - October 10, 2022
* Fix: advertisement modes autoselection by lanes (-s)
Version 5.19 - August 22, 2022
* Feature: get/set tx push (-g and -G)
* Feature: register dump support for TI CPSW (-d)
* Feature: register dump support for lan743x chipset (-d)
* Fix: fix missing sff-8472 output in netlink path (-m)
* Fix: fix EEPROM byte write (-E)
Version 5.18 - June 14, 2022
* Feature: get/set cqe size (-g and -G)
* Fix: fix typo in man page
* Fix: fix help text alignment
* Fix: improve attribute label (--show-fec)
Version 5.17 - April 4, 2022
* Feature: transceiver module power mode (--set-module)
* Feature: transceiver module extended state (--show-module)
* Feature: get/set rx buffer length (-g and -G)
* Feature: tx copybreak buffer size (--get-tunable and --set-tunable)
* Feature: JSON output for features (-k)
* Feature: support OSFP transceiver modules (-m)
* Fix: add missing free() calls (--get-tunable and --set-tunable)
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/ethtool | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lfs/ethtool b/lfs/ethtool
index 9bcb93cec..59f77628d 100644
--- a/lfs/ethtool
+++ b/lfs/ethtool
@@ -24,7 +24,7 @@
include Config
-VER = 5.16
+VER = 6.0
THISAPP = ethtool-$(VER)
DL_FILE = $(THISAPP).tar.xz
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 198d76502510e533b7f51785fd9f0848e840a6b4237bfd0496d005978ce3e638be02bd7dee971501f57c83354a1ac2f34a7ef29f2255764e900d9299bad9254c
+$(DL_FILE)_BLAKE2 = 24bbde83e03d7f18345360dbf330dc811663c5b755e57f18e35c0206692d331d9dce830a479cd2a08b26c2c67107a99443cfcbb9c68416d3fe07e505f99efbd5
install : $(TARGET)
--
2.38.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ethtool: Update to version 6.0
2022-11-25 17:37 [PATCH] ethtool: Update to version 6.0 Adolf Belka
@ 2022-11-27 11:56 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2022-11-27 11:56 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2125 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 25 Nov 2022, at 17:37, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Update from version 5.16 to 6.0
> - Update of rootfile not required
> - Changelog
> Version 6.0 - October 10, 2022
> * Fix: advertisement modes autoselection by lanes (-s)
> Version 5.19 - August 22, 2022
> * Feature: get/set tx push (-g and -G)
> * Feature: register dump support for TI CPSW (-d)
> * Feature: register dump support for lan743x chipset (-d)
> * Fix: fix missing sff-8472 output in netlink path (-m)
> * Fix: fix EEPROM byte write (-E)
> Version 5.18 - June 14, 2022
> * Feature: get/set cqe size (-g and -G)
> * Fix: fix typo in man page
> * Fix: fix help text alignment
> * Fix: improve attribute label (--show-fec)
> Version 5.17 - April 4, 2022
> * Feature: transceiver module power mode (--set-module)
> * Feature: transceiver module extended state (--show-module)
> * Feature: get/set rx buffer length (-g and -G)
> * Feature: tx copybreak buffer size (--get-tunable and --set-tunable)
> * Feature: JSON output for features (-k)
> * Feature: support OSFP transceiver modules (-m)
> * Fix: add missing free() calls (--get-tunable and --set-tunable)
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> lfs/ethtool | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lfs/ethtool b/lfs/ethtool
> index 9bcb93cec..59f77628d 100644
> --- a/lfs/ethtool
> +++ b/lfs/ethtool
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 5.16
> +VER = 6.0
>
> THISAPP = ethtool-$(VER)
> DL_FILE = $(THISAPP).tar.xz
> @@ -40,7 +40,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = 198d76502510e533b7f51785fd9f0848e840a6b4237bfd0496d005978ce3e638be02bd7dee971501f57c83354a1ac2f34a7ef29f2255764e900d9299bad9254c
> +$(DL_FILE)_BLAKE2 = 24bbde83e03d7f18345360dbf330dc811663c5b755e57f18e35c0206692d331d9dce830a479cd2a08b26c2c67107a99443cfcbb9c68416d3fe07e505f99efbd5
>
> install : $(TARGET)
>
> --
> 2.38.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-27 11:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-25 17:37 [PATCH] ethtool: Update to version 6.0 Adolf Belka
2022-11-27 11:56 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox