summaryrefslogtreecommitdiffstats
path: root/commands/Kconfig
blob: 530c9e4f83e51f92b6a474fed9fac683bdd21aea (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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
menu "Commands                      "

menu "scripting                     "

config CMD_EDIT
	bool
	prompt "edit"

config CMD_EXEC
	bool
	prompt "exec"

config CMD_SLEEP
	bool
	prompt "sleep"

config CMD_ENVIRONMENT
	bool
	prompt "saveenv / loadenv"

config CMD_HELP
	bool
	default y
	prompt "help"

endmenu


menu "console                       "

config CMD_CLEAR
	bool
	prompt "clear"

config CMD_ECHO
	bool
	prompt "echo"

config CMD_SPLASH
	depends on BROKEN
	bool
	prompt "splash"

endmenu


menu "i2c                           "

config CMD_I2C
	depends on BROKEN
	bool
	prompt "i2c"

endmenu


menu "memory                        "

config CMD_LOADB
	depends on BROKEN
	select CRC16
	bool
	prompt "loadb"

config CMD_LOADS
	depends on BROKEN
	bool
	prompt "loads"

config CMD_SAVES
	depends on BROKEN
	bool
	depends on CMD_LOADS
	prompt "saves"

config CMD_MEMINFO
	bool
	prompt "meminfo"

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

config CMD_MTEST
	bool
	prompt "mtest"

config CMD_MTEST_ALTERNATIVE
	bool
	depends on CMD_MTEST
	prompt "alternative mtest implementation"

config CMD_MTEST_START
	hex
	depends on CMD_MTEST
	prompt "mtest start address"

config CMD_MTEST_END
	hex
	depends on CMD_MTEST
	prompt "mtest end address"

endmenu


menu "network                       "

config CMD_MII
	bool
	depends on BROKEN
	prompt "mii"

endmenu


menu "flash                         "

config CMD_FLASH
	bool
	prompt "protect/erase/flinfo"

endmenu


menu "booting                       "

config CMD_BOOTM
	bool
	select CRC32
	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"

config CMD_RESET
	bool
	prompt "reset"

config CMD_GO
	bool
	prompt "go"

endmenu

endmenu