Hi Tom, The following changes since commit d503633a36767d756c7de28305cf0de79440cbc0:
Revert "doc: board: starfive: update jh7110 common description" (2026-01-13 14:18:05 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-net.git/ net-20260115 for you to fetch changes up to b61d7d95cc62525060f0d05881bdaaf994a55b11: net: phy: micrel_ksz90x1: support forced GIGE master for KSZ9031 (2026-01-15 11:09:28 +0100) ---------------------------------------------------------------- Pull request net-20260115. net: - phy: micrel KSZ9031 and KSZ9021 fixes - phy: marvell10g fix - Fix "net stats" help - Add Microsemi/Microchip MDIO driver - tftpput: Rework to exclude code from xPL phases net-legacy: - Some refactoring to help with lwIP NF support net-lwip: - Add NFS support ---------------------------------------------------------------- Andrew Goodbody (7): net:lwip: Add debug line to net-lwip net: move net_state to net-common net: Move some variables to net-common files net: nfs: Add licence header net: nfs: Move most NFS code to common files net: lwip: nfs: Port the NFS code to work with lwIP configs: qemu_arm64_lwip_defconfig: enable CMD_NFS Link Mauve (1): Add missing “net” prefix in help net Marek Vasut (1): net: phy: marvell10g: Fix PHY mode bitmap handling Markus Niebel (2): net: phy: micrel_ksz90x1: disable asymmetric pause for KSZ9031 and KSZ9021 net: phy: micrel_ksz90x1: support forced GIGE master for KSZ9031 Robert Marko (1): net: add Microsemi/Microchip MDIO driver Tom Rini (1): net: tftpput: Rework to exclude code from xPL phases cmd/Kconfig | 28 ++-- cmd/lwip/Makefile | 1 + cmd/lwip/nfs.c | 11 ++ cmd/net-common.c | 2 +- configs/qemu_arm64_lwip_defconfig | 1 + drivers/net/Kconfig | 8 + drivers/net/Makefile | 1 + drivers/net/mdio-mscc-miim.c | 136 +++++++++++++++ drivers/net/phy/marvell10g.c | 14 +- drivers/net/phy/micrel_ksz90x1.c | 66 +++++++- include/net-common.h | 29 +++- include/net-legacy.h | 22 --- include/net-lwip.h | 1 + net/Makefile | 1 + net/lwip/Makefile | 1 + net/lwip/net-lwip.c | 6 +- net/lwip/nfs.c | 286 ++++++++++++++++++++++++++++++++ net/net-common.c | 12 ++ net/net.c | 12 -- net/nfs-common.c | 863 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ net/nfs-common.h | 123 ++++++++++++++ net/nfs.c | 849 ++-------------------------------------------------------------------------------------------- net/nfs.h | 59 ------- net/tftp.c | 31 ++-- 24 files changed, 1589 insertions(+), 974 deletions(-) create mode 100644 cmd/lwip/nfs.c create mode 100644 drivers/net/mdio-mscc-miim.c create mode 100644 net/lwip/nfs.c create mode 100644 net/nfs-common.c create mode 100644 net/nfs-common.h CI link: https://source.denx.de/u-boot/custodians/u-boot-net/-/pipelines/29008 Thanks, -- Jerome IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.

