-
Notifications
You must be signed in to change notification settings - Fork 2
/
KConfig
50 lines (44 loc) · 1.71 KB
/
KConfig
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
46
47
48
49
50
menu "SPL Core"
menu "Linking"
config LINKER_OUTPUT_FILE
string "LINKER_OUTPUT_FILE"
default "link_out.elf"
help
The main output file generated by the linker (e.g. main.exe or main.elf).
config LINKER_BYPRODUCTS_CONFIG
bool "LINKER_BYPRODUCTS_CONFIG"
default n
help
Enable to configure other byproduct files generated by the linker
config LINKER_BYPRODUCTS_EXTENSIONS
string "LINKER_BYPRODUCTS_EXTENSIONS"
depends on !LINKER_BYPRODUCTS_CONFIG
default "hex,map,mdf"
help
The extensions of other byproducts generated by the linker (comma separated list, e.g., "hex,map,mdf")
config LINKER_BYPRODUCT_HEX
string "LINKER_BYPRODUCT_HEX"
depends on LINKER_BYPRODUCTS_CONFIG
default "link_out.hex"
help
The hex file generated by the linker
config LINKER_BYPRODUCT_MAP
string "LINKER_BYPRODUCT_MAP"
depends on LINKER_BYPRODUCTS_CONFIG
default "link_out.map"
help
The map file generated by the linker
config LINKER_BYPRODUCT_MDF
string "LINKER_BYPRODUCT_MDF"
depends on LINKER_BYPRODUCTS_CONFIG
default "link_out.mdf"
help
The mdf file generated by the linker
config LINKER_BYPRODUCT_OTHERS
string "LINKER_BYPRODUCT_OTHERS"
depends on LINKER_BYPRODUCTS_CONFIG
default ""
help
Other byproduct files generated by the linker (comma separated list, e.g., "link_out.xml")
endmenu
endmenu