From 078e2663e44ae36a66d4f4cd9b6506689e328633 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Fri, 20 Mar 2026 14:53:29 -0600 Subject: net: lwip: nfs: Add missing dependency In order to use NFS with lwIP we need to select PROT_UDP_LWIP. Signed-off-by: Tom Rini Reviewed-by: Jerome Forissier --- cmd/Kconfig | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index a96d6472359..08af0003a9f 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2229,6 +2229,7 @@ config CMD_MDIO config CMD_NFS bool "nfs" + select PROT_UDP_LWIP if NET_LWIP help Boot image via network using NFS protocol. -- cgit v1.2.3 From 66da793b69cbc3cced046c93e9882b249a30a5c6 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Mon, 23 Mar 2026 13:52:53 -0600 Subject: net: cmd: Correct dependencies for CMD_PXE The CMD_PXE functionality can only build with CMD_TFTPBOOT enabled (or we get undefined references to do_tftpb), so express this dependency in Kconfig. Signed-off-by: Tom Rini --- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index 08af0003a9f..3fd426d3d44 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2314,7 +2314,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 -- cgit v1.2.3 From b3e303b60f39149085a21d7c4bbc5138d4506a70 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Wed, 25 Mar 2026 02:06:47 +0100 Subject: cmd: dhcp: Select CMD_BOOTP The DHCP command depends on bootp_reset() function, which is implemented only if CMD_BOOTP is enabled. Select CMD_BOOTP to satisfy the dependency. Signed-off-by: Marek Vasut Reviewed-by: Tom Rini Reviewed-by: Heiko Schocher Reviewed-by: Kory Maincent --- cmd/Kconfig | 1 + 1 file changed, 1 insertion(+) (limited to 'cmd') diff --git a/cmd/Kconfig b/cmd/Kconfig index 3fd426d3d44..81c64d9ba85 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 help Boot image via network using DHCP/TFTP protocol -- cgit v1.2.3