diff options
| author | Tom Rini <[email protected]> | 2026-03-31 10:47:15 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-31 13:06:00 -0600 |
| commit | 98cf83d81617f489d7ff7bf78d33e693e2799254 (patch) | |
| tree | 75954ad0cca6ecbf2447d18dc9e0cdf1550f8132 /cmd | |
| parent | 87ea2b51b654b616bfcb381c46c8b5bde146607c (diff) | |
| parent | d1f8719e5163c3aceef501283f29d928f19e546f (diff) | |
Merge tag 'net-20260331' of https://source.denx.de/u-boot/custodians/u-boot-net into next
Pull request net-20260331.
net:
- airoha_eth & pcs_airoha driver fixes
- Rework some symbol dependencies
- dwc_eth_xgmac: Move DMA reset and pad calibration after PHY init
- rtl8169: add support for RTL8125d
- rswitch: Avoid NULL pointer dereference during PHY access
- rswitch: Remap CPU to bus addresses using dev_phys_to_bus()
- phy: dp83867: reset PHY on init to ensure clean state
net-lwip:
- nfs: fix buffer overflow when using symlinks
- tftp: update image_load_addr after successful transfer
[trini: Add missing "if NET" to CMD_DHCP select's CMD_BOOTP]
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index a96d6472359..effc209f38e 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2195,6 +2195,7 @@ endif # if NET config CMD_DHCP bool "dhcp" select PROT_DHCP_LWIP if NET_LWIP + select CMD_BOOTP if NET help Boot image via network using DHCP/TFTP protocol @@ -2229,6 +2230,7 @@ config CMD_MDIO config CMD_NFS bool "nfs" + select PROT_UDP_LWIP if NET_LWIP help Boot image via network using NFS protocol. @@ -2313,7 +2315,7 @@ config WGET_BUILTIN_CACERT_PATH config CMD_PXE bool "pxe" select PXE_UTILS - imply CMD_TFTPBOOT + select CMD_TFTPBOOT help Boot image via network using PXE protocol |
