-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKconfig
52 lines (44 loc) · 1.17 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
51
52
comment "BootThunder Configuration"
config BOOTTHUNDER_TIMEOUT
int "Bootloader timeout (seconds)"
default 3
config BOOTTHUNDER_BOOT_VOLUME
string "BootThunder boot volume device name"
default "mmc00"
config BOOTTHUNDER_BOOT_MOUNTPOINT
string "BootThunder boot mountpoint path"
default "/sd0/"
config BOOTTHUNDER_BOOT_SCRIPT_PATH
string "Bootscript path"
default "/sd0/bootthunder.cfg"
config BOOTTHUNDER_SHELL_0_DEVICE
string "Device for shell 0"
default "uart0"
config BOOTTHUNDER_SHELL_1_ENABLE
bool "Shell 1"
default n
config BOOTTHUNDER_SHELL_1_DEVICE
string "Device for shell 1"
default "uart1"
depends on BOOTTHUNDER_SHELL_1_ENABLE
config BOOTTHUNDER_DEPENDENCIES
bool
default y
select SHELL
select SHELL_CMD_BOOT
select SHELL_CMD_BOOT_JTAG
select SHELL_CMD_ECHO
select SHELL_CMD_GPIO
select SHELL_CMD_HELP
select SHELL_CMD_LOAD
select SHELL_CMD_LOAD_FPGA
select SHELL_CMD_SETENV
select SHELL_CMD_GETENV
select SHELL_CMD_ATAGS
select SHELL_CMD_SOURCE
select SHELL_CMD_IOMEM
select SHELL_CMD_LS
select SHELL_CMD_CAT
select SHELL_CMD_TFTP
select SHELL_CMD_PS
select SHELL_CMD_SLEEP