Hi Tom, The following changes since commit f5e968a28e7cdc2c4365f5a382e02f074ee03fac:
Merge tag 'u-boot-stm32-20250731' of https://source.denx.de/u-boot/custodians/u-boot-stm (2025-07-31 10:04:32 -0600) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-net.git/ tags/net-20250801 for you to fetch changes up to 5a4bfe38775ad5febf9b9fc58f0432f786a3d5d5: net: phy: Support overriding Auto Negotiation timeout with env variable (2025-08-01 10:42:22 +0200) ---------------------------------------------------------------- Pull request for net-20250801 net: - Support overriding Auto Negotiation timeout with env variable 'phy_aneg_timeout' - Add missing virtqueue_kick() in free_pkt() - Remove bcm281xx ethernet driver - Tighten some network driver dependencies in Kconfig - Add <cpu_func.h> to some platforms - Fix a debug print in ftgmac100.cA - Add parentheses around PSEUDO_HDR_SIZE net-lwip: - Fix build error with CONFIG_LWIP_DEBUG=y - Remove eth_init() from net_init() as it is called later - Simplify net_lwip_eth_start() net-legacy: - wget: Fix comparison of unsigned variable - Incorrect macro used (TCP_0_NOP instead of TCP_1_NOP) ---------------------------------------------------------------- Andrew Goodbody (3): net: Add parens to macro PSEUDO_HDR_SIZE net: Incorrect NOP macro used for test net: wget: Fix comparison of unsigned variable Christian Speich (1): virtio: net: Add missing virtqueue_kick in free_pkt Jerome Forissier (1): lwip: provide a sntp_format_time() function Siddharth Vadapalli (1): net: phy: Support overriding Auto Negotiation timeout with env variable Tim Harvey (2): net: lwip: simplify net_lwip_eth_start net: lwip: remove eth_init from net_init as it is called later Tom Rini (4): drivers/net/ftgmac100.c: Fix a debug print net: Add <cpu_func.h> to some platforms net: Tighten some network driver dependencies arm: bcm281xx: Remove ethernet driver arch/arm/cpu/armv7/bcm281xx/Makefile | 1 - arch/arm/cpu/armv7/bcm281xx/clk-bcm281xx.c | 24 - arch/arm/cpu/armv7/bcm281xx/clk-eth.c | 142 ----- doc/usage/environment.rst | 9 + drivers/net/Kconfig | 52 +- drivers/net/Makefile | 2 - drivers/net/bcm-sf2-eth-gmac.c | 976 ----------------------------- drivers/net/bcm-sf2-eth-gmac.h | 222 ------- drivers/net/bcm-sf2-eth.c | 274 -------- drivers/net/bcm-sf2-eth.h | 65 -- drivers/net/fsl_enetc.c | 1 + drivers/net/ftgmac100.c | 2 +- drivers/net/hifemac.c | 1 + drivers/net/pfe_eth/Kconfig | 1 + drivers/net/phy/Kconfig | 5 +- drivers/net/phy/aquantia.c | 10 +- drivers/net/phy/phy.c | 7 +- drivers/net/qe/Kconfig | 1 + drivers/net/ti/Kconfig | 3 + drivers/net/xilinx_axi_emac.c | 5 +- drivers/qe/Kconfig | 1 + drivers/virtio/virtio_net.c | 1 + include/configs/bcm_ns3.h | 12 +- include/net/tcp.h | 2 +- lib/lwip/u-boot/arch/cc.h | 9 + net/lwip/net-lwip.c | 15 +- net/tcp.c | 2 +- net/wget.c | 2 +- 28 files changed, 76 insertions(+), 1771 deletions(-) delete mode 100644 arch/arm/cpu/armv7/bcm281xx/clk-eth.c delete mode 100644 drivers/net/bcm-sf2-eth-gmac.c delete mode 100644 drivers/net/bcm-sf2-eth-gmac.h delete mode 100644 drivers/net/bcm-sf2-eth.c delete mode 100644 drivers/net/bcm-sf2-eth.h CI link: https://source.denx.de/u-boot/custodians/u-boot-net/-/pipelines/27248 Thanks, -- Jerome