Update the mdio-netlink kmod and userspace mdio-tools to version 1.1.1. mdio-tools required a musl time64 compatibility fix that I have an PR open for already. Changelog: [v1.1.1] - 2022-05-23 --------------------- Tiny bugfix release. - mdio: The bench operation is now much more reliable when stacked on other devices than regular PHYs (e.g. paged PHYs or Marvell switches). - mvls: The STU can now be dumped chips from the Peridot generation. [v1.1.0] - 2022-05-04 --------------------- A sprawling release, adding various mvls related introspection features. mvls also gains a JSON output format. - mvls: The STU can now be dumped (requires Linux 5.17 or later). This is useful now that mv88e6xxx supports offloading of MST states - mvls: Output can now be formatted as JSON for easier scripting - mdio: mvls: A subset of MIB counters can now be dumped. This let's you get at counters for DSA ports, which are not reachable from ethtool - mdio: mvls: The LAG mask and LAG map tables can now be dumped - mdio: Improve usage message by including the examples from the manual Signed-off-by: Robert Marko <robert.marko@sartura.hr>
38 lines
994 B
Makefile
38 lines
994 B
Makefile
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=mdio-netlink
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=https://github.com/wkz/mdio-tools
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=1.1.1
|
|
PKG_MIRROR_HASH:=050d7386ed086b2ef3f028b3409ebabfdc51bd5a4c5a1d64afa29a0ceebf4771
|
|
|
|
PKG_LICENSE:=GPL-2.0-only
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_MAINTAINER:=Damien Mascord <tusker@tusker.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/mdio-netlink
|
|
SECTION:=kernel
|
|
CATEGORY:=Kernel modules
|
|
SUBMENU:=Network Support
|
|
TITLE:=mdio-netlink Linux MDIO netlink kernel module
|
|
KCONFIG:=CONFIG_PHYLIB=y CONFIG_MDIO_BUS=y
|
|
URL:=https://github.com/wkz/mdio-tools.git
|
|
FILES:=$(PKG_BUILD_DIR)/kernel/mdio-netlink.ko
|
|
AUTOLOAD:=$(call AutoProbe,mdio-netlink)
|
|
endef
|
|
|
|
define KernelPackage/mdio-netlink/description
|
|
mdio-netlink Linux MDIO netlink kernel module
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(KERNEL_MAKE) M=$(PKG_BUILD_DIR)/kernel modules
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,mdio-netlink))
|