walnux/Kconfig
Luchian Mihai 7335b36eca
Some checks failed
Build Documentation / build-html (push) Has been cancelled
Docker-Linux / push (push) Has been cancelled
walnux: moveout
2025-11-04 19:15:10 +02:00

70 lines
No EOL
1.1 KiB
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
mainmenu "NuttX Configuration"
config ARCH
string
option env="ARCH"
menu "License Setup"
source "Kconfig.license"
endmenu
menu "Build Setup"
source "Kconfig.setup"
endmenu
menu "SOC"
source "soc/$(ARCH)/Kconfig"
endmenu
menu "System Type"
source "arch/$(ARCH)/Kconfig"
endmenu
menu "RTOS Features"
source "sched/Kconfig"
source "syscall/Kconfig"
endmenu
menu "Device Drivers"
source "drivers/Kconfig"
endmenu
menu "File Systems"
source "fs/Kconfig"
endmenu
menu "Graphics Support"
source "graphics/Kconfig"
source "libs/libnx/Kconfig"
endmenu
menu "Memory Management"
source "mm/Kconfig"
endmenu
source "net/Kconfig"
source "audio/Kconfig"
source "crypto/Kconfig"
source "video/Kconfig"
source "wireless/Kconfig"
menu "Binary Loader"
source "binfmt/Kconfig"
endmenu
menu "Library Routines"
source "libs/libc/Kconfig"
source "libs/libm/Kconfig"
source "libs/libxx/Kconfig"
source "libs/libdsp/Kconfig"
source "libs/libbuiltin/Kconfig"
endmenu
menu "Open Asymmetric Multi Processing"
source "openamp/Kconfig"
endmenu