ethtool: update to 6.1.
This commit is contained in:
parent
b80da86bf6
commit
8fb5e4e742
|
@ -0,0 +1,43 @@
|
||||||
|
--- a/marvell.c 2023-01-23 21:03:11.025636022 +0000
|
||||||
|
+++ b/marvell.c 2023-01-27 14:02:36.278115472 +0000
|
||||||
|
@@ -31,23 +31,23 @@
|
||||||
|
static void dump_queue(const char *name, const void *a, int rx)
|
||||||
|
{
|
||||||
|
struct desc {
|
||||||
|
- u_int32_t ctl;
|
||||||
|
- u_int32_t next;
|
||||||
|
- u_int32_t data_lo;
|
||||||
|
- u_int32_t data_hi;
|
||||||
|
- u_int32_t status;
|
||||||
|
- u_int32_t timestamp;
|
||||||
|
- u_int16_t csum2;
|
||||||
|
- u_int16_t csum1;
|
||||||
|
- u_int16_t csum2_start;
|
||||||
|
- u_int16_t csum1_start;
|
||||||
|
- u_int32_t addr_lo;
|
||||||
|
- u_int32_t addr_hi;
|
||||||
|
- u_int32_t count_lo;
|
||||||
|
- u_int32_t count_hi;
|
||||||
|
- u_int32_t byte_count;
|
||||||
|
- u_int32_t csr;
|
||||||
|
- u_int32_t flag;
|
||||||
|
+ uint32_t ctl;
|
||||||
|
+ uint32_t next;
|
||||||
|
+ uint32_t data_lo;
|
||||||
|
+ uint32_t data_hi;
|
||||||
|
+ uint32_t status;
|
||||||
|
+ uint32_t timestamp;
|
||||||
|
+ uint16_t csum2;
|
||||||
|
+ uint16_t csum1;
|
||||||
|
+ uint16_t csum2_start;
|
||||||
|
+ uint16_t csum1_start;
|
||||||
|
+ uint32_t addr_lo;
|
||||||
|
+ uint32_t addr_hi;
|
||||||
|
+ uint32_t count_lo;
|
||||||
|
+ uint32_t count_hi;
|
||||||
|
+ uint32_t byte_count;
|
||||||
|
+ uint32_t csr;
|
||||||
|
+ uint32_t flag;
|
||||||
|
};
|
||||||
|
const struct desc *d = a;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'ethtool'
|
# Template file for 'ethtool'
|
||||||
pkgname=ethtool
|
pkgname=ethtool
|
||||||
version=5.19
|
version=6.1
|
||||||
revision=1
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
hostmakedepends="pkg-config"
|
hostmakedepends="pkg-config"
|
||||||
|
@ -9,5 +9,6 @@ short_desc="Utility for controlling network drivers and hardware"
|
||||||
maintainer="Enno Boland <gottox@voidlinux.org>"
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
||||||
license="GPL-2.0-only"
|
license="GPL-2.0-only"
|
||||||
homepage="https://www.kernel.org/pub/software/network/ethtool/"
|
homepage="https://www.kernel.org/pub/software/network/ethtool/"
|
||||||
distfiles="https://www.kernel.org/pub/software/network/${pkgname}/${pkgname}-${version}.tar.xz"
|
changelog="https://git.kernel.org/pub/scm/network/ethtool/ethtool.git/plain/NEWS"
|
||||||
checksum=3b752a3329827907ac3812f2831dfecf51c8c41c55d2d69cfb9c53ca06449fc6
|
distfiles="https://www.kernel.org/pub/software/network/ethtool/ethtool-${version}.tar.xz"
|
||||||
|
checksum=c41fc881ffa5a40432d2dd829eb44c64a49dee482e716baacf9262c64daa8f90
|
||||||
|
|
Loading…
Reference in New Issue