blob: c61c85162293f3244bc54873cdea7561ad0af369 [file] [log] [blame]
Simon Glass72a8cf82016-01-17 20:53:51 -07001menu "Command line interface"
2
Simon Glass302a6482016-03-13 19:07:28 -06003config CMDLINE
4 bool "Support U-Boot commands"
5 default y
6 help
7 Enable U-Boot's command-line functions. This provides a means
8 to enter commands into U-Boot for a wide variety of purposes. It
9 also allows scripts (containing commands) to be executed.
10 Various commands and command categorys can be indivdually enabled.
11 Depending on the number of commands enabled, this can add
12 substantially to the size of U-Boot.
13
Simon Glass72a8cf82016-01-17 20:53:51 -070014config HUSH_PARSER
15 bool "Use hush shell"
Simon Glass302a6482016-03-13 19:07:28 -060016 depends on CMDLINE
Simon Glass72a8cf82016-01-17 20:53:51 -070017 help
18 This option enables the "hush" shell (from Busybox) as command line
19 interpreter, thus enabling powerful command line syntax like
20 if...then...else...fi conditionals or `&&' and '||'
21 constructs ("shell scripts").
22
23 If disabled, you get the old, much simpler behaviour with a somewhat
24 smaller memory footprint.
25
Adam Fordd021e942018-02-06 07:58:59 -060026config CMDLINE_EDITING
27 bool "Enable command line editing"
28 depends on CMDLINE
29 default y
30 help
31 Enable editing and History functions for interactive command line
32 input operations
33
34config AUTO_COMPLETE
35 bool "Enable auto complete using TAB"
36 depends on CMDLINE
37 default y
38 help
39 Enable auto completion of commands using TAB.
40
41config SYS_LONGHELP
42 bool "Enable long help messages"
43 depends on CMDLINE
44 default y if CMDLINE
45 help
46 Defined when you want long help messages included
47 Do not set this option when short of memory.
48
Simon Glass72a8cf82016-01-17 20:53:51 -070049config SYS_PROMPT
50 string "Shell prompt"
51 default "=> "
52 help
53 This string is displayed in the command line to the left of the
54 cursor.
55
Christoph Muellner7ae31fc2019-04-05 13:03:46 +020056config SYS_XTRACE
57 string "Command execution tracer"
58 depends on CMDLINE
59 default y if CMDLINE
60 help
61 This option enables the possiblity to print all commands before
62 executing them and after all variables are evaluated (similar
63 to Bash's xtrace/'set -x' feature).
64 To enable the tracer a variable "xtrace" needs to be defined in
65 the environment.
66
Simon Glass72a8cf82016-01-17 20:53:51 -070067menu "Autoboot options"
68
Masahiro Yamada41598c82016-06-20 17:33:39 +090069config AUTOBOOT
70 bool "Autoboot"
71 default y
72 help
73 This enables the autoboot. See doc/README.autoboot for detail.
74
Simon Glass72a8cf82016-01-17 20:53:51 -070075config AUTOBOOT_KEYED
76 bool "Stop autobooting via specific input key / string"
77 default n
78 help
79 This option enables stopping (aborting) of the automatic
80 boot feature only by issuing a specific input key or
81 string. If not enabled, any input key will abort the
82 U-Boot automatic booting process and bring the device
83 to the U-Boot prompt for user input.
84
85config AUTOBOOT_PROMPT
86 string "Autoboot stop prompt"
87 depends on AUTOBOOT_KEYED
88 default "Autoboot in %d seconds\\n"
89 help
90 This string is displayed before the boot delay selected by
91 CONFIG_BOOTDELAY starts. If it is not defined there is no
92 output indicating that autoboot is in progress.
93
94 Note that this define is used as the (only) argument to a
95 printf() call, so it may contain '%' format specifications,
96 provided that it also includes, sepearated by commas exactly
97 like in a printf statement, the required arguments. It is
98 the responsibility of the user to select only such arguments
99 that are valid in the given context.
100
101config AUTOBOOT_ENCRYPTION
102 bool "Enable encryption in autoboot stopping"
103 depends on AUTOBOOT_KEYED
Simon Glass88fa4be2019-07-20 20:51:17 -0600104 help
105 This option allows a string to be entered into U-Boot to stop the
106 autoboot. The string itself is hashed and compared against the hash
107 in the environment variable 'bootstopkeysha256'. If it matches then
108 boot stops and a command-line prompt is presented.
109
110 This provides a way to ship a secure production device which can also
111 be accessed at the U-Boot command line.
Simon Glass72a8cf82016-01-17 20:53:51 -0700112
113config AUTOBOOT_DELAY_STR
114 string "Delay autobooting via specific input key / string"
115 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
116 help
117 This option delays the automatic boot feature by issuing
118 a specific input key or string. If CONFIG_AUTOBOOT_DELAY_STR
119 or the environment variable "bootdelaykey" is specified
120 and this string is received from console input before
121 autoboot starts booting, U-Boot gives a command prompt. The
122 U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is
123 used, otherwise it never times out.
124
125config AUTOBOOT_STOP_STR
126 string "Stop autobooting via specific input key / string"
127 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
128 help
129 This option enables stopping (aborting) of the automatic
130 boot feature only by issuing a specific input key or
131 string. If CONFIG_AUTOBOOT_STOP_STR or the environment
132 variable "bootstopkey" is specified and this string is
133 received from console input before autoboot starts booting,
134 U-Boot gives a command prompt. The U-Boot prompt never
135 times out, even if CONFIG_BOOT_RETRY_TIME is used.
136
137config AUTOBOOT_KEYED_CTRLC
138 bool "Enable Ctrl-C autoboot interruption"
139 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
140 default n
141 help
142 This option allows for the boot sequence to be interrupted
143 by ctrl-c, in addition to the "bootdelaykey" and "bootstopkey".
144 Setting this variable provides an escape sequence from the
145 limited "password" strings.
146
147config AUTOBOOT_STOP_STR_SHA256
148 string "Stop autobooting via SHA256 encrypted password"
149 depends on AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION
150 help
151 This option adds the feature to only stop the autobooting,
152 and therefore boot into the U-Boot prompt, when the input
153 string / password matches a values that is encypted via
154 a SHA256 hash and saved in the environment.
155
Simon Glass8fc31e22019-07-20 20:51:21 -0600156config AUTOBOOT_USE_MENUKEY
157 bool "Allow a specify key to run a menu from the environment"
158 depends on !AUTOBOOT_KEYED
159 help
160 If a specific key is pressed to stop autoboot, then the commands in
161 the environment variable 'menucmd' are executed before boot starts.
162
163config AUTOBOOT_MENUKEY
164 int "ASCII value of boot key to show a menu"
165 default 0
166 depends on AUTOBOOT_USE_MENUKEY
167 help
168 If this key is pressed to stop autoboot, then the commands in the
169 environment variable 'menucmd' will be executed before boot starts.
170 For example, 33 means "!" in ASCII, so pressing ! at boot would take
171 this action.
172
Simon Glasscf9803a2019-07-20 20:51:25 -0600173config AUTOBOOT_MENU_SHOW
174 bool "Show a menu on boot"
AKASHI Takahirodd2d9892019-09-12 15:31:22 +0900175 depends on CMD_BOOTMENU
Simon Glasscf9803a2019-07-20 20:51:25 -0600176 help
177 This enables the boot menu, controlled by environment variables
178 defined by the board. The menu starts after running the 'preboot'
179 environmnent variable (if enabled) and before handling the boot delay.
180 See README.bootmenu for more details.
181
Simon Glass72a8cf82016-01-17 20:53:51 -0700182endmenu
183
Sam Protsenko610eec72017-09-28 12:33:45 -0700184config BUILD_BIN2C
185 bool
186
Simon Glass72a8cf82016-01-17 20:53:51 -0700187comment "Commands"
188
189menu "Info commands"
190
191config CMD_BDI
192 bool "bdinfo"
193 default y
194 help
195 Print board info
196
Masahiro Yamada61304db2017-01-30 11:12:07 +0900197config CMD_CONFIG
198 bool "config"
Masahiro Yamada61304db2017-01-30 11:12:07 +0900199 default SANDBOX
Michal Simek5ed063d2018-07-23 15:55:13 +0200200 select BUILD_BIN2C
Masahiro Yamada61304db2017-01-30 11:12:07 +0900201 help
202 Print ".config" contents.
203
204 If this option is enabled, the ".config" file contents are embedded
205 in the U-Boot image and can be printed on the console by the "config"
206 command. This provides information of which options are enabled on
207 the running U-Boot.
208
Simon Glass72a8cf82016-01-17 20:53:51 -0700209config CMD_CONSOLE
210 bool "coninfo"
211 default y
212 help
213 Print console devices and information.
214
215config CMD_CPU
216 bool "cpu"
217 help
218 Print information about available CPUs. This normally shows the
219 number of CPUs, type (e.g. manufacturer, architecture, product or
220 internal name) and clock frequency. Other information may be
221 available depending on the CPU driver.
222
223config CMD_LICENSE
224 bool "license"
Masahiro Yamadad726f222017-01-30 11:12:08 +0900225 select BUILD_BIN2C
Simon Glass72a8cf82016-01-17 20:53:51 -0700226 help
227 Print GPL license text
228
Christophe Leroyfa379222017-08-04 16:34:40 -0600229config CMD_REGINFO
230 bool "reginfo"
231 depends on PPC
232 help
233 Register dump
234
Simon Glass72a8cf82016-01-17 20:53:51 -0700235endmenu
236
237menu "Boot commands"
238
239config CMD_BOOTD
240 bool "bootd"
241 default y
242 help
243 Run the command stored in the environment "bootcmd", i.e.
244 "bootd" does the same thing as "run bootcmd".
245
246config CMD_BOOTM
247 bool "bootm"
248 default y
249 help
250 Boot an application image from the memory.
251
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500252config CMD_BOOTZ
253 bool "bootz"
254 help
255 Boot the Linux zImage
256
Masahiro Yamada26959272016-08-12 08:31:16 -0400257config CMD_BOOTI
258 bool "booti"
Atish Patra3cedc972019-05-06 17:49:39 -0700259 depends on ARM64 || RISCV
Masahiro Yamada26959272016-08-12 08:31:16 -0400260 default y
261 help
262 Boot an AArch64 Linux Kernel image from memory.
263
Alexander Grafb9939332016-03-10 00:27:20 +0100264config CMD_BOOTEFI
265 bool "bootefi"
266 depends on EFI_LOADER
267 default y
268 help
269 Boot an EFI image from memory.
270
Alexander Graf95b62b22016-11-17 22:40:10 +0100271config CMD_BOOTEFI_HELLO_COMPILE
272 bool "Compile a standard EFI hello world binary for testing"
Heinrich Schuchardt0ea87412018-12-30 10:11:14 +0100273 depends on CMD_BOOTEFI && !CPU_V7M && !SANDBOX
Alexander Graf95b62b22016-11-17 22:40:10 +0100274 default y
275 help
276 This compiles a standard EFI hello world application with U-Boot so
277 that it can be used with the test/py testing framework. This is useful
278 for testing that EFI is working at a basic level, and for bringing
279 up EFI support on a new architecture.
280
281 No additional space will be required in the resulting U-Boot binary
282 when this option is enabled.
283
Simon Glassc7ae3df2016-11-07 08:47:08 -0700284config CMD_BOOTEFI_HELLO
285 bool "Allow booting a standard EFI hello world for testing"
Alexander Graf95b62b22016-11-17 22:40:10 +0100286 depends on CMD_BOOTEFI_HELLO_COMPILE
Simon Glassc7ae3df2016-11-07 08:47:08 -0700287 help
288 This adds a standard EFI hello world application to U-Boot so that
289 it can be used with the 'bootefi hello' command. This is useful
290 for testing that EFI is working at a basic level, and for bringing
291 up EFI support on a new architecture.
292
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200293source lib/efi_selftest/Kconfig
294
Tom Rini4880b022016-11-29 09:14:56 -0500295config CMD_BOOTMENU
296 bool "bootmenu"
297 select MENU
298 help
299 Add an ANSI terminal boot menu command.
300
Sam Protsenkod03e76a2018-08-16 23:34:13 +0300301config CMD_DTIMG
302 bool "dtimg"
303 help
304 Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
305 image into RAM, dump image structure information, etc. Those dtb/dtbo
306 files should be merged in one dtb further, which needs to be passed to
307 the kernel, as part of a boot process.
308
Simon Glass72a8cf82016-01-17 20:53:51 -0700309config CMD_ELF
310 bool "bootelf, bootvx"
311 default y
312 help
313 Boot an ELF/vxWorks image from the memory.
314
Michal Simek23922e22016-04-06 20:28:04 +0200315config CMD_FDT
316 bool "Flattened Device Tree utility commands"
317 default y
318 depends on OF_LIBFDT
319 help
320 Do FDT related setup before booting into the Operating System.
321
Simon Glass72a8cf82016-01-17 20:53:51 -0700322config CMD_GO
323 bool "go"
324 default y
325 help
326 Start an application at a given address.
327
328config CMD_RUN
329 bool "run"
330 default y
331 help
332 Run the command in the given environment variable.
333
334config CMD_IMI
335 bool "iminfo"
336 default y
337 help
338 Print header information for application image.
339
340config CMD_IMLS
341 bool "imls"
Simon Glass72a8cf82016-01-17 20:53:51 -0700342 help
343 List all images found in flash
344
345config CMD_XIMG
346 bool "imxtract"
347 default y
348 help
349 Extract a part of a multi-image.
350
Simon Glass72c30332017-08-04 16:34:48 -0600351config CMD_SPL
352 bool "spl export - Export boot information for Falcon boot"
353 depends on SPL
354 help
355 Falcon mode allows booting directly from SPL into an Operating
356 System such as Linux, thus skipping U-Boot proper. See
357 doc/README.falcon for full information about how to use this
358 command.
359
Simon Glass203dc1b2017-08-04 16:34:49 -0600360config CMD_SPL_NAND_OFS
Lukasz Majewskif63c43b2019-05-16 16:01:36 +0200361 hex "Offset of OS args or dtb for Falcon-mode NAND boot"
Lukasz Majewski7cb179e2019-05-16 16:01:35 +0200362 depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
Simon Glass203dc1b2017-08-04 16:34:49 -0600363 default 0
364 help
365 This provides the offset of the command line arguments for Linux
366 when booting from NAND in Falcon mode. See doc/README.falcon
367 for full information about how to use this option (and also see
368 board/gateworks/gw_ventana/README for an example).
369
Lukasz Majewskief9e57d2019-05-16 16:01:37 +0200370config CMD_SPL_NOR_OFS
371 hex "Offset of OS args or dtb for Falcon-mode NOR boot"
372 depends on CMD_SPL && SPL_NOR_SUPPORT
373 default 0
374 help
375 This provides the offset of the command line arguments or dtb for
376 Linux when booting from NOR in Falcon mode.
377
Simon Glass3a91a252017-08-04 16:34:50 -0600378config CMD_SPL_WRITE_SIZE
379 hex "Size of argument area"
380 depends on CMD_SPL
381 default 0x2000
382 help
383 This provides the size of the command-line argument area in NAND
384 flash used by Falcon-mode boot. See the documentation until CMD_SPL
385 for detail.
386
Marek Vasutac084322018-02-10 16:22:05 +0100387config CMD_FITUPD
388 bool "fitImage update command"
389 help
390 Implements the 'fitupd' command, which allows to automatically
391 store software updates present on a TFTP server in NOR Flash
392
Simon Glass9b92a8d2017-08-04 16:34:57 -0600393config CMD_THOR_DOWNLOAD
394 bool "thor - TIZEN 'thor' download"
395 help
396 Implements the 'thor' download protocol. This is a way of
397 downloading a software update over USB from an attached host.
398 There is no documentation about this within the U-Boot source code
399 but you should be able to find something on the interwebs.
400
Simon Glasse7a815f2017-08-04 16:35:03 -0600401config CMD_ZBOOT
402 bool "zboot - x86 boot command"
403 help
404 With x86 machines it is common to boot a bzImage file which
405 contains both a kernel and a setup.bin file. The latter includes
406 configuration information from the dark ages which x86 boards still
407 need to pick things out of.
408
409 Consider using FIT in preference to this since it supports directly
410 booting both 32- and 64-bit kernels, as well as secure boot.
411 Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
412
Simon Glass72a8cf82016-01-17 20:53:51 -0700413endmenu
414
415menu "Environment commands"
416
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500417config CMD_ASKENV
418 bool "ask for env variable"
419 help
420 Ask for environment variable
421
Simon Glass72a8cf82016-01-17 20:53:51 -0700422config CMD_EXPORTENV
423 bool "env export"
424 default y
425 help
426 Export environments.
427
428config CMD_IMPORTENV
429 bool "env import"
430 default y
431 help
432 Import environments.
433
434config CMD_EDITENV
435 bool "editenv"
436 default y
437 help
438 Edit environment variable.
439
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500440config CMD_GREPENV
441 bool "search env"
442 help
443 Allow for searching environment variables
444
Simon Glass72a8cf82016-01-17 20:53:51 -0700445config CMD_SAVEENV
446 bool "saveenv"
447 default y
448 help
449 Save all environment variables into the compiled-in persistent
450 storage.
451
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200452config CMD_ERASEENV
453 bool "eraseenv"
454 default n
455 depends on CMD_SAVEENV
456 help
457 Erase environment variables from the compiled-in persistent
458 storage.
459
Simon Glass72a8cf82016-01-17 20:53:51 -0700460config CMD_ENV_EXISTS
461 bool "env exists"
462 default y
463 help
464 Check if a variable is defined in the environment for use in
465 shell scripting.
466
Simon Glassa55d29d2017-05-17 03:25:13 -0600467config CMD_ENV_CALLBACK
468 bool "env callbacks - print callbacks and their associated variables"
469 help
470 Some environment variable have callbacks defined by
471 U_BOOT_ENV_CALLBACK. These are called when the variable changes.
472 For example changing "baudrate" adjust the serial baud rate. This
473 command lists the currently defined callbacks.
474
Simon Glassffc76582017-05-17 03:25:14 -0600475config CMD_ENV_FLAGS
476 bool "env flags -print variables that have non-default flags"
477 help
478 Some environment variables have special flags that control their
479 behaviour. For example, serial# can only be written once and cannot
480 be deleted. This command shows the variables that have special
481 flags.
482
AKASHI Takahiro49d81fd2019-02-25 15:54:36 +0900483config CMD_NVEDIT_EFI
484 bool "env [set|print] -e - set/print UEFI variables"
485 depends on EFI_LOADER
486 default y
487 imply HEXDUMP
488 help
489 UEFI variables are encoded as some form of U-Boot variables.
490 If enabled, we are allowed to set/print UEFI variables using
491 "env" command with "-e" option without knowing details.
492
Leo Ruan8e921202019-05-24 17:20:19 +0200493config CMD_NVEDIT_INFO
494 bool "env info - print or evaluate environment information"
495 help
496 Print environment information:
497 - env_valid : is environment valid
498 - env_ready : is environment imported into hash table
499 - env_use_default : is default environment used
500
501 This command can be optionally used for evaluation in scripts:
502 [-d] : evaluate whether default environment is used
503 [-p] : evaluate whether environment can be persisted
504 The result of multiple evaluations will be combined with AND.
505
Simon Glass72a8cf82016-01-17 20:53:51 -0700506endmenu
507
508menu "Memory commands"
509
Mario Six55b25562018-03-28 14:39:18 +0200510config CMD_BINOP
511 bool "binop"
512 help
513 Compute binary operations (xor, or, and) of byte arrays of arbitrary
514 size from memory and store the result in memory or the environment.
515
Simon Glass72a8cf82016-01-17 20:53:51 -0700516config CMD_CRC32
517 bool "crc32"
518 default y
Michal Simek5ed063d2018-07-23 15:55:13 +0200519 select HASH
Simon Glass72a8cf82016-01-17 20:53:51 -0700520 help
521 Compute CRC32.
522
Daniel Thompson221a9492017-05-19 17:26:58 +0100523config CRC32_VERIFY
524 bool "crc32 -v"
525 depends on CMD_CRC32
526 help
527 Add -v option to verify data against a crc32 checksum.
528
Simon Glassa1dc9802017-05-17 03:25:10 -0600529config CMD_EEPROM
530 bool "eeprom - EEPROM subsystem"
531 help
532 (deprecated, needs conversion to driver model)
533 Provides commands to read and write EEPROM (Electrically Erasable
534 Programmable Read Only Memory) chips that are connected over an
535 I2C bus.
536
537config CMD_EEPROM_LAYOUT
538 bool "Enable layout-aware eeprom commands"
539 depends on CMD_EEPROM
540 help
541 (deprecated, needs conversion to driver model)
542 When enabled, additional eeprom sub-commands become available.
543
544 eeprom print - prints the contents of the eeprom in a human-readable
545 way (eeprom layout fields, and data formatted to be fit for human
546 consumption).
547
548 eeprom update - allows user to update eeprom fields by specifying
549 the field name, and providing the new data in a human readable format
550 (same format as displayed by the eeprom print command).
551
552 Both commands can either auto detect the layout, or be told which
553 layout to use.
554
555 Feature API:
556 __weak int parse_layout_version(char *str)
557 - override to provide your own layout name parsing
558 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
559 int layout_version);
560 - override to setup the layout metadata based on the version
561 __weak int eeprom_layout_detect(unsigned char *data)
562 - override to provide your own algorithm for detecting layout
563 version
564 eeprom_field.c
565 - contains various printing and updating functions for common
566 types of eeprom fields. Can be used for defining
567 custom layouts.
568
569config EEPROM_LAYOUT_HELP_STRING
570 string "Tells user what layout names are supported"
571 depends on CMD_EEPROM_LAYOUT
572 default "<not defined>"
573 help
574 Help printed with the LAYOUT VERSIONS part of the 'eeprom'
575 command's help.
576
Simon Glassba71be52017-08-04 16:34:51 -0600577config LOOPW
578 bool "loopw"
579 help
580 Infinite write loop on address range
581
Andre Przywarabea79d72017-03-15 01:19:05 +0000582config CMD_MD5SUM
583 bool "md5sum"
584 default n
585 select MD5
586 help
587 Compute MD5 checksum.
588
Daniel Thompson221a9492017-05-19 17:26:58 +0100589config MD5SUM_VERIFY
Andre Przywarabea79d72017-03-15 01:19:05 +0000590 bool "md5sum -v"
591 default n
592 depends on CMD_MD5SUM
593 help
594 Add -v option to verify data against an MD5 checksum.
595
Simon Glassba71be52017-08-04 16:34:51 -0600596config CMD_MEMINFO
597 bool "meminfo"
Daniel Thompson221a9492017-05-19 17:26:58 +0100598 help
Simon Glassba71be52017-08-04 16:34:51 -0600599 Display memory information.
Daniel Thompson221a9492017-05-19 17:26:58 +0100600
Simon Glassba71be52017-08-04 16:34:51 -0600601config CMD_MEMORY
602 bool "md, mm, nm, mw, cp, cmp, base, loop"
603 default y
Daniel Thompson221a9492017-05-19 17:26:58 +0100604 help
Simon Glassba71be52017-08-04 16:34:51 -0600605 Memory commands.
606 md - memory display
607 mm - memory modify (auto-incrementing address)
608 nm - memory modify (constant address)
609 mw - memory write (fill)
610 cp - memory copy
611 cmp - memory compare
612 base - print or set address offset
613 loop - initialize loop on address range
Simon Glass72a8cf82016-01-17 20:53:51 -0700614
Adam Ford78f28772019-08-14 07:54:34 -0500615config MX_CYCLIC
616 bool "Enable cyclic md/mw commands"
617 depends on CMD_MEMORY
618 help
619 Add the "mdc" and "mwc" memory commands. These are cyclic
620 "md/mw" commands.
621 Examples:
622
623 => mdc.b 10 4 500
624 This command will print 4 bytes (10,11,12,13) each 500 ms.
625
626 => mwc.l 100 12345678 10
627 This command will write 12345678 to address 100 all 10 ms.
628
Jean-Jacques Hiblot803e1a32019-07-02 14:23:26 +0200629config CMD_RANDOM
630 bool "random"
631 default y
632 depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
633 help
634 random - fill memory with random data
635
Simon Glass72a8cf82016-01-17 20:53:51 -0700636config CMD_MEMTEST
637 bool "memtest"
638 help
639 Simple RAM read/write test.
640
Mario Sixe89f8aa2018-03-28 14:38:14 +0200641if CMD_MEMTEST
642
643config SYS_ALT_MEMTEST
644 bool "Alternative test"
645 help
646 Use a more complete alternative memory test.
647
648endif
649
Simon Glass72a8cf82016-01-17 20:53:51 -0700650config CMD_MX_CYCLIC
651 bool "mdc, mwc"
652 help
653 mdc - memory display cyclic
654 mwc - memory write cyclic
655
Simon Glassba71be52017-08-04 16:34:51 -0600656config CMD_SHA1SUM
657 bool "sha1sum"
658 select SHA1
Simon Glass72a8cf82016-01-17 20:53:51 -0700659 help
Simon Glassba71be52017-08-04 16:34:51 -0600660 Compute SHA1 checksum.
661
662config SHA1SUM_VERIFY
663 bool "sha1sum -v"
664 depends on CMD_SHA1SUM
665 help
666 Add -v option to verify data against a SHA1 checksum.
Simon Glass72a8cf82016-01-17 20:53:51 -0700667
Simon Glass00805d72017-08-04 16:34:52 -0600668config CMD_STRINGS
669 bool "strings - display strings in memory"
670 help
671 This works similarly to the Unix 'strings' command except that it
672 works with a memory range. String of printable characters found
673 within the range are displayed. The minimum number of characters
674 for a sequence to be considered a string can be provided.
675
Simon Glassee7c0e72017-05-17 03:25:43 -0600676endmenu
677
678menu "Compression commands"
679
680config CMD_LZMADEC
681 bool "lzmadec"
Tom Rini99e46df2017-09-29 14:32:44 -0400682 default y if CMD_BOOTI
Simon Glassee7c0e72017-05-17 03:25:43 -0600683 select LZMA
684 help
685 Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
686 image from memory.
687
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900688config CMD_UNZIP
689 bool "unzip"
Tom Rini99e46df2017-09-29 14:32:44 -0400690 default y if CMD_BOOTI
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900691 help
692 Uncompress a zip-compressed memory region.
693
694config CMD_ZIP
695 bool "zip"
696 help
697 Compress a memory region with zlib deflate method.
698
Simon Glass72a8cf82016-01-17 20:53:51 -0700699endmenu
700
701menu "Device access commands"
702
Simon Glass0c19b4d2017-08-04 16:34:28 -0600703config CMD_ARMFLASH
704 #depends on FLASH_CFI_DRIVER
705 bool "armflash"
706 help
707 ARM Ltd reference designs flash partition access
708
Neil Armstrong051ebe32018-04-27 15:17:57 +0200709config CMD_ADC
710 bool "adc - Access Analog to Digital Converters info and data"
711 select ADC
712 select DM_REGULATOR
713 help
714 Shows ADC device info and permit printing one-shot analog converted
715 data from a named Analog to Digital Converter.
716
Eugeniu Roscadb7b7a02019-05-23 17:32:22 +0200717config CMD_BCB
718 bool "bcb"
719 depends on MMC
720 depends on PARTITIONS
721 help
722 Read/modify/write the fields of Bootloader Control Block, usually
723 stored on the flash "misc" partition with its structure defined in:
724 https://android.googlesource.com/platform/bootable/recovery/+/master/
725 bootloader_message/include/bootloader_message/bootloader_message.h
726
727 Some real-life use-cases include (but are not limited to):
728 - Determine the "boot reason" (and act accordingly):
729 https://source.android.com/devices/bootloader/boot-reason
730 - Get/pass a list of commands from/to recovery:
731 https://android.googlesource.com/platform/bootable/recovery
732 - Inspect/dump the contents of the BCB fields
733
Jean-Jacques Hiblot49c752c2018-08-09 16:17:46 +0200734config CMD_BIND
735 bool "bind/unbind - Bind or unbind a device to/from a driver"
736 depends on DM
737 help
738 Bind or unbind a device to/from a driver from the command line.
739 This is useful in situations where a device may be handled by several
740 drivers. For example, this can be used to bind a UDC to the usb ether
741 gadget driver from the command line.
742
Simon Glassd3156282017-04-26 22:28:02 -0600743config CMD_CLK
744 bool "clk - Show clock frequencies"
745 help
746 (deprecated)
747 Shows clock frequences by calling a sock_clk_dump() hook function.
748 This is depreated in favour of using the CLK uclass and accessing
749 clock values from associated drivers. However currently no command
750 exists for this.
751
Simon Glass72a8cf82016-01-17 20:53:51 -0700752config CMD_DEMO
753 bool "demo - Demonstration commands for driver model"
754 depends on DM
755 help
756 Provides a 'demo' command which can be used to play around with
757 driver model. To use this properly you will need to enable one or
758 both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
759 Otherwise you will always get an empty list of devices. The demo
760 devices are defined in the sandbox device tree, so the easiest
761 option is to use sandbox and pass the -d point to sandbox's
762 u-boot.dtb file.
763
Simon Glass0c19b4d2017-08-04 16:34:28 -0600764config CMD_DFU
765 bool "dfu"
Marek Vasut0f44d332018-02-16 16:41:17 +0100766 select DFU
Simon Glass0c19b4d2017-08-04 16:34:28 -0600767 help
768 Enables the command "dfu" which is used to have U-Boot create a DFU
Simon Glass00fd59d2017-08-04 16:35:06 -0600769 class device via USB. This command requires that the "dfu_alt_info"
770 environment variable be set and define the alt settings to expose to
771 the host.
Simon Glass0c19b4d2017-08-04 16:34:28 -0600772
773config CMD_DM
774 bool "dm - Access to driver model information"
775 depends on DM
Simon Glass0c19b4d2017-08-04 16:34:28 -0600776 help
777 Provides access to driver model data structures and information,
778 such as a list of devices, list of uclasses and the state of each
779 device (e.g. activated). This is not required for operation, but
780 can be useful to see the state of driver model for debugging or
781 interest.
782
Alex Kiernan312a10f2018-05-29 15:30:39 +0000783config CMD_FASTBOOT
784 bool "fastboot - Android fastboot support"
785 depends on FASTBOOT
786 help
787 This enables the command "fastboot" which enables the Android
788 fastboot mode for the platform. Fastboot is a protocol for
789 downloading images, flashing and device control used on
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000790 Android devices. Fastboot requires either the network stack
791 enabled or support for acting as a USB device.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000792
Eugeniu Roscacef4de82019-07-19 23:26:11 +0200793 See doc/android/fastboot.txt for more information.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000794
Simon Glass0c19b4d2017-08-04 16:34:28 -0600795config CMD_FDC
796 bool "fdcboot - Boot from floppy device"
797 help
798 The 'fdtboot' command allows booting an image from a floppy disk.
799
800config CMD_FLASH
801 bool "flinfo, erase, protect"
802 default y
803 help
804 NOR flash support.
805 flinfo - print FLASH memory information
806 erase - FLASH memory
807 protect - enable or disable FLASH write protection
808
809config CMD_FPGA
810 bool "fpga"
Tuomas Tynkkynena4fa8112018-01-27 20:28:40 +0200811 depends on FPGA
Simon Glass0c19b4d2017-08-04 16:34:28 -0600812 default y
813 help
814 FPGA support.
815
816config CMD_FPGA_LOADBP
817 bool "fpga loadbp - load partial bitstream (Xilinx only)"
818 depends on CMD_FPGA
819 help
820 Supports loading an FPGA device from a bitstream buffer containing
821 a partial bitstream.
822
823config CMD_FPGA_LOADFS
824 bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
825 depends on CMD_FPGA
826 help
827 Supports loading an FPGA device from a FAT filesystem.
828
829config CMD_FPGA_LOADMK
830 bool "fpga loadmk - load bitstream from image"
831 depends on CMD_FPGA
832 help
833 Supports loading an FPGA device from a image generated by mkimage.
834
835config CMD_FPGA_LOADP
836 bool "fpga loadp - load partial bitstream"
837 depends on CMD_FPGA
838 help
839 Supports loading an FPGA device from a bitstream buffer containing
840 a partial bitstream.
841
Siva Durga Prasad Paladugucedd48e2018-05-31 15:10:22 +0530842config CMD_FPGA_LOAD_SECURE
843 bool "fpga loads - loads secure bitstreams (Xilinx only)"
844 depends on CMD_FPGA
845 help
846 Enables the fpga loads command which is used to load secure
847 (authenticated or encrypted or both) bitstreams on to FPGA.
848
Simon Glass0c19b4d2017-08-04 16:34:28 -0600849config CMD_FPGAD
850 bool "fpgad - dump FPGA registers"
851 help
852 (legacy, needs conversion to driver model)
853 Provides a way to dump FPGA registers by calling the board-specific
854 fpga_get_reg() function. This functions similarly to the 'md'
855 command.
856
857config CMD_FUSE
858 bool "fuse - support for the fuse subssystem"
859 help
860 (deprecated - needs conversion to driver model)
861 This allows reading, sensing, programming or overriding fuses
862 which control the behaviour of the device. The command uses the
863 fuse_...() API.
864
865config CMD_GPIO
866 bool "gpio"
867 help
868 GPIO support.
869
870config CMD_GPT
871 bool "GPT (GUID Partition Table) command"
Simon Glass0c19b4d2017-08-04 16:34:28 -0600872 select EFI_PARTITION
Adam Ford1811a922018-02-06 12:43:56 -0600873 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +0200874 select PARTITION_UUIDS
Maxime Ripard47738ac2017-08-24 11:52:32 +0200875 imply RANDOM_UUID
Simon Glass0c19b4d2017-08-04 16:34:28 -0600876 help
877 Enable the 'gpt' command to ready and write GPT style partition
878 tables.
879
Maxime Ripard47738ac2017-08-24 11:52:32 +0200880config RANDOM_UUID
881 bool "GPT Random UUID generation"
Adam Forda451bc22018-02-06 12:14:28 -0600882 select LIB_UUID
Maxime Ripard47738ac2017-08-24 11:52:32 +0200883 help
884 Enable the generation of partitions with random UUIDs if none
885 are provided.
886
Simon Glass0c19b4d2017-08-04 16:34:28 -0600887config CMD_GPT_RENAME
888 bool "GPT partition renaming commands"
889 depends on CMD_GPT
890 help
891 Enables the 'gpt' command to interchange names on two GPT
892 partitions via the 'gpt swap' command or to rename single
893 partitions via the 'rename' command.
894
Simon Glass75eb9972017-05-17 03:25:29 -0600895config CMD_IDE
896 bool "ide - Support for IDE drivers"
Simon Glassfc843a02017-05-17 03:25:30 -0600897 select IDE
Simon Glass75eb9972017-05-17 03:25:29 -0600898 help
899 Provides an 'ide' command which allows accessing the IDE drive,
900 reseting the IDE interface, printing the partition table and
901 geting device info. It also enables the 'diskboot' command which
902 permits booting from an IDE drive.
903
Simon Glass594e8d12017-05-17 03:25:34 -0600904config CMD_IO
905 bool "io - Support for performing I/O accesses"
906 help
907 Provides an 'iod' command to display I/O space and an 'iow' command
908 to write values to the I/O space. This can be useful for manually
909 checking the state of devices during boot when debugging device
910 drivers, etc.
911
Simon Glass7d0f5c12017-05-17 03:25:36 -0600912config CMD_IOTRACE
913 bool "iotrace - Support for tracing I/O activity"
914 help
915 Provides an 'iotrace' command which supports recording I/O reads and
916 writes in a trace buffer in memory . It also maintains a checksum
917 of the trace records (even if space is exhausted) so that the
918 sequence of I/O accesses can be verified.
919
920 When debugging drivers it is useful to see what I/O accesses were
921 done and in what order.
922
923 Even if the individual accesses are of little interest it can be
924 useful to verify that the access pattern is consistent each time
925 an operation is performed. In this case a checksum can be used to
926 characterise the operation of a driver. The checksum can be compared
927 across different runs of the operation to verify that the driver is
928 working properly.
929
930 In particular, when performing major refactoring of the driver, where
931 the access pattern should not change, the checksum provides assurance
932 that the refactoring work has not broken the driver.
933
934 This works by sneaking into the io.h heder for an architecture and
935 redirecting I/O accesses through iotrace's tracing mechanism.
936
937 For now no commands are provided to examine the trace buffer. The
938 format is fairly simple, so 'md' is a reasonable substitute.
939
940 Note: The checksum feature is only useful for I/O regions where the
941 contents do not change outside of software control. Where this is not
942 suitable you can fall back to manually comparing the addresses. It
943 might be useful to enhance tracing to only checksum the accesses and
944 not the data read/written.
945
Simon Glass0c19b4d2017-08-04 16:34:28 -0600946config CMD_I2C
947 bool "i2c"
948 help
949 I2C support.
950
Eugen Hristevd05266f2018-09-18 10:35:33 +0300951config CMD_W1
952 depends on W1
953 default y if W1
954 bool "w1 - Support for Dallas 1-Wire protocol"
955 help
956 Dallas 1-wire protocol support
957
Simon Glass72a8cf82016-01-17 20:53:51 -0700958config CMD_LOADB
959 bool "loadb"
960 default y
961 help
962 Load a binary file over serial line.
963
964config CMD_LOADS
965 bool "loads"
966 default y
967 help
968 Load an S-Record file over serial line
969
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500970config CMD_MMC
971 bool "mmc"
972 help
973 MMC memory mapped support.
974
Alex Kiernan5a7b11e2018-05-08 04:43:31 +0000975config CMD_MMC_RPMB
976 bool "Enable support for RPMB in the mmc command"
977 depends on CMD_MMC
978 help
979 Enable the commands for reading, writing and programming the
980 key for the Replay Protection Memory Block partition in eMMC.
981
Alex Kiernanc232d142018-05-29 15:30:52 +0000982config CMD_MMC_SWRITE
983 bool "mmc swrite"
984 depends on CMD_MMC && MMC_WRITE
985 select IMAGE_SPARSE
986 help
987 Enable support for the "mmc swrite" command to write Android sparse
988 images to eMMC.
989
Miquel Raynal5db66b32018-09-29 12:58:28 +0200990config CMD_MTD
991 bool "mtd"
992 select MTD_PARTITIONS
993 help
994 MTD commands support.
995
Simon Glass72a8cf82016-01-17 20:53:51 -0700996config CMD_NAND
997 bool "nand"
Maxime Ripard522c2822017-03-03 15:13:30 +0100998 default y if NAND_SUNXI
Simon Glass72a8cf82016-01-17 20:53:51 -0700999 help
1000 NAND support.
1001
Boris Brezillone915d202017-02-27 18:22:07 +01001002if CMD_NAND
1003config CMD_NAND_TRIMFFS
1004 bool "nand write.trimffs"
Hans de Goeded482a8d2017-02-27 18:22:10 +01001005 default y if ARCH_SUNXI
Boris Brezillone915d202017-02-27 18:22:07 +01001006 help
1007 Allows one to skip empty pages when flashing something on a NAND.
1008
1009config CMD_NAND_LOCK_UNLOCK
1010 bool "nand lock/unlock"
1011 help
1012 NAND locking support.
1013
1014config CMD_NAND_TORTURE
1015 bool "nand torture"
1016 help
1017 NAND torture support.
1018
1019endif # CMD_NAND
1020
Zhikang Zhang0adc38b2017-08-03 02:30:59 -07001021config CMD_NVME
1022 bool "nvme"
1023 depends on NVME
1024 default y if NVME
1025 help
1026 NVM Express device support
1027
Simon Glass978f0852017-08-04 16:34:31 -06001028config CMD_ONENAND
1029 bool "onenand - access to onenand device"
1030 help
1031 OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1032 various useful features. This command allows reading, writing,
1033 and erasing blocks. It allso provides a way to show and change
1034 bad blocks, and test the device.
1035
Mario Six3bf65cb2018-09-27 09:19:34 +02001036config CMD_OSD
1037 bool "osd"
1038 help
1039 Enable the 'osd' command which allows to query information from and
1040 write text data to a on-screen display (OSD) device; a virtual device
1041 associated with a display capable of displaying a text overlay on the
1042 display it's associated with..
1043
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001044config CMD_PART
1045 bool "part"
Adam Ford1811a922018-02-06 12:43:56 -06001046 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +02001047 select PARTITION_UUIDS
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001048 help
1049 Read and display information about the partition table on
1050 various media.
1051
Simon Glass6500ec72017-08-04 16:34:34 -06001052config CMD_PCI
1053 bool "pci - Access PCI devices"
1054 help
1055 Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1056 used on some devices to allow the CPU to communicate with its
1057 peripherals. Sub-commands allow bus enumeration, displaying and
1058 changing configuration space and a few other features.
1059
Patrice Chotardd5a83132018-10-24 14:10:17 +02001060config CMD_PINMUX
1061 bool "pinmux - show pins muxing"
1062 default y if PINCTRL
1063 help
1064 Parse all available pin-controllers and show pins muxing. This
1065 is useful for debug purpoer to check the pin muxing and to know if
1066 a pin is configured as a GPIO or as an alternate function.
1067
Adam Ford577c40a2018-09-09 07:05:57 -05001068config CMD_POWEROFF
1069 bool "poweroff"
1070 help
1071 Poweroff/Shutdown the system
1072
Simon Glassb75dfd22017-08-04 16:34:39 -06001073config CMD_READ
1074 bool "read - Read binary data from a partition"
1075 help
1076 Provides low-level access to the data in a partition.
1077
Simon Glass72a8cf82016-01-17 20:53:51 -07001078config CMD_REMOTEPROC
1079 bool "remoteproc"
1080 depends on REMOTEPROC
1081 help
1082 Support for Remote Processor control
1083
Simon Glass3bf926c2017-06-14 21:28:24 -06001084config CMD_SATA
1085 bool "sata - Access SATA subsystem"
Simon Glass10e40d52017-06-14 21:28:25 -06001086 select SATA
Simon Glass3bf926c2017-06-14 21:28:24 -06001087 help
1088 SATA (Serial Advanced Technology Attachment) is a serial bus
1089 standard for connecting to hard drives and other storage devices.
1090 This command provides information about attached devices and allows
1091 reading, writing and other operations.
1092
1093 SATA replaces PATA (originally just ATA), which stands for Parallel AT
1094 Attachment, where AT refers to an IBM AT (Advanced Technology)
1095 computer released in 1984.
1096
Simon Glass15dc63d2017-08-04 16:34:43 -06001097config CMD_SAVES
1098 bool "saves - Save a file over serial in S-Record format"
1099 help
1100 Provides a way to save a binary file using the Motorola S-Record
1101 format over the serial line.
1102
Heinrich Schuchardt0c3fecd2018-02-14 08:05:44 +01001103config CMD_SCSI
1104 bool "scsi - Access to SCSI devices"
1105 default y if SCSI
1106 help
1107 This provides a 'scsi' command which provides access to SCSI (Small
1108 Computer System Interface) devices. The command provides a way to
1109 scan the bus, reset the bus, read and write data and get information
1110 about devices.
1111
Simon Glassefce2442017-08-04 16:34:45 -06001112config CMD_SDRAM
1113 bool "sdram - Print SDRAM configuration information"
1114 help
1115 Provides information about attached SDRAM. This assumed that the
1116 SDRAM has an EEPROM with information that can be read using the
1117 I2C bus. This is only available on some boards.
1118
Simon Glass0c19b4d2017-08-04 16:34:28 -06001119config CMD_SF
1120 bool "sf"
Tom Rinia4298dd2019-05-29 17:01:28 -04001121 depends on DM_SPI_FLASH || SPI_FLASH
Simon Glass0c19b4d2017-08-04 16:34:28 -06001122 help
1123 SPI Flash support
1124
Simon Glass719d36e2017-08-04 16:34:46 -06001125config CMD_SF_TEST
1126 bool "sf test - Allow testing of SPI flash"
Tom Rinia4298dd2019-05-29 17:01:28 -04001127 depends on CMD_SF
Simon Glass719d36e2017-08-04 16:34:46 -06001128 help
1129 Provides a way to test that SPI flash is working correctly. The
1130 test is destructive, in that an area of SPI flash must be provided
1131 for the test to use. Performance information is also provided,
1132 measuring the performance of reading, writing and erasing in
1133 Mbps (Million Bits Per Second). This value should approximately
1134 equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1135 everything is working properly.
1136
Simon Glass0c19b4d2017-08-04 16:34:28 -06001137config CMD_SPI
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001138 bool "sspi - Command to access spi device"
Tom Rinia4298dd2019-05-29 17:01:28 -04001139 depends on SPI
Simon Glass0c19b4d2017-08-04 16:34:28 -06001140 help
1141 SPI utility command.
1142
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001143config DEFAULT_SPI_BUS
1144 int "default spi bus used by sspi command"
1145 depends on CMD_SPI
1146 default 0
1147
1148config DEFAULT_SPI_MODE
1149 hex "default spi mode used by sspi command (see include/spi.h)"
1150 depends on CMD_SPI
1151 default 0
1152
Simon Glass5605aa82017-08-04 16:35:00 -06001153config CMD_TSI148
1154 bool "tsi148 - Command to access tsi148 device"
1155 help
1156 This provides various sub-commands to initialise and configure the
1157 Turndra tsi148 device. See the command help for full details.
1158
Simon Glass2a242e32017-08-04 16:35:01 -06001159config CMD_UNIVERSE
1160 bool "universe - Command to set up the Turndra Universe controller"
1161 help
1162 This allows setting up the VMEbus provided by this controller.
1163 See the command help for full details.
1164
Simon Glass0c19b4d2017-08-04 16:34:28 -06001165config CMD_USB
1166 bool "usb"
Adam Ford1811a922018-02-06 12:43:56 -06001167 select HAVE_BLOCK_DEVICE
Simon Glass0c19b4d2017-08-04 16:34:28 -06001168 help
1169 USB support.
1170
Stefan Agner2f005692017-08-16 11:00:53 -07001171config CMD_USB_SDP
1172 bool "sdp"
1173 select USB_FUNCTION_SDP
1174 help
1175 Enables the command "sdp" which is used to have U-Boot emulating the
1176 Serial Download Protocol (SDP) via USB.
Michal Simek6e7bdde2018-07-23 15:55:12 +02001177
Eddie Cai453c95e2017-12-15 08:17:11 +08001178config CMD_ROCKUSB
1179 bool "rockusb"
1180 depends on USB_FUNCTION_ROCKUSB
1181 help
Michal Simek6e7bdde2018-07-23 15:55:12 +02001182 Rockusb protocol is widely used by Rockchip SoC based devices. It can
Eddie Cai453c95e2017-12-15 08:17:11 +08001183 read/write info, image to/from devices. This enable rockusb command
1184 support to communication with rockusb device. for more detail about
1185 this command, please read doc/README.rockusb.
Stefan Agner2f005692017-08-16 11:00:53 -07001186
Simon Glass0c19b4d2017-08-04 16:34:28 -06001187config CMD_USB_MASS_STORAGE
1188 bool "UMS usb mass storage"
Lukasz Majewskie4d46042018-01-29 19:28:02 +01001189 select USB_FUNCTION_MASS_STORAGE
Simon Glass0c19b4d2017-08-04 16:34:28 -06001190 help
1191 USB mass storage support
1192
Tuomas Tynkkynen78e12902018-10-15 02:21:12 -07001193config CMD_VIRTIO
1194 bool "virtio"
1195 depends on VIRTIO
1196 default y if VIRTIO
1197 help
1198 VirtIO block device support
1199
Michael Walle82a00be2019-04-06 02:24:02 +02001200config CMD_WDT
1201 bool "wdt"
1202 depends on WDT
1203 help
1204 This provides commands to control the watchdog timer devices.
1205
Mario Six37c4a5f2018-08-09 14:51:21 +02001206config CMD_AXI
1207 bool "axi"
1208 depends on AXI
1209 help
1210 Enable the command "axi" for accessing AXI (Advanced eXtensible
1211 Interface) busses, a on-chip interconnect specification for managing
1212 functional blocks in SoC designs, which is also often used in designs
1213 involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs).
Simon Glass72a8cf82016-01-17 20:53:51 -07001214endmenu
1215
1216
1217menu "Shell scripting commands"
1218
1219config CMD_ECHO
1220 bool "echo"
1221 default y
1222 help
1223 Echo args to console
1224
1225config CMD_ITEST
1226 bool "itest"
1227 default y
1228 help
1229 Return true/false on integer compare.
1230
1231config CMD_SOURCE
1232 bool "source"
1233 default y
1234 help
1235 Run script from memory
1236
1237config CMD_SETEXPR
1238 bool "setexpr"
1239 default y
1240 help
1241 Evaluate boolean and math expressions and store the result in an env
1242 variable.
1243 Also supports loading the value at a memory location into a variable.
1244 If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1245
1246endmenu
1247
Ruslan Trofymenko17030c72019-07-05 15:37:33 +03001248menu "Android support commands"
1249
1250config CMD_AB_SELECT
1251 bool "ab_select"
1252 default n
1253 depends on ANDROID_AB
1254 help
1255 On Android devices with more than one boot slot (multiple copies of
1256 the kernel and system images) this provides a command to select which
1257 slot should be used to boot from and register the boot attempt. This
1258 is used by the new A/B update model where one slot is updated in the
1259 background while running from the other slot.
1260
1261endmenu
1262
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001263if NET
1264
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001265menuconfig CMD_NET
1266 bool "Network commands"
1267 default y
Adam Fordd7869b22018-07-20 23:03:57 -05001268 imply NETDEVICES
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001269
1270if CMD_NET
1271
1272config CMD_BOOTP
1273 bool "bootp"
Simon Glass72a8cf82016-01-17 20:53:51 -07001274 default y
1275 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001276 bootp - boot image via network using BOOTP/TFTP protocol
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001277
Joe Hershbergere88b2562018-04-13 15:26:33 -05001278config CMD_DHCP
1279 bool "dhcp"
1280 depends on CMD_BOOTP
1281 help
1282 Boot image via network using DHCP/TFTP protocol
1283
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001284config BOOTP_BOOTPATH
Joe Hershberger8df69d92018-04-13 15:26:34 -05001285 bool "Request & store 'rootpath' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001286 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001287 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001288 help
1289 Even though the config is called BOOTP_BOOTPATH, it stores the
1290 path in the variable 'rootpath'.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001291
1292config BOOTP_DNS
Joe Hershberger8df69d92018-04-13 15:26:34 -05001293 bool "Request & store 'dnsip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001294 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001295 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001296 help
1297 The primary DNS server is stored as 'dnsip'. If two servers are
1298 returned, you must set BOOTP_DNS2 to store that second server IP
1299 also.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001300
Joe Hershberger80449c02018-04-13 15:26:35 -05001301config BOOTP_DNS2
1302 bool "Store 'dnsip2' from BOOTP/DHCP server"
1303 depends on BOOTP_DNS
1304 help
1305 If a DHCP client requests the DNS server IP from a DHCP server,
1306 it is possible that more than one DNS serverip is offered to the
1307 client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1308 server IP will be stored in the additional environment
1309 variable "dnsip2". The first DNS serverip is always
1310 stored in the variable "dnsip", when BOOTP_DNS is defined.
1311
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001312config BOOTP_GATEWAY
Joe Hershberger8df69d92018-04-13 15:26:34 -05001313 bool "Request & store 'gatewayip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001314 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001315 depends on CMD_BOOTP
1316
1317config BOOTP_HOSTNAME
Joe Hershberger8df69d92018-04-13 15:26:34 -05001318 bool "Request & store 'hostname' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001319 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001320 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001321 help
1322 The name may or may not be qualified with the local domain name.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001323
Alexander Grafbdce3402018-06-15 10:29:28 +02001324config BOOTP_PREFER_SERVERIP
1325 bool "serverip variable takes precedent over DHCP server IP."
1326 depends on CMD_BOOTP
1327 help
1328 By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1329
1330 With this option enabled, the 'serverip' variable in the environment
1331 takes precedence over DHCP server IP and will only be set by the DHCP
1332 server if not already set in the environment.
1333
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001334config BOOTP_SUBNETMASK
Joe Hershberger8df69d92018-04-13 15:26:34 -05001335 bool "Request & store 'netmask' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001336 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001337 depends on CMD_BOOTP
1338
Chris Packham9b23c732018-05-03 20:19:02 +12001339config BOOTP_NTPSERVER
1340 bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1341 depends on CMD_BOOTP
1342
Ramon Fried3eaac632019-07-18 21:43:30 +03001343config CMD_PCAP
1344 bool "pcap capture"
1345 help
1346 Selecting this will allow capturing all Ethernet packets and store
1347 them in physical memory in a PCAP formated file,
1348 later to be analyzed by PCAP reader application (IE. WireShark).
1349
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001350config BOOTP_PXE
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001351 bool "Send PXE client arch to BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001352 default y
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001353 depends on CMD_BOOTP && CMD_PXE
1354 help
1355 Supported for ARM, ARM64, and x86 for now.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001356
1357config BOOTP_PXE_CLIENTARCH
1358 hex
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001359 depends on BOOTP_PXE
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001360 default 0x16 if ARM64
1361 default 0x15 if ARM
1362 default 0 if X86
1363
1364config BOOTP_VCI_STRING
1365 string
1366 depends on CMD_BOOTP
Michal Simek4bbd6b12018-04-26 18:21:29 +05301367 default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001368 default "U-Boot.armv8" if ARM64
1369 default "U-Boot.arm" if ARM
1370 default "U-Boot"
1371
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001372config CMD_TFTPBOOT
1373 bool "tftpboot"
1374 default y
1375 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001376 tftpboot - boot image via network using TFTP protocol
1377
1378config CMD_TFTPPUT
1379 bool "tftp put"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001380 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001381 help
1382 TFTP put command, for uploading files to a server
1383
1384config CMD_TFTPSRV
1385 bool "tftpsrv"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001386 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001387 help
1388 Act as a TFTP server and boot the first received file
1389
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001390config NET_TFTP_VARS
1391 bool "Control TFTP timeout and count through environment"
1392 depends on CMD_TFTPBOOT
1393 default y
1394 help
1395 If set, allows controlling the TFTP timeout through the
1396 environment variable tftptimeout, and the TFTP maximum
1397 timeout count through the variable tftptimeoutcountmax.
1398 If unset, timeout and maximum are hard-defined as 1 second
1399 and 10 timouts per TFTP transfer.
1400
Simon Glass72a8cf82016-01-17 20:53:51 -07001401config CMD_RARP
1402 bool "rarpboot"
1403 help
1404 Boot image via network using RARP/TFTP protocol
1405
Simon Glass72a8cf82016-01-17 20:53:51 -07001406config CMD_NFS
1407 bool "nfs"
1408 default y
1409 help
1410 Boot image via network using NFS protocol.
1411
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001412config CMD_MII
1413 bool "mii"
1414 help
1415 Enable MII utility commands.
1416
Simon Glass72a8cf82016-01-17 20:53:51 -07001417config CMD_PING
1418 bool "ping"
1419 help
1420 Send ICMP ECHO_REQUEST to network host
1421
1422config CMD_CDP
1423 bool "cdp"
1424 help
1425 Perform CDP network configuration
1426
1427config CMD_SNTP
1428 bool "sntp"
1429 help
1430 Synchronize RTC via network
1431
1432config CMD_DNS
1433 bool "dns"
1434 help
1435 Lookup the IP of a hostname
1436
1437config CMD_LINK_LOCAL
1438 bool "linklocal"
Joe Hershberger6f0dc0c2018-04-30 12:45:22 -05001439 select LIB_RAND
Simon Glass72a8cf82016-01-17 20:53:51 -07001440 help
1441 Acquire a network IP address using the link-local protocol
1442
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001443endif
1444
Simon Glassef072202017-05-17 03:25:17 -06001445config CMD_ETHSW
1446 bool "ethsw"
1447 help
1448 Allow control of L2 Ethernet switch commands. These are supported
1449 by the vsc9953 Ethernet driver at present. Sub-commands allow
1450 operations such as enabling / disabling a port and
1451 viewing/maintaining the filtering database (FDB)
1452
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001453config CMD_PXE
1454 bool "pxe"
1455 select MENU
1456 help
1457 Boot image via network using PXE protocol
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001458
Lothar Feltend8970da2018-06-22 22:29:54 +02001459config CMD_WOL
1460 bool "wol"
1461 help
1462 Wait for wake-on-lan Magic Packet
1463
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001464endif
Simon Glass72a8cf82016-01-17 20:53:51 -07001465
1466menu "Misc commands"
1467
Simon Glass0f710252017-04-26 22:27:55 -06001468config CMD_BMP
1469 bool "Enable 'bmp' command"
1470 depends on LCD || DM_VIDEO || VIDEO
1471 help
1472 This provides a way to obtain information about a BMP-format iamge
1473 and to display it. BMP (which presumably stands for BitMaP) is a
1474 file format defined by Microsoft which supports images of various
1475 depths, formats and compression methods. Headers on the file
1476 determine the formats used. This command can be used by first loading
1477 the image into RAM, then using this command to look at it or display
1478 it.
1479
Alex Kiernanb11ed7d2018-05-12 05:49:47 +00001480config CMD_BOOTCOUNT
1481 bool "bootcount"
1482 depends on BOOTCOUNT_LIMIT
1483 help
1484 Enable the bootcount command, which allows interrogation and
1485 reset of the bootcounter.
1486
Simon Glass4893e342017-04-26 22:27:56 -06001487config CMD_BSP
1488 bool "Enable board-specific commands"
1489 help
1490 (deprecated: instead, please define a Kconfig option for each command)
1491
1492 Some boards have board-specific commands which are only enabled
1493 during developemnt and need to be turned off for production. This
1494 option provides a way to control this. The commands that are enabled
1495 vary depending on the board.
1496
Tomas Melincd3d4882016-11-25 11:01:03 +02001497config CMD_BKOPS_ENABLE
1498 bool "mmc bkops enable"
1499 depends on CMD_MMC
1500 default n
1501 help
1502 Enable command for setting manual background operations handshake
1503 on a eMMC device. The feature is optionally available on eMMC devices
1504 conforming to standard >= 4.41.
1505
Eric Nelsone40cf342016-03-28 10:05:44 -07001506config CMD_BLOCK_CACHE
1507 bool "blkcache - control and stats for block cache"
1508 depends on BLOCK_CACHE
1509 default y if BLOCK_CACHE
1510 help
1511 Enable the blkcache command, which can be used to control the
1512 operation of the cache functions.
1513 This is most useful when fine-tuning the operation of the cache
1514 during development, but also allows the cache to be disabled when
1515 it might hurt performance (e.g. when using the ums command).
1516
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001517config CMD_CACHE
1518 bool "icache or dcache"
1519 help
1520 Enable the "icache" and "dcache" commands
1521
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +02001522config CMD_CONITRACE
1523 bool "conitrace - trace console input codes"
1524 help
1525 Enable the 'conitrace' command which displays the codes received
1526 from the console input as hexadecimal numbers.
1527
Anatolij Gustschin4e92e602018-12-01 10:47:20 +01001528config CMD_CLS
1529 bool "Enable clear screen command 'cls'"
1530 depends on CFB_CONSOLE || DM_VIDEO || LCD || VIDEO
1531 default y if LCD
1532 help
1533 Enable the 'cls' command which clears the screen contents
1534 on video frame buffer.
1535
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001536config CMD_EFIDEBUG
1537 bool "efidebug - display/configure UEFI environment"
1538 depends on EFI_LOADER
Heinrich Schuchardt64b5ba42019-05-11 09:53:33 +02001539 select EFI_DEVICE_PATH_TO_TEXT
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001540 default n
1541 help
1542 Enable the 'efidebug' command which provides a subset of UEFI
1543 shell utility with simplified functionality. It will be useful
1544 particularly for managing boot parameters as well as examining
1545 various EFI status for debugging.
1546
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001547config CMD_EXCEPTION
1548 bool "exception - raise exception"
1549 depends on ARM || RISCV || X86
1550 help
1551 Enable the 'exception' command which allows to raise an exception.
1552
Simon Glassffe20522017-04-10 11:34:59 -06001553config CMD_LED
1554 bool "led"
Jan Kiszka2ab6e742019-01-03 09:08:42 +01001555 depends on LED
Simon Glassffe20522017-04-10 11:34:59 -06001556 default y if LED
1557 help
1558 Enable the 'led' command which allows for control of LEDs supported
1559 by the board. The LEDs can be listed with 'led list' and controlled
1560 with led on/off/togle/blink. Any LED drivers can be controlled with
1561 this command, e.g. led_gpio.
1562
Chris Packhamc9032ce2017-04-29 15:20:28 +12001563config CMD_DATE
1564 bool "date"
1565 default y if DM_RTC
1566 help
1567 Enable the 'date' command for getting/setting the time/date in RTC
1568 devices.
1569
Simon Glass72a8cf82016-01-17 20:53:51 -07001570config CMD_TIME
1571 bool "time"
1572 help
1573 Run commands and summarize execution time.
1574
Simon Glassd91a9d72017-05-17 03:25:23 -06001575config CMD_GETTIME
1576 bool "gettime - read elapsed time"
1577 help
1578 Enable the 'gettime' command which reads the elapsed time since
1579 U-Boot started running. This shows the time in seconds and
1580 milliseconds. See also the 'bootstage' command which provides more
1581 flexibility for boot timing.
1582
Simon Glass72a8cf82016-01-17 20:53:51 -07001583# TODO: rename to CMD_SLEEP
1584config CMD_MISC
1585 bool "sleep"
1586 default y
1587 help
1588 Delay execution for some time
1589
Siva Durga Prasad Paladugu0fd2290c2018-06-19 12:24:23 +02001590config MP
1591 bool "support for multiprocessor"
1592 help
1593 This provides an option to brinup
1594 different processors in multiprocessor
1595 cases.
1596
Simon Glass72a8cf82016-01-17 20:53:51 -07001597config CMD_TIMER
1598 bool "timer"
1599 help
1600 Access the system timer.
1601
Simon Glass72a8cf82016-01-17 20:53:51 -07001602config CMD_SOUND
1603 bool "sound"
1604 depends on SOUND
1605 help
1606 This provides basic access to the U-Boot's sound support. The main
1607 feature is to play a beep.
1608
1609 sound init - set up sound system
1610 sound play - play a sound
1611
Miao Yan18686592016-05-22 19:37:17 -07001612config CMD_QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001613 bool "qfw"
Miao Yanfcf5c042016-05-22 19:37:14 -07001614 select QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001615 help
1616 This provides access to the QEMU firmware interface. The main
1617 feature is to allow easy loading of files passed to qemu-system
1618 via -kernel / -initrd
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02001619
1620source "cmd/mvebu/Kconfig"
1621
Simon Glass3cef3b32017-08-04 16:34:55 -06001622config CMD_TERMINAL
1623 bool "terminal - provides a way to attach a serial terminal"
1624 help
1625 Provides a 'cu'-like serial terminal command. This can be used to
1626 access other serial ports from the system console. The terminal
1627 is very simple with no special processing of characters. As with
1628 cu, you can press ~. (tilde followed by period) to exit.
1629
Simon Glass1aa4e8d2017-08-04 16:35:02 -06001630config CMD_UUID
1631 bool "uuid, guid - generation of unique IDs"
Adam Forda451bc22018-02-06 12:14:28 -06001632 select LIB_UUID
Simon Glass1aa4e8d2017-08-04 16:35:02 -06001633 help
1634 This enables two commands:
1635
1636 uuid - generate random Universally Unique Identifier
1637 guid - generate Globally Unique Identifier based on random UUID
1638
1639 The two commands are very similar except for the endianness of the
1640 output.
1641
Simon Glass72a8cf82016-01-17 20:53:51 -07001642endmenu
1643
Lokesh Vutla5cd96612017-12-29 11:47:49 +05301644source "cmd/ti/Kconfig"
1645
Simon Glass72a8cf82016-01-17 20:53:51 -07001646config CMD_BOOTSTAGE
1647 bool "Enable the 'bootstage' command"
1648 depends on BOOTSTAGE
1649 help
1650 Add a 'bootstage' command which supports printing a report
1651 and un/stashing of bootstage data.
1652
1653menu "Power commands"
1654config CMD_PMIC
1655 bool "Enable Driver Model PMIC command"
1656 depends on DM_PMIC
1657 help
1658 This is the pmic command, based on a driver model pmic's API.
1659 Command features are unchanged:
1660 - list - list pmic devices
1661 - pmic dev <id> - show or [set] operating pmic device (NEW)
1662 - pmic dump - dump registers
1663 - pmic read address - read byte of register at address
1664 - pmic write address - write byte to register at address
1665 The only one change for this command is 'dev' subcommand.
1666
1667config CMD_REGULATOR
1668 bool "Enable Driver Model REGULATOR command"
1669 depends on DM_REGULATOR
1670 help
1671 This command is based on driver model regulator's API.
1672 User interface features:
1673 - list - list regulator devices
1674 - regulator dev <id> - show or [set] operating regulator device
1675 - regulator info - print constraints info
1676 - regulator status - print operating status
1677 - regulator value <val] <-f> - print/[set] voltage value [uV]
1678 - regulator current <val> - print/[set] current value [uA]
1679 - regulator mode <id> - print/[set] operating mode id
1680 - regulator enable - enable the regulator output
1681 - regulator disable - disable the regulator output
1682
1683 The '-f' (force) option can be used for set the value which exceeds
1684 the limits, which are found in device-tree and are kept in regulator's
1685 uclass platdata structure.
1686
1687endmenu
1688
1689menu "Security commands"
Simon Glassb1a873d2017-04-26 22:27:49 -06001690config CMD_AES
1691 bool "Enable the 'aes' command"
1692 select AES
1693 help
1694 This provides a means to encrypt and decrypt data using the AES
1695 (Advanced Encryption Standard). This algorithm uses a symetric key
1696 and is widely used as a streaming cipher. Different key lengths are
1697 supported by the algorithm but this command only supports 128 bits
1698 at present.
1699
Simon Glassc04b9b32017-04-26 22:27:53 -06001700config CMD_BLOB
1701 bool "Enable the 'blob' command"
1702 help
1703 This is used with the Freescale secure boot mechanism.
1704
1705 Freescale's SEC block has built-in Blob Protocol which provides
1706 a method for protecting user-defined data across system power
1707 cycles. SEC block protects data in a data structure called a Blob,
1708 which provides both confidentiality and integrity protection.
1709
1710 Encapsulating data as a blob
1711 Each time that the Blob Protocol is used to protect data, a
1712 different randomly generated key is used to encrypt the data.
1713 This random key is itself encrypted using a key which is derived
1714 from SoC's non-volatile secret key and a 16 bit Key identifier.
1715 The resulting encrypted key along with encrypted data is called a
1716 blob. The non-volatile secure key is available for use only during
1717 secure boot.
1718
1719 During decapsulation, the reverse process is performed to get back
1720 the original data.
1721
1722 Sub-commands:
Michal Simek6e7bdde2018-07-23 15:55:12 +02001723 blob enc - encapsulating data as a cryptgraphic blob
Simon Glassc04b9b32017-04-26 22:27:53 -06001724 blob dec - decapsulating cryptgraphic blob to get the data
1725
1726 Syntax:
1727
1728 blob enc src dst len km
1729
1730 Encapsulate and create blob of data $len bytes long
1731 at address $src and store the result at address $dst.
1732 $km is the 16 byte key modifier is also required for
1733 generation/use as key for cryptographic operation. Key
1734 modifier should be 16 byte long.
1735
1736 blob dec src dst len km
1737
1738 Decapsulate the blob of data at address $src and
1739 store result of $len byte at addr $dst.
1740 $km is the 16 byte key modifier is also required for
1741 generation/use as key for cryptographic operation. Key
1742 modifier should be 16 byte long.
1743
Simon Glass551c3932017-05-17 03:25:25 -06001744config CMD_HASH
1745 bool "Support 'hash' command"
Simon Glassd70f9192017-05-17 09:05:34 -06001746 select HASH
Simon Glass551c3932017-05-17 03:25:25 -06001747 help
1748 This provides a way to hash data in memory using various supported
1749 algorithms (such as SHA1, MD5, CRC32). The computed digest can be
1750 saved to memory or to an environment variable. It is also possible
1751 to verify a hash against data in memory.
1752
Michalis Pappas666028f2018-04-13 10:40:57 +03001753config CMD_HVC
1754 bool "Support the 'hvc' command"
1755 depends on ARM_SMCCC
1756 help
1757 Allows issuing Hypervisor Calls (HVCs). Mostly useful for
1758 development and testing.
1759
1760config CMD_SMC
1761 bool "Support the 'smc' command"
1762 depends on ARM_SMCCC
1763 help
1764 Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
1765 development and testing.
1766
Daniel Thompson221a9492017-05-19 17:26:58 +01001767config HASH_VERIFY
1768 bool "hash -v"
1769 depends on CMD_HASH
1770 help
1771 Add -v option to verify data against a hash.
1772
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02001773config CMD_TPM_V1
1774 bool
1775
1776config CMD_TPM_V2
1777 bool
Tom Rini3a8c8bf2018-07-28 09:20:12 -04001778 select CMD_LOG
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02001779
Simon Glass72a8cf82016-01-17 20:53:51 -07001780config CMD_TPM
1781 bool "Enable the 'tpm' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02001782 depends on TPM_V1 || TPM_V2
1783 select CMD_TPM_V1 if TPM_V1
1784 select CMD_TPM_V2 if TPM_V2
Simon Glass72a8cf82016-01-17 20:53:51 -07001785 help
1786 This provides a means to talk to a TPM from the command line. A wide
1787 range of commands if provided - see 'tpm help' for details. The
1788 command requires a suitable TPM on your board and the correct driver
1789 must be enabled.
1790
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02001791if CMD_TPM
1792
Simon Glass72a8cf82016-01-17 20:53:51 -07001793config CMD_TPM_TEST
1794 bool "Enable the 'tpm test' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02001795 depends on TPM_V1
Simon Glass72a8cf82016-01-17 20:53:51 -07001796 help
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02001797 This provides a a series of tests to confirm that the TPMv1.x is
1798 working correctly. The tests cover initialisation, non-volatile RAM,
1799 extend, global lock and checking that timing is within expectations.
1800 The tests pass correctly on Infineon TPMs but may need to be adjusted
Simon Glass72a8cf82016-01-17 20:53:51 -07001801 for other devices.
1802
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02001803endif
1804
Simon Glass72a8cf82016-01-17 20:53:51 -07001805endmenu
1806
Moritz Fischerbfeba012016-10-04 17:08:08 -07001807menu "Firmware commands"
1808config CMD_CROS_EC
1809 bool "Enable crosec command"
1810 depends on CROS_EC
1811 default y
1812 help
1813 Enable command-line access to the Chrome OS EC (Embedded
1814 Controller). This provides the 'crosec' command which has
1815 a number of sub-commands for performing EC tasks such as
1816 updating its flash, accessing a small saved context area
1817 and talking to the I2C bus behind the EC (if there is one).
1818endmenu
1819
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001820menu "Filesystem commands"
Marek Behún9d845502017-09-03 17:00:30 +02001821config CMD_BTRFS
1822 bool "Enable the 'btrsubvol' command"
1823 select FS_BTRFS
1824 help
1825 This enables the 'btrsubvol' command to list subvolumes
1826 of a BTRFS filesystem. There are no special commands for
1827 listing BTRFS directories or loading BTRFS files - this
1828 can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
1829 when BTRFS is enabled (see FS_BTRFS).
1830
Simon Glassd66a10f2017-04-26 22:27:58 -06001831config CMD_CBFS
1832 bool "Enable the 'cbfs' command"
Simon Glassdeb959992017-04-26 22:27:59 -06001833 depends on FS_CBFS
Simon Glassd66a10f2017-04-26 22:27:58 -06001834 help
1835 Define this to enable support for reading from a Coreboot
1836 filesystem. This is a ROM-based filesystem used for accessing files
1837 on systems that use coreboot as the first boot-loader and then load
1838 U-Boot to actually boot the Operating System. Available commands are
1839 cbfsinit, cbfsinfo, cbfsls and cbfsload.
1840
Simon Glass97072742017-04-26 22:28:03 -06001841config CMD_CRAMFS
1842 bool "Enable the 'cramfs' command"
Simon Glass80e44cf2017-04-26 22:28:04 -06001843 depends on FS_CRAMFS
Simon Glass97072742017-04-26 22:28:03 -06001844 help
1845 This provides commands for dealing with CRAMFS (Compressed ROM
1846 filesystem). CRAMFS is useful when space is tight since files are
1847 compressed. Two commands are provided:
1848
1849 cramfsls - lists files in a cramfs image
1850 cramfsload - loads a file from a cramfs image
1851
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001852config CMD_EXT2
1853 bool "ext2 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02001854 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001855 help
1856 Enables EXT2 FS command
1857
1858config CMD_EXT4
1859 bool "ext4 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02001860 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001861 help
1862 Enables EXT4 FS command
1863
1864config CMD_EXT4_WRITE
1865 depends on CMD_EXT4
1866 bool "ext4 write command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02001867 select EXT4_WRITE
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001868 help
1869 Enables EXT4 FS write command
1870
1871config CMD_FAT
1872 bool "FAT command support"
Sekhar Norieedfb892017-06-02 17:53:59 +05301873 select FS_FAT
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001874 help
1875 Support for the FAT fs
1876
1877config CMD_FS_GENERIC
1878 bool "filesystem commands"
1879 help
1880 Enables filesystem commands (e.g. load, ls) that work for multiple
1881 fs types.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001882
Josua Mayerefbe99c2017-04-24 10:10:45 +02001883config CMD_FS_UUID
1884 bool "fsuuid command"
1885 help
1886 Enables fsuuid command for filesystem UUID.
1887
Simon Glassb8682a72017-05-17 03:25:37 -06001888config CMD_JFFS2
1889 bool "jffs2 command"
Simon Glass59e12a42017-05-17 03:25:38 -06001890 select FS_JFFS2
Simon Glassb8682a72017-05-17 03:25:37 -06001891 help
1892 Enables commands to support the JFFS2 (Journalling Flash File System
1893 version 2) filesystem. This enables fsload, ls and fsinfo which
1894 provide the ability to load files, list directories and obtain
1895 filesystem information.
1896
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001897config CMD_MTDPARTS
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001898 bool "MTD partition support"
Adam Ford9c5b0092018-07-07 22:18:22 -05001899 select MTD_DEVICE if (CMD_NAND || NAND)
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001900 help
Miquel Raynal938db6f2018-09-29 12:58:30 +02001901 MTD partitioning tool support.
1902 It is strongly encouraged to avoid using this command
1903 anymore along with 'sf', 'nand', 'onenand'. One can still
1904 declare the partitions in the mtdparts environment variable
1905 but better use the MTD stack and the 'mtd' command instead.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001906
1907config MTDIDS_DEFAULT
1908 string "Default MTD IDs"
Boris Brezillon03303fb2018-11-13 12:43:11 +01001909 depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001910 help
Tom Rini43ede0b2017-10-22 17:55:07 -04001911 Defines a default MTD IDs list for use with MTD partitions in the
1912 Linux MTD command line partitions format.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001913
1914config MTDPARTS_DEFAULT
1915 string "Default MTD partition scheme"
Boris Brezillon03303fb2018-11-13 12:43:11 +01001916 depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH
Maxime Ripard0269dfa2017-02-27 18:22:04 +01001917 help
1918 Defines a default MTD partitioning scheme in the Linux MTD command
1919 line partitions format
1920
Simon Glasscb70e6c2017-08-04 16:34:30 -06001921config CMD_MTDPARTS_SPREAD
1922 bool "Padd partition size to take account of bad blocks"
1923 depends on CMD_MTDPARTS
1924 help
1925 This enables the 'spread' sub-command of the mtdparts command.
1926 This command will modify the existing mtdparts variable by increasing
1927 the size of the partitions such that 1) each partition's net size is
1928 at least as large as the size specified in the mtdparts variable and
1929 2) each partition starts on a good block.
1930
Simon Glassf8803a92017-08-04 16:34:41 -06001931config CMD_REISER
1932 bool "reiser - Access to reiserfs filesystems"
1933 help
1934 This provides two commands which operate on a resierfs filesystem,
1935 commonly used some years ago:
1936
1937 reiserls - list files
1938 reiserload - load a file
1939
Simon Glass7a764312017-08-04 16:34:58 -06001940config CMD_YAFFS2
1941 bool "yaffs2 - Access of YAFFS2 filesystem"
1942 depends on YAFFS2
1943 default y
1944 help
1945 This provides commands for accessing a YAFFS2 filesystem. Yet
1946 Another Flash Filesystem 2 is a filesystem designed specifically
1947 for NAND flash. It incorporates bad-block management and ensures
1948 that device writes are sequential regardless of filesystem
1949 activity.
1950
Simon Glass54feea12017-08-04 16:35:04 -06001951config CMD_ZFS
1952 bool "zfs - Access of ZFS filesystem"
1953 help
1954 This provides commands to accessing a ZFS filesystem, commonly used
1955 on Solaris systems. Two sub-commands are provided:
1956
1957 zfsls - list files in a directory
1958 zfsload - load a file
1959
1960 See doc/README.zfs for more details.
1961
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001962endmenu
1963
Simon Glassac20a1b2017-04-26 22:27:52 -06001964menu "Debug commands"
1965
1966config CMD_BEDBUG
1967 bool "bedbug"
1968 help
1969 The bedbug (emBEDded deBUGger) command provides debugging features
1970 for some PowerPC processors. For details please see the
1971 docuemntation in doc/README.beddbug
1972
Simon Glass3bd25cb2017-04-26 22:28:08 -06001973config CMD_DIAG
1974 bool "diag - Board diagnostics"
1975 help
1976 This command provides access to board diagnostic tests. These are
1977 called Power-on Self Tests (POST). The command allows listing of
1978 available tests and running either all the tests, or specific tests
1979 identified by name.
1980
Simon Glass1b330892017-05-17 03:25:39 -06001981config CMD_IRQ
1982 bool "irq - Show information about interrupts"
Heiko Schocher064b55c2017-06-14 05:49:40 +02001983 depends on !ARM && !MIPS && !SH
Simon Glass1b330892017-05-17 03:25:39 -06001984 help
1985 This enables two commands:
1986
1987 interrupts - enable or disable interrupts
1988 irqinfo - print device-specific interrupt information
Simon Glass6bac2272017-05-17 03:25:40 -06001989
1990config CMD_KGDB
1991 bool "kgdb - Allow debugging of U-Boot with gdb"
Michal Simekb9205502018-10-04 14:26:13 +02001992 depends on PPC
Simon Glass6bac2272017-05-17 03:25:40 -06001993 help
1994 This enables a 'kgdb' command which allows gdb to connect to U-Boot
1995 over a serial link for debugging purposes. This allows
1996 single-stepping, inspecting variables, etc. This is supported only
1997 on PowerPC at present.
1998
Simon Glassd5f61f22017-12-04 13:48:26 -07001999config CMD_LOG
2000 bool "log - Generation, control and access to logging"
Heinrich Schuchardt83a1f932018-04-19 22:02:46 +02002001 select LOG
Simon Glassd5f61f22017-12-04 13:48:26 -07002002 help
2003 This provides access to logging features. It allows the output of
2004 log data to be controlled to a limited extent (setting up the default
Simon Glassef11ed82017-12-04 13:48:27 -07002005 maximum log level for emitting of records). It also provides access
2006 to a command used for testing the log system.
Simon Glassd5f61f22017-12-04 13:48:26 -07002007
Simon Glassce058ae2017-08-04 16:34:59 -06002008config CMD_TRACE
2009 bool "trace - Support tracing of function calls and timing"
2010 help
2011 Enables a command to control using of function tracing within
2012 U-Boot. This allows recording of call traces including timing
2013 information. The command can write data to memory for exporting
Simon Glassa24a78d2019-04-08 13:20:51 -06002014 for analysis (e.g. using bootchart). See doc/README.trace for full
Simon Glassce058ae2017-08-04 16:34:59 -06002015 details.
2016
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002017config CMD_AVB
2018 bool "avb - Android Verified Boot 2.0 operations"
Igor Opaniukb0aa74a2018-07-17 14:33:25 +03002019 depends on AVB_VERIFY
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002020 default n
2021 help
2022 Enables a "avb" command to perform verification of partitions using
2023 Android Verified Boot 2.0 functionality. It includes such subcommands:
2024 avb init - initialize avb2 subsystem
2025 avb read_rb - read rollback index
2026 avb write_rb - write rollback index
2027 avb is_unlocked - check device lock state
2028 avb get_uuid - read and print uuid of a partition
2029 avb read_part - read data from partition
2030 avb read_part_hex - read data from partition and output to stdout
2031 avb write_part - write data to partition
2032 avb verify - run full verification chain
Simon Glassac20a1b2017-04-26 22:27:52 -06002033endmenu
2034
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002035config CMD_UBI
2036 tristate "Enable UBI - Unsorted block images commands"
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002037 select MTD_UBI
2038 help
2039 UBI is a software layer above MTD layer which admits use of LVM-like
2040 logical volumes on top of MTD devices, hides some complexities of
2041 flash chips like wear and bad blocks and provides some other useful
2042 capabilities. Please, consult the MTD web site for more details
2043 (www.linux-mtd.infradead.org). Activate this option if you want
2044 to use U-Boot UBI commands.
Miquel Raynalc58fb2c2018-09-29 12:58:29 +02002045 It is also strongly encouraged to also enable CONFIG_MTD to get full
2046 partition support.
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002047
Boris Brezillon173aafb2017-02-27 18:22:06 +01002048config CMD_UBIFS
2049 tristate "Enable UBIFS - Unsorted block images filesystem commands"
Maxime Ripard2bc734b2017-03-03 14:53:22 +01002050 depends on CMD_UBI
Michal Simek5ed063d2018-07-23 15:55:13 +02002051 default y if CMD_UBI
Karl Beldan24fc9532017-07-12 16:11:47 +00002052 select LZO
Boris Brezillon173aafb2017-02-27 18:22:06 +01002053 help
2054 UBIFS is a file system for flash devices which works on top of UBI.
2055
Simon Glass72a8cf82016-01-17 20:53:51 -07002056endmenu