summaryrefslogtreecommitdiffstats
path: root/common/Kconfig
blob: fe3d9698d9ef72627f9d139ac9d58102660b2494 (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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269

config ZLIB
	bool

config BZLIB
	bool

config GREGORIAN_CALENDER
	bool

menu "General Settings              "

config PROMPT
	string
	prompt "U-Boot command prompt"
	default "uboot> "

config BAUDRATE
	int
	prompt "Default baudrate"
	default 115200

config CMDLINE_EDITING
	bool
	prompt "Enable command line editing"

config AUTO_COMPLETE
	bool
	prompt "Enable auto completion"

config SIMPLE_READLINE
	bool
	default y
	depends on !CMDLINE_EDITING

config LONGHELP
	bool
	prompt "Enable long help texts"

config CBSIZE
	int
	prompt "Buffer size for input from the Console"
	default 1024

config MAXARGS
	int
	prompt "max. Number of arguments accepted for monitor commands"
	default 16

config HUSH_PARSER
	bool
	prompt "Use hush parser"

config SIMPLE_PARSER
	bool
	default y
	depends on !HUSH_PARSER

config PROMPT_HUSH_PS2
	string
	depends on HUSH_PARSER
	prompt "hush PS2"
	default "> "

config ZERO_BOOTDELAY_CHECK
	bool
	prompt "Enable stop boot process with bootdelay = 0"
	default y

config DYNAMIC_CRC_TABLE
	bool
	prompt "Generate the crc32 table dynamically"
	default y
	help
	  Saying yes to this option saves around 800 bytes of binary size.
	  If unsure say yes.

config ERRNO_MESSAGES
	bool
	prompt "print error values as text"
	default y

config TIMESTAMP
	bool
	default y
	select GREGORIAN_CALENDER
	prompt "print timestamp information from images"
	help
	  When CONFIG_TIMESTAMP is selected, the timestamp
	  (date and time) of an image is printed by image
	  commands like bootm or iminfo. This option is
	  automatically enabled when you select CFG_CMD_DATE .

config CONSOLE_ACTIVATE_FIRST
	bool
	default y
	prompt "activate first console on startup"
	help
	  Normally on startup all consoles are disabled, so you won't
	  see anything from U-Boot starting. Enabling this option
	  enables the first console.

config CONSOLE_ACTIVATE_ALL
	bool
	depends on !CONSOLE_ACTIVATE_FIRST
	prompt "activate all consoles on startup"
	help
	  Enabling this options activates all consoles on startup, so
	  you will get output and a prompt on all consoles simultaneously.

config OF_FLAT_TREE
	bool
	prompt "Open Firmware flat device tree support"

endmenu


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_CONSOLE
	bool
	prompt "coninfo"

config CMD_ECHO
	bool
	prompt "echo"

config CMD_SPLASH
	bool
	prompt "splash"

endmenu


menu "i2c                           "

config CMD_I2C
	bool
	prompt "i2c"

endmenu


menu "memory                        "

config CMD_LOADB
	bool
	prompt "loadb"

config CMD_LOADS
	bool
	prompt "loads"

config CMD_SAVES
	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
	prompt "mii"

endmenu


menu "flash                         "

config CMD_FLASH
	bool
	prompt "protect/erase/flinfo"

endmenu


menu "booting                       "

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

endmenu

menu "Debugging                     "

config SKIP_LOWLEVEL_INIT
	bool
	depends on ARM
	prompt "Skip lowlevel init"


endmenu