From: Marek Vasut Date: Wed, 25 Mar 2026 01:06:47 +0000 (+0100) Subject: cmd: dhcp: Select CMD_BOOTP X-Git-Tag: v2026.07-rc1~21^2~32^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3e303b60f39149085a21d7c4bbc5138d4506a70;p=thirdparty%2Fu-boot.git 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 --- 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