diff options
author | Adriano Cordova <adrianox@gmail.com> | 2025-05-16 04:52:56 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-05-30 11:19:44 -0600 |
commit | ec1d9f3fe81708ef7e5e45a46564f286404a7aba (patch) | |
tree | 3923a2952b8a25248a6a65846503871a376a750b | |
parent | 3e58991339843faa87c28c7d4caf4318ea2046c4 (diff) |
cmd/Kconfig: select CMD_WGET if ARCH_QEMU
select CMD_WGET for ARCH_QEMU. This way HTTP can be tested
on the qemu platforms in CI.
Signed-off-by: Adriano Cordova <adriano.cordova@canonical.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rw-r--r-- | cmd/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index f21d27cb27f..fa353c6fcac 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2153,7 +2153,7 @@ config CMD_TFTPBOOT config CMD_WGET bool "wget" - default y if SANDBOX + default y if SANDBOX || ARCH_QEMU select WGET help wget is a simple command to download kernel, or other files, |