I just tried to configure nuttx (from the master branch) for the
stm32f103-minimum:usbnsh board/configuration. But when I run
"tools/configure.sh -a ../incubator-nuttx-apps/
stm32f103-minimum:usbnsh" I get the following error:
  Copy files
  Select CONFIG_HOST_LINUX=y
  Refreshing...
arch/arm/src/imxrt/Kconfig:1096: syntax error
arch/arm/src/imxrt/Kconfig:1095: invalid option
make: *** [tools/Makefile.unix:526: do_olddefconfig] Error 1
ERROR: failed to refresh

The culprit seems to be the part below. When commenting out line 1095
the configure script runs without any issues. Any suggestions?
Anything wrong with that syntax?

diff --git a/arch/arm/src/imxrt/Kconfig b/arch/arm/src/imxrt/Kconfig
index ad0b50f3d7..397b49f9b9 100644
--- a/arch/arm/src/imxrt/Kconfig
+++ b/arch/arm/src/imxrt/Kconfig
@@ -1092,7 +1092,7 @@ config IMXRT_OCRAM_HEAP

 config IMXRT_DTCM_HEAP
        bool "Add DTCM to heap"
-       depends on IMXRT_DTCM > 0
+       #depends on IMXRT_DTCM > 0
        ---help---
                Select to add the entire DTCM to the heap

//Pelle

Reply via email to