From b3e303b60f39149085a21d7c4bbc5138d4506a70 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Wed, 25 Mar 2026 02:06:47 +0100 Subject: [PATCH] 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(+) 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