nuttx-apps/system/fdt/Kconfig
aviralgarg05 da143595e1 apps: add missing module metadata for executable tools
Add the missing module metadata for the executable ELF helpers used by the package fixture flow so the generated artifacts describe their target and type consistently.

Also fix the existing embedlog spelling issue that is picked up by the current apps check, keeping this branch clean under CI.

Signed-off-by: aviralgarg05 <gargaviral99@gmail.com>
2026-06-22 22:27:07 +08:00

106 lines
2 KiB
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_FDT
bool
default n
---help---
Enable support for fdt utility tools.
if LIBC_FDT
config SYSTEM_FDTDUMP
tristate "system fdtdump command"
default n
select SYSTEM_FDT
---help---
Enable fdtdump cmd.
if SYSTEM_FDTDUMP
config SYSTEM_FDTDUMP_STACKSIZE
int "fdtdump stack size"
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the fdtdump task.
config SYSTEM_FDTDUMP_PRIORITY
int "fdtdump priority"
default 100
---help---
The priority of the fdtdump task.
endif # SYSTEM_FDTDUMP
config SYSTEM_FDTGET
tristate "system fdtget command"
default n
select SYSTEM_FDT
---help---
Enable fdtget cmd.
if SYSTEM_FDTGET
config SYSTEM_FDTGET_STACKSIZE
int "fdtget stack size"
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the fdtget task.
config SYSTEM_FDTGET_PRIORITY
int "fdtget priority"
default 100
---help---
The priority of the fdtget task.
endif # SYSTEM_FDTGET
config SYSTEM_FDTPUT
tristate "system fdtput command"
default n
select SYSTEM_FDT
---help---
Enable fdtput cmd.
if SYSTEM_FDTPUT
config SYSTEM_FDTPUT_STACKSIZE
int "fdtput stack size"
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the fdtput task.
config SYSTEM_FDTPUT_PRIORITY
int "fdtput priority"
default 100
---help---
The priority of the fdtput task.
endif # SYSTEM_FDTPUT
config SYSTEM_FDTOVERLAY
tristate "system fdtoverlay command"
default n
select SYSTEM_FDT
---help---
Enable fdtoverlay cmd.
if SYSTEM_FDTOVERLAY
config SYSTEM_FDTOVERLAY_STACKSIZE
int "fdtoverlay stack size"
default DEFAULT_TASK_STACKSIZE
---help---
The size of stack allocated for the fdtoverlay task.
config SYSTEM_FDTOVERLAY_PRIORITY
int "fdtoverlay priority"
default 100
---help---
The priority of the fdtoverlay task.
endif # SYSTEM_FDTOVERLAY
endif # LIBC_FDT