From 7c9dfe4fd93639ebc621449217c0bbc2f7415e43 Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Tue, 1 Jun 2021 16:34:21 +0200 Subject: [PATCH] utils/genrandconfig: also test BR2_ENABLE_RUNTIME_DEBUG ... similar to BR2_ENABLE_DEBUG. Signed-off-by: Thomas De Schampheleire Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Yann E. MORIN --- utils/genrandconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/genrandconfig b/utils/genrandconfig index 93dc6d898b..ca3e77e3e3 100755 --- a/utils/genrandconfig +++ b/utils/genrandconfig @@ -357,6 +357,8 @@ def gen_config(args): # Amend the configuration with a few things. if randint(0, 20) == 0: configlines.append("BR2_ENABLE_DEBUG=y\n") + if randint(0, 20) == 0: + configlines.append("BR2_ENABLE_RUNTIME_DEBUG=y\n") if randint(0, 1) == 0: configlines.append("BR2_INIT_BUSYBOX=y\n") elif randint(0, 15) == 0: -- 2.30.2