Update the mdio-netlink kmod and userspace mdio-tools to version 1.2.0. This allows dropping the time64 musl patch which was upstreamed. [v1.2.0] - 2022-09-15 --------------------- - mdio: A new addressing mode "mmd-c22": Used to access MMDs attached to MDIO controllers without Clause 45 support by using registers 13 and 14 in the device's Clause 22 register space - mdio: Pretty print gigabit link capability information from a PHY's extended status register - mdio: Pretty print lots of status information from MMDs (C45 PHYs) - mvls: Decode priority override information of ATU entries - mvls: Table listings now always prints out the device information, even on single chip systems. Signed-off-by: Robert Marko <robimarko@gmail.com>
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.2.0
|
|
PKG_MIRROR_HASH:=5dd21c47d12b5d81dd0783d874480172d00027c4a8902839fa9fc16718092c79
|
|
|
|
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))
|