-
Notifications
You must be signed in to change notification settings - Fork 39
/
Kconfig.board
executable file
·127 lines (102 loc) · 2.65 KB
/
Kconfig.board
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
menu "board configuration"
choice
prompt "reference board"
help
Select the reference board.
config BOARD_K230_EVB
bool "K230 evb"
config BOARD_K230_FPGA
bool "K230 fpga"
config BOARD_K230D
bool "K230 sip"
help
"siplp4 128MB ddr";
config BOARD_K230_CANMV
bool "K230 CANMV(K230PI)"
help
"CANMV(K230PI)";
config BOARD_K230_CANMV_V2
bool "K230 CANMV(K230PI) V2"
help
"CANMV(K230PI) V2";
config BOARD_K230D_CANMV
bool "K230D CANMV(K230PI zero)"
help
"CANMV(K230D PI zero)";
config BOARD_K230_CANMV_01STUDIO
bool "K230 CANMV(01STUDIO)"
help
"CANMV(01STUDIO)";
config BOARD_K230_CANMV_DONGSHANPI
bool "K230 CANMV(DONGSHANPI)"
help
"CANMV(DONGSHANPI)";
config BOARD_K230D_CANMV_BPI
bool "K230 CANMV(BPI)"
help
"CANMV(k230d bpi)";
endchoice
config BOARD_NAME
string "define K230 reference board name"
#depends on BOARD_K230_EVB=y || BOARD_K230_FPGA=y
default "k230_evb"
config QUICK_BOOT
bool "quick boot"
help
quick boot, not enter uboot cmd;
default y
config GEN_SECURITY_IMG
bool "create security image "
help
create security image ;
default n
config UBOOT_DEFCONFIG
string "uboot defconfig "
help
uboot defconfig ;
default BOARD_NAME
config LINUX_DEFCONFIG
string "linux defconfig "
help
linux defconfig ;
default BOARD_NAME
config LINUX_DTB
string "linux dtb name"
help
linux dtb name ;
default BOARD_NAME
config BUILDROOT_DEFCONFIG
string "buildroot defconfig "
help
buildroot defconfig ;
default BOARD_NAME
config RTTHREAD_DEFCONFIG
string "rtthread defconfig "
help
rtthread defconfig ;
config REMOTE_TEST_PLATFORM
bool "config REMOTE_TEST_PLATFORM"
help
xxxe ;
default n
config GEN_IMG_SCRIPT
string "generate image scripte"
help
generate image scripte;
default "board/common/gen_image_script/gen_image.sh"
config RTT_CONSOLE_ID
depends on SUPPORT_RTSMART
int "RTT console id"
default 3
config SPI_NOR_SUPPORT_CFG_PARAM
bool "spi nor support cfg param"
depends on SPI_NOR
help
spi nor support cfg param ;
default y
config CANAAN_SITE_IMG_NAME_PREFIX
string "canaan site image name prefix"
default ""
help
canaan site image name prefix;
endmenu