47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
|
#===============================================================================
|
||
|
# @brief Kconfig file.
|
||
|
# Copyright (c) @CompanyNameMagicTag 2022-2022. All rights reserved.
|
||
|
#===============================================================================
|
||
|
mainmenu "Configuration"
|
||
|
comment "Main menu description, show how to use this configuration system."
|
||
|
|
||
|
menu "Targets"
|
||
|
comment "Select the target."
|
||
|
endmenu
|
||
|
|
||
|
menu "Application"
|
||
|
comment "Config the application."
|
||
|
osource "application/Kconfig"
|
||
|
endmenu
|
||
|
|
||
|
menu "Bootloader"
|
||
|
comment "Config the bootloader."
|
||
|
osource "bootloader/Kconfig"
|
||
|
endmenu
|
||
|
|
||
|
menu "Drivers"
|
||
|
comment "Config the drivers."
|
||
|
osource "drivers/Kconfig"
|
||
|
endmenu
|
||
|
|
||
|
menu "Kernel"
|
||
|
comment "Config the kernel."
|
||
|
osource "kernel/Kconfig"
|
||
|
endmenu
|
||
|
|
||
|
menu "Middleware"
|
||
|
comment "Config the middleware."
|
||
|
osource "middleware/Kconfig"
|
||
|
endmenu
|
||
|
|
||
|
menu "Protocol"
|
||
|
comment "Config the protocol."
|
||
|
osource "protocol/Kconfig"
|
||
|
endmenu
|
||
|
|
||
|
menu "Test"
|
||
|
comment "Config the test."
|
||
|
osource "test/Kconfig"
|
||
|
endmenu
|
||
|
|