summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
blob: ce3e59abe38313554d0d5de02bc15bdc9b4d028b (plain)
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

config ZLIB
	bool

config BZLIB
	bool

menu "Commands"

config CMD_ECHO
	bool
	prompt "echo"

config CMD_CONSOLE
	bool
	prompt "coninfo"

config CMD_MII
	bool
	prompt "mii"

config CMD_MEMORY
	bool
	prompt "md, mm, mw and several others"

config CMD_I2C
	bool
	prompt "i2c"

config CMD_AUTOSCRIPT
	bool
	prompt "autoscript"

config CMD_FLASH
	bool
	prompt "protect/erase/flinfo"

config CMD_LOADB
	bool
	prompt "loadb"

config CMD_LOADS
	bool
	prompt "loads"

config CMD_SAVES
	bool
	depends on CMD_LOADS
	prompt "saves"

config CMD_SPLASH
	bool
	prompt "splash"

config CMD_SLEEP
	bool
	prompt "sleep"

config CMD_BOOTM
	bool
	prompt "bootm"

config CMD_BOOTM_ZLIB
	bool
	depends on CMD_BOOTM
	select ZLIB
	prompt "bootm with zlib support"

config CMD_BOOTM_BZLIB
	bool
	depends on CMD_BOOTM
	select BZLIB
	prompt "bootm with bzlib support"

endmenu