This is an automated email from the ASF dual-hosted git repository. xiaoxiang781216 pushed a commit to branch releases/13.0 in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit d8b442acabc2c82d9b1e9a42e2a04129e5c9b879 Author: Felipe Moura <[email protected]> AuthorDate: Sat Jul 11 12:11:54 2026 -0300 netutils/dropbear: don't require a hardware TRNG Dropbear gathers its entropy from /dev/urandom (libtomcrypt's rng_get_bytes tries /dev/urandom before /dev/random), so requiring ARCH_HAVE_RNG and DEV_RANDOM shuts the port out of targets without a hardware TRNG -- including the simulator, where a dropbear configuration silently loses NETUTILS_DROPBEAR at configure time. Keep only the DEV_URANDOM requirement. Signed-off-by: Felipe Moura <[email protected]> --- netutils/dropbear/Kconfig | 2 -- 1 file changed, 2 deletions(-) diff --git a/netutils/dropbear/Kconfig b/netutils/dropbear/Kconfig index 94eee878c..8e7c0868e 100644 --- a/netutils/dropbear/Kconfig +++ b/netutils/dropbear/Kconfig @@ -14,8 +14,6 @@ menuconfig NETUTILS_DROPBEAR depends on FSUTILS_PASSWD depends on PSEUDOTERM depends on SERIAL - depends on ARCH_HAVE_RNG - depends on DEV_RANDOM depends on DEV_URANDOM depends on LIBC_NETDB depends on LIBC_GAISTRERROR
