forked from kendryte/k230_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig.board
executable file
·85 lines (67 loc) · 1.68 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
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)";
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 "k230_evb"
config LINUX_DEFCONFIG
string "linux defconfig "
help
linux defconfig ;
default "k230_evb"
config LINUX_DTB
string "linux dtb name"
help
linux dtb name ;
default "k230_evb"
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
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
endmenu