From 225e13b01d7973b5a889bf0ded0413266bbc0830 Mon Sep 17 00:00:00 2001 From: Lup Yuen Lee Date: Thu, 28 May 2026 09:18:33 +0800 Subject: [PATCH] nxinit/Kconfig: Change `--help--` to `---help---` PR https://github.com/apache/nuttx-apps/pull/3504 introduced a typo in nxinit/Kconfig: `--help--`. This PR changes it to `---help---` to fix this build error: ``` $ tools/configure.sh rv-virt:nsh apps/system/nxinit/Kconfig:81: syntax error apps/system/nxinit/Kconfig:80: unknown option "--help--" ``` https://github.com/lupyuen/nuttx-riscv64/actions/runs/26546602390/job/78199683651#step:5:162 Signed-off-by: Lup Yuen Lee --- system/nxinit/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/nxinit/Kconfig b/system/nxinit/Kconfig index 58d3c406e..fc2670312 100644 --- a/system/nxinit/Kconfig +++ b/system/nxinit/Kconfig @@ -77,7 +77,7 @@ config SYSTEM_NXINIT_ACTION_MANAGER_EVENT_MAX config SYSTEM_NXINIT_FINALINIT bool "Enable NXInit final event" default n - --help-- + ---help--- Enable support to run the "final" event. Currently only "boot", and "init" event are enabled by default, where "netinit" and "final" are optional.