diff options
| author | Jerome Forissier <[email protected]> | 2025-02-04 17:00:49 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-02-12 12:37:24 -0600 |
| commit | a091d173e32b98fe372b5b02d4e25c81f1bc9dc1 (patch) | |
| tree | 2aee5b7566dc114ee0f02c4507c94885d1eb72d2 /cmd | |
| parent | 331d75544fc843f93275eb3767753e4a0a712a39 (diff) | |
net: Kconfig: depend on DM_RNG for WGET_HTTPS
net/lwip/wget.c/mbedtls_hardware_poll() is calling dm_rng_read() but
dependency is not recorded anywhere that's why depend on DM_RNG
when WGET_HTTPS is used.
Suggested-by: Michal Simek <[email protected]>
Co-developed-by: Ilias Apalodimas <[email protected]>
Signed-off-by: Ilias Apalodimas <[email protected]>
Signed-off-by: Jerome Forissier <[email protected]>
Tested-by: Michal Simek <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 1f9b26928c4..a04fcaa0e08 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2161,6 +2161,7 @@ config WGET_HTTPS depends on CMD_WGET depends on PROT_TCP_LWIP depends on MBEDTLS_LIB + depends on DM_RNG select SHA256 select RSA select ASYMMETRIC_KEY_TYPE |
