-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.in
46 lines (37 loc) · 1.03 KB
/
config.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#===============================================================================
# @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