From: Jan Kiszka Date: Tue, 19 Aug 2025 14:33:52 +0000 (+0200) Subject: efi: Select also CMD_DHCP from EFI_HTTP_BOOT X-Git-Tag: v2025.10-rc4~9^2~10 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6deac6147bdba45e4bb74b608e301cb18a708b79;p=pandora-u-boot.git efi: Select also CMD_DHCP from EFI_HTTP_BOOT This is needed because distro_efi_read_bootflow_net will then need dhcp_run which is not already enabled by CMD_NET. Signed-off-by: Jan Kiszka Reviewed-by: Heinrich Schuchardt --- diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index a7092c2e8a8..900113ca3e9 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -565,6 +565,7 @@ config EFI_HTTP_BOOT bool "EFI HTTP Boot support" depends on NET || NET_LWIP select CMD_NET + select CMD_DHCP select CMD_DNS select CMD_WGET select BLKMAP