d6dec8df06
Kernel 6.3 has split the C22 and C45 MDIO support and mdio-tools needed to be adapted to that. So, now that new release with support for kernel 6.3 and later is available lets update to it. Signed-off-by: Robert Marko <robimarko@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
22 lines
631 B
Makefile
22 lines
631 B
Makefile
################################################################################
|
|
#
|
|
# mdio-tools
|
|
#
|
|
################################################################################
|
|
|
|
MDIO_TOOLS_VERSION = 1.3.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))
|