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 <luppy@appkaki.com>
This commit is contained in:
Lup Yuen Lee 2026-05-28 09:18:33 +08:00
parent c28e61fd39
commit 225e13b01d

View file

@ -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.