This is an automated email from the ASF dual-hosted git repository.

lupyuen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new ebc75b0ed5b arch/tricore: Fix `--help--` in Kconfig
ebc75b0ed5b is described below

commit ebc75b0ed5ba9e9bb97fa02153def0861abffdaa
Author: Lup Yuen Lee <[email protected]>
AuthorDate: Wed Mar 11 09:24:59 2026 +0800

    arch/tricore: Fix `--help--` in Kconfig
    
    This PR fixes a typo at `--help--` that causes NuttX Builds to fail, it 
should have been `---help---`. This is a recurring problem, NuttX CI uses a 
different way of handling NuttX Configs (it doesn't use `tools/configure.sh`)
    
    
https://github.com/lupyuen/nuttx-riscv64/actions/runs/22929878852/job/66548808341#step:5:161
    ```
    $ tools/configure.sh rv-virt:nsh
    arch/tricore/Kconfig:124: syntax error
    arch/tricore/Kconfig:123: unknown option "--help--"
    arch/tricore/Kconfig:124:warning: ignoring unsupported character ','
    arch/tricore/Kconfig:124: unknown option "In"
    ```
    
    Signed-off-by: Lup Yuen Lee <[email protected]>
---
 arch/tricore/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/tricore/Kconfig b/arch/tricore/Kconfig
index 5edbc4ce3ed..d80cef7bbbf 100644
--- a/arch/tricore/Kconfig
+++ b/arch/tricore/Kconfig
@@ -120,7 +120,7 @@ config ARCH_MPU_CODE_NREGIONS
 
 config HAVE_SECURITY_CORE
        bool
-       --help--
+       ---help---
                In addition to the 6 cores, tc4xx also has one more security 
core.
 
 config CPU_COREID

Reply via email to