From 66da793b69cbc3cced046c93e9882b249a30a5c6 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Mon, 23 Mar 2026 13:52:53 -0600 Subject: [PATCH] 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(-) 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