package/mdio-tools: new package

mdio-tools are kernel module and accompanying tools for low-level
debugging of devices attached on MDIO bus like PHY-s, switches etc.

Userspace tools provide C22 or C45 reads and writes, benchmarking
and even dedicated Marvell Link Street tools via the included
kernel module.

Signed-off-by: Robert Marko <robimarko@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Robert Marko 2022-10-27 10:56:28 +02:00 committed by Thomas Petazzoni
parent 3cf8930508
commit 8fdf8731e7
5 changed files with 42 additions and 0 deletions

View File

@ -2510,6 +2510,9 @@ F: package/tzdata/
N: RJ Ascani <rj.ascani@gmail.com>
F: package/azmq/
N: Robert Marko <robimarko@gmail.com>
F: package/mdio-tools/
N: Robert Rose <robertroyrose@gmail.com>
F: package/grpc/

View File

@ -537,6 +537,7 @@ endmenu
source "package/mbpfan/Config.in"
source "package/mdadm/Config.in"
source "package/mdevd/Config.in"
source "package/mdio-tools/Config.in"
source "package/memtest86/Config.in"
source "package/memtester/Config.in"
source "package/memtool/Config.in"

View File

@ -0,0 +1,14 @@
comment "mdio-tools needs a Linux kernel to be built"
depends on !BR2_LINUX_KERNEL
comment "mdio-tools needs a toolchain w/ headers >= 5.1"
depends on !BR2_LINUX_KERNEL
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
config BR2_PACKAGE_MDIO_TOOLS
bool "mdio-tools"
depends on BR2_LINUX_KERNEL
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
select BR2_PACKAGE_LIBMNL
help
Low-level debug tools for MDIO devices

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 c5e17431c62392f6c1da1ba4fb0a6f5918521509a377af74485851f93ff2a106 mdio-tools-1.2.0.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

View File

@ -0,0 +1,21 @@
################################################################################
#
# mdio-tools
#
################################################################################
MDIO_TOOLS_VERSION = 1.2.0
MDIO_TOOLS_SITE = https://github.com/wkz/mdio-tools/releases/download/$(MDIO_TOOLS_VERSION)
MDIO_TOOLS_LICENSE = GPL-2.0
MDIO_TOOLS_LICENSE_FILES = COPYING
MDIO_TOOLS_DEPENDENCIES = host-pkgconf libmnl
MDIO_TOOLS_MODULE_SUBDIRS = kernel
define MDIO_TOOLS_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_NET)
$(call KCONFIG_ENABLE_OPT,CONFIG_MDIO_DEVICE)
endef
$(eval $(kernel-module))
$(eval $(autotools-package))