blob: c5eb71cea6cc5add89a741ba8ca09b23d7e596d9 [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"
Michal Simeka91feae2019-09-25 12:32:41 +020051 default "Zynq> " if ARCH_ZYNQ
Michal Simek3c3886d2019-09-25 12:37:15 +020052 default "ZynqMP> " if ARCH_ZYNQMP
Simon Glass72a8cf82016-01-17 20:53:51 -070053 default "=> "
54 help
55 This string is displayed in the command line to the left of the
56 cursor.
57
Patrick Delaunay48aee0a2020-10-26 09:31:42 +010058config SYS_PROMPT_HUSH_PS2
59 string "Hush shell secondary prompt"
60 depends on HUSH_PARSER
61 default "> "
62 help
63 This defines the secondary prompt string, which is
64 printed when the command interpreter needs more input
65 to complete a command. Usually "> ".
66
Christoph Muellner7ae31fc2019-04-05 13:03:46 +020067config SYS_XTRACE
Sean Andersonb935d192021-03-04 11:34:23 -050068 bool "Command execution tracer"
Christoph Muellner7ae31fc2019-04-05 13:03:46 +020069 depends on CMDLINE
70 default y if CMDLINE
71 help
72 This option enables the possiblity to print all commands before
73 executing them and after all variables are evaluated (similar
74 to Bash's xtrace/'set -x' feature).
75 To enable the tracer a variable "xtrace" needs to be defined in
76 the environment.
77
Sam Protsenko610eec72017-09-28 12:33:45 -070078config BUILD_BIN2C
79 bool
80
Simon Glass72a8cf82016-01-17 20:53:51 -070081comment "Commands"
82
83menu "Info commands"
84
Simon Glass0b885bc2020-04-26 09:19:53 -060085config CMD_ACPI
86 bool "acpi"
Heinrich Schuchardt12218c12021-01-20 21:37:56 +010087 depends on ACPIGEN
88 default y
Simon Glass0b885bc2020-04-26 09:19:53 -060089 help
90 List and dump ACPI tables. ACPI (Advanced Configuration and Power
91 Interface) is used mostly on x86 for providing information to the
92 Operating System about devices in the system. The tables are set up
93 by the firmware, typically U-Boot but possibly an earlier firmware
94 module, if U-Boot is chain-loaded from something else. ACPI tables
95 can also include code, to perform hardware-specific tasks required
96 by the Operating Systems. This allows some amount of separation
97 between the firmware and OS, and is particularly useful when you
98 want to make hardware changes without the OS needing to be adjusted.
99
Bin Meng56d06352021-02-25 17:22:34 +0800100config CMD_ADDRMAP
101 bool "addrmap"
102 depends on ADDR_MAP
103 default y
104 help
105 List non-identity virtual-physical memory mappings for 32-bit CPUs.
106
Simon Glass72a8cf82016-01-17 20:53:51 -0700107config CMD_BDI
108 bool "bdinfo"
109 default y
110 help
111 Print board info
112
Masahiro Yamada61304db2017-01-30 11:12:07 +0900113config CMD_CONFIG
114 bool "config"
Masahiro Yamada61304db2017-01-30 11:12:07 +0900115 default SANDBOX
Michal Simek5ed063d2018-07-23 15:55:13 +0200116 select BUILD_BIN2C
Masahiro Yamada61304db2017-01-30 11:12:07 +0900117 help
118 Print ".config" contents.
119
120 If this option is enabled, the ".config" file contents are embedded
121 in the U-Boot image and can be printed on the console by the "config"
122 command. This provides information of which options are enabled on
123 the running U-Boot.
124
Simon Glass72a8cf82016-01-17 20:53:51 -0700125config CMD_CONSOLE
126 bool "coninfo"
127 default y
128 help
129 Print console devices and information.
130
131config CMD_CPU
132 bool "cpu"
Heinrich Schuchardt622178d2020-11-05 00:29:11 +0100133 depends on CPU
Simon Glass72a8cf82016-01-17 20:53:51 -0700134 help
135 Print information about available CPUs. This normally shows the
136 number of CPUs, type (e.g. manufacturer, architecture, product or
137 internal name) and clock frequency. Other information may be
138 available depending on the CPU driver.
139
140config CMD_LICENSE
141 bool "license"
Masahiro Yamadad726f222017-01-30 11:12:08 +0900142 select BUILD_BIN2C
Simon Glass72a8cf82016-01-17 20:53:51 -0700143 help
144 Print GPL license text
145
Simon Glass3b65ee32019-12-06 21:41:54 -0700146config CMD_PMC
147 bool "pmc"
148 help
149 Provides access to the Intel Power-Management Controller (PMC) so
150 that its state can be examined. This does not currently support
151 changing the state but it is still useful for debugging and seeing
152 what is going on.
153
Christophe Leroyfa379222017-08-04 16:34:40 -0600154config CMD_REGINFO
155 bool "reginfo"
156 depends on PPC
157 help
158 Register dump
159
Baruch Siach1c79f2f2020-01-21 15:44:54 +0200160config CMD_TLV_EEPROM
161 bool "tlv_eeprom"
162 depends on I2C_EEPROM
163 help
164 Display and program the system EEPROM data block in ONIE Tlvinfo
165 format. TLV stands for Type-Length-Value.
166
167config SPL_CMD_TLV_EEPROM
168 bool "tlv_eeprom for SPL"
169 depends on SPL_I2C_EEPROM
Simon Glass9ca00682021-07-10 21:14:31 -0600170 select SPL_DRIVERS_MISC
Baruch Siach1c79f2f2020-01-21 15:44:54 +0200171 help
172 Read system EEPROM data block in ONIE Tlvinfo format from SPL.
173
Heinrich Schuchardtc92b50a2020-08-20 19:43:39 +0200174config CMD_SBI
175 bool "sbi"
176 depends on RISCV_SMODE && SBI_V02
177 help
178 Display information about the SBI implementation.
179
Simon Glass72a8cf82016-01-17 20:53:51 -0700180endmenu
181
182menu "Boot commands"
183
184config CMD_BOOTD
185 bool "bootd"
186 default y
187 help
188 Run the command stored in the environment "bootcmd", i.e.
189 "bootd" does the same thing as "run bootcmd".
190
191config CMD_BOOTM
192 bool "bootm"
193 default y
194 help
195 Boot an application image from the memory.
196
Philippe Reynes9d46e632022-03-28 22:57:00 +0200197config CMD_BOOTM_PRE_LOAD
198 bool "enable pre-load on bootm"
199 depends on CMD_BOOTM
200 depends on IMAGE_PRE_LOAD
201 default n
202 help
203 Enable support of stage pre-load for the bootm command.
204 This stage allow to check or modify the image provided
205 to the bootm command.
206
Cristian Ciocalteaecc7fda2019-12-24 18:05:39 +0200207config BOOTM_EFI
208 bool "Support booting UEFI FIT images"
209 depends on CMD_BOOTEFI && CMD_BOOTM && FIT
210 default y
211 help
212 Support booting UEFI FIT images via the bootm command.
213
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500214config CMD_BOOTZ
215 bool "bootz"
216 help
217 Boot the Linux zImage
218
Masahiro Yamada26959272016-08-12 08:31:16 -0400219config CMD_BOOTI
220 bool "booti"
Atish Patra3cedc972019-05-06 17:49:39 -0700221 depends on ARM64 || RISCV
Masahiro Yamada26959272016-08-12 08:31:16 -0400222 default y
223 help
224 Boot an AArch64 Linux Kernel image from memory.
225
Tom Rini4b0bcfa2019-09-20 17:36:50 -0400226config BOOTM_LINUX
227 bool "Support booting Linux OS images"
228 depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI
229 default y
230 help
231 Support booting the Linux kernel directly via a command such as bootm
232 or booti or bootz.
233
234config BOOTM_NETBSD
235 bool "Support booting NetBSD (non-EFI) loader images"
236 depends on CMD_BOOTM
237 default y
238 help
239 Support booting NetBSD via the bootm command.
240
241config BOOTM_OPENRTOS
242 bool "Support booting OPENRTOS / FreeRTOS images"
243 depends on CMD_BOOTM
244 help
245 Support booting OPENRTOS / FreeRTOS via the bootm command.
246
247config BOOTM_OSE
248 bool "Support booting Enea OSE images"
Tom Rini14a2dee2019-12-05 18:46:11 -0500249 depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86)
Tom Rini4b0bcfa2019-09-20 17:36:50 -0400250 depends on CMD_BOOTM
251 help
252 Support booting Enea OSE images via the bootm command.
253
254config BOOTM_PLAN9
255 bool "Support booting Plan9 OS images"
256 depends on CMD_BOOTM
257 default y
258 help
259 Support booting Plan9 images via the bootm command.
260
261config BOOTM_RTEMS
262 bool "Support booting RTEMS OS images"
263 depends on CMD_BOOTM
264 default y
265 help
266 Support booting RTEMS images via the bootm command.
267
268config BOOTM_VXWORKS
269 bool "Support booting VxWorks OS images"
270 depends on CMD_BOOTM
271 default y
272 help
273 Support booting VxWorks images via the bootm command.
274
AKASHI Takahirofefff632019-11-08 10:32:15 +0900275config CMD_BOOTEFI
276 bool "bootefi"
277 depends on EFI_LOADER
278 default y
279 help
280 Boot an EFI image from memory.
281
Alexander Graf95b62b22016-11-17 22:40:10 +0100282config CMD_BOOTEFI_HELLO_COMPILE
283 bool "Compile a standard EFI hello world binary for testing"
Heinrich Schuchardt3b4847c2019-11-07 08:05:17 +0100284 depends on CMD_BOOTEFI && !CPU_V7M
Alexander Graf95b62b22016-11-17 22:40:10 +0100285 default y
286 help
287 This compiles a standard EFI hello world application with U-Boot so
288 that it can be used with the test/py testing framework. This is useful
289 for testing that EFI is working at a basic level, and for bringing
290 up EFI support on a new architecture.
291
292 No additional space will be required in the resulting U-Boot binary
293 when this option is enabled.
294
Simon Glassc7ae3df2016-11-07 08:47:08 -0700295config CMD_BOOTEFI_HELLO
296 bool "Allow booting a standard EFI hello world for testing"
Alexander Graf95b62b22016-11-17 22:40:10 +0100297 depends on CMD_BOOTEFI_HELLO_COMPILE
Heinrich Schuchardtec5f0ed2020-07-13 07:33:40 +0200298 default y if CMD_BOOTEFI_SELFTEST
Simon Glassc7ae3df2016-11-07 08:47:08 -0700299 help
300 This adds a standard EFI hello world application to U-Boot so that
301 it can be used with the 'bootefi hello' command. This is useful
302 for testing that EFI is working at a basic level, and for bringing
303 up EFI support on a new architecture.
304
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200305source lib/efi_selftest/Kconfig
306
Tom Rini4880b022016-11-29 09:14:56 -0500307config CMD_BOOTMENU
308 bool "bootmenu"
309 select MENU
310 help
311 Add an ANSI terminal boot menu command.
312
Eugeniu Roscab84acf12019-12-24 17:51:06 +0100313config CMD_ADTIMG
314 bool "adtimg"
Sam Protsenkod03e76a2018-08-16 23:34:13 +0300315 help
316 Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
317 image into RAM, dump image structure information, etc. Those dtb/dtbo
318 files should be merged in one dtb further, which needs to be passed to
319 the kernel, as part of a boot process.
320
Sam Protsenko94f6d0d2020-01-24 17:53:42 +0200321config CMD_ABOOTIMG
322 bool "abootimg"
323 depends on ANDROID_BOOT_IMAGE
324 help
325 Android Boot Image manipulation commands. Allows one to extract
326 images contained in boot.img, like kernel, ramdisk, dtb, etc, and
327 obtain corresponding meta-information from boot.img.
328
Sam Protsenko34b43192020-01-24 17:53:43 +0200329 See doc/android/boot-image.rst for details.
330
Simon Glass72a8cf82016-01-17 20:53:51 -0700331config CMD_ELF
332 bool "bootelf, bootvx"
333 default y
Keerthy805b3ca2020-02-12 13:55:03 +0530334 select LIB_ELF
Simon Glass72a8cf82016-01-17 20:53:51 -0700335 help
336 Boot an ELF/vxWorks image from the memory.
337
Michal Simek23922e22016-04-06 20:28:04 +0200338config CMD_FDT
339 bool "Flattened Device Tree utility commands"
340 default y
341 depends on OF_LIBFDT
342 help
343 Do FDT related setup before booting into the Operating System.
344
Kory Maincent2f84e9c2021-05-04 19:31:22 +0200345config SUPPORT_EXTENSION_SCAN
346 bool
347
348config CMD_EXTENSION
349 bool "Extension board management command"
350 select CMD_FDT
351 depends on SUPPORT_EXTENSION_SCAN
352 help
353 Enables the "extension" command, which allows to detect
354 extension boards connected to the system, and apply
355 corresponding Device Tree overlays.
356
Simon Glass72a8cf82016-01-17 20:53:51 -0700357config CMD_GO
358 bool "go"
359 default y
360 help
361 Start an application at a given address.
362
363config CMD_RUN
364 bool "run"
365 default y
366 help
367 Run the command in the given environment variable.
368
369config CMD_IMI
370 bool "iminfo"
371 default y
372 help
373 Print header information for application image.
374
375config CMD_IMLS
376 bool "imls"
Simon Glass72a8cf82016-01-17 20:53:51 -0700377 help
378 List all images found in flash
379
380config CMD_XIMG
381 bool "imxtract"
382 default y
383 help
384 Extract a part of a multi-image.
385
Simon Glass72c30332017-08-04 16:34:48 -0600386config CMD_SPL
387 bool "spl export - Export boot information for Falcon boot"
388 depends on SPL
389 help
390 Falcon mode allows booting directly from SPL into an Operating
391 System such as Linux, thus skipping U-Boot proper. See
392 doc/README.falcon for full information about how to use this
393 command.
394
Simon Glass203dc1b2017-08-04 16:34:49 -0600395config CMD_SPL_NAND_OFS
Lukasz Majewskif63c43b2019-05-16 16:01:36 +0200396 hex "Offset of OS args or dtb for Falcon-mode NAND boot"
Lukasz Majewski7cb179e2019-05-16 16:01:35 +0200397 depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
Simon Glass203dc1b2017-08-04 16:34:49 -0600398 default 0
399 help
400 This provides the offset of the command line arguments for Linux
401 when booting from NAND in Falcon mode. See doc/README.falcon
402 for full information about how to use this option (and also see
403 board/gateworks/gw_ventana/README for an example).
404
Lukasz Majewskief9e57d2019-05-16 16:01:37 +0200405config CMD_SPL_NOR_OFS
406 hex "Offset of OS args or dtb for Falcon-mode NOR boot"
407 depends on CMD_SPL && SPL_NOR_SUPPORT
408 default 0
409 help
410 This provides the offset of the command line arguments or dtb for
411 Linux when booting from NOR in Falcon mode.
412
Simon Glass3a91a252017-08-04 16:34:50 -0600413config CMD_SPL_WRITE_SIZE
414 hex "Size of argument area"
415 depends on CMD_SPL
416 default 0x2000
417 help
418 This provides the size of the command-line argument area in NAND
419 flash used by Falcon-mode boot. See the documentation until CMD_SPL
420 for detail.
421
Simon Glass9b92a8d2017-08-04 16:34:57 -0600422config CMD_THOR_DOWNLOAD
423 bool "thor - TIZEN 'thor' download"
Marek Szyprowski909338c2019-10-02 12:29:08 +0200424 select DFU
Simon Glass9b92a8d2017-08-04 16:34:57 -0600425 help
426 Implements the 'thor' download protocol. This is a way of
427 downloading a software update over USB from an attached host.
428 There is no documentation about this within the U-Boot source code
429 but you should be able to find something on the interwebs.
430
Simon Glasse7a815f2017-08-04 16:35:03 -0600431config CMD_ZBOOT
432 bool "zboot - x86 boot command"
433 help
434 With x86 machines it is common to boot a bzImage file which
435 contains both a kernel and a setup.bin file. The latter includes
436 configuration information from the dark ages which x86 boards still
437 need to pick things out of.
438
439 Consider using FIT in preference to this since it supports directly
440 booting both 32- and 64-bit kernels, as well as secure boot.
441 Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
442
Simon Glass72a8cf82016-01-17 20:53:51 -0700443endmenu
444
445menu "Environment commands"
446
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500447config CMD_ASKENV
448 bool "ask for env variable"
449 help
450 Ask for environment variable
451
Simon Glass72a8cf82016-01-17 20:53:51 -0700452config CMD_EXPORTENV
453 bool "env export"
454 default y
455 help
456 Export environments.
457
458config CMD_IMPORTENV
459 bool "env import"
460 default y
461 help
462 Import environments.
463
464config CMD_EDITENV
465 bool "editenv"
466 default y
467 help
468 Edit environment variable.
469
Dinh Nguyenab8243e2016-04-21 09:05:23 -0500470config CMD_GREPENV
471 bool "search env"
472 help
473 Allow for searching environment variables
474
Simon Glass72a8cf82016-01-17 20:53:51 -0700475config CMD_SAVEENV
476 bool "saveenv"
477 default y
478 help
479 Save all environment variables into the compiled-in persistent
480 storage.
481
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200482config CMD_ERASEENV
483 bool "eraseenv"
Frank Wunderlichcd121bd2019-06-29 11:36:19 +0200484 depends on CMD_SAVEENV
485 help
486 Erase environment variables from the compiled-in persistent
487 storage.
488
Simon Glass72a8cf82016-01-17 20:53:51 -0700489config CMD_ENV_EXISTS
490 bool "env exists"
491 default y
492 help
493 Check if a variable is defined in the environment for use in
494 shell scripting.
495
Simon Glassa55d29d2017-05-17 03:25:13 -0600496config CMD_ENV_CALLBACK
497 bool "env callbacks - print callbacks and their associated variables"
498 help
499 Some environment variable have callbacks defined by
500 U_BOOT_ENV_CALLBACK. These are called when the variable changes.
501 For example changing "baudrate" adjust the serial baud rate. This
502 command lists the currently defined callbacks.
503
Simon Glassffc76582017-05-17 03:25:14 -0600504config CMD_ENV_FLAGS
505 bool "env flags -print variables that have non-default flags"
506 help
507 Some environment variables have special flags that control their
508 behaviour. For example, serial# can only be written once and cannot
509 be deleted. This command shows the variables that have special
510 flags.
511
AKASHI Takahiro49d81fd2019-02-25 15:54:36 +0900512config CMD_NVEDIT_EFI
513 bool "env [set|print] -e - set/print UEFI variables"
514 depends on EFI_LOADER
AKASHI Takahiro49d81fd2019-02-25 15:54:36 +0900515 imply HEXDUMP
516 help
517 UEFI variables are encoded as some form of U-Boot variables.
518 If enabled, we are allowed to set/print UEFI variables using
519 "env" command with "-e" option without knowing details.
520
Samuel Dionne-Rielec57bd72021-12-20 18:31:56 -0500521config CMD_NVEDIT_INDIRECT
522 bool "env indirect - Sets environment value from another"
523
Leo Ruan8e921202019-05-24 17:20:19 +0200524config CMD_NVEDIT_INFO
525 bool "env info - print or evaluate environment information"
526 help
527 Print environment information:
528 - env_valid : is environment valid
529 - env_ready : is environment imported into hash table
530 - env_use_default : is default environment used
531
532 This command can be optionally used for evaluation in scripts:
533 [-d] : evaluate whether default environment is used
534 [-p] : evaluate whether environment can be persisted
Patrick Delaunay6718ebd2020-06-19 14:03:34 +0200535 [-q] : quiet output
Leo Ruan8e921202019-05-24 17:20:19 +0200536 The result of multiple evaluations will be combined with AND.
537
Patrick Delaunay0115dd32020-07-28 11:51:20 +0200538config CMD_NVEDIT_LOAD
539 bool "env load"
540 help
541 Load all environment variables from the compiled-in persistent
542 storage.
543
Patrick Delaunaya97d22e2020-07-28 11:51:21 +0200544config CMD_NVEDIT_SELECT
545 bool "env select"
546 help
547 Select the compiled-in persistent storage of environment variables.
548
Simon Glass72a8cf82016-01-17 20:53:51 -0700549endmenu
550
551menu "Memory commands"
552
Mario Six55b25562018-03-28 14:39:18 +0200553config CMD_BINOP
554 bool "binop"
555 help
556 Compute binary operations (xor, or, and) of byte arrays of arbitrary
557 size from memory and store the result in memory or the environment.
558
Simon Glass4aed2272020-09-19 18:49:26 -0600559config CMD_BLOBLIST
560 bool "bloblist"
561 default y if BLOBLIST
562 help
563 Show information about the bloblist, a collection of binary blobs
564 held in memory that persist between SPL and U-Boot. In the case of
565 x86 devices the bloblist can be used to hold ACPI tables so that they
566 remain available in memory.
567
Simon Glass72a8cf82016-01-17 20:53:51 -0700568config CMD_CRC32
569 bool "crc32"
570 default y
Michal Simek5ed063d2018-07-23 15:55:13 +0200571 select HASH
Simon Glass72a8cf82016-01-17 20:53:51 -0700572 help
573 Compute CRC32.
574
Daniel Thompson221a9492017-05-19 17:26:58 +0100575config CRC32_VERIFY
576 bool "crc32 -v"
577 depends on CMD_CRC32
578 help
579 Add -v option to verify data against a crc32 checksum.
580
Simon Glassa1dc9802017-05-17 03:25:10 -0600581config CMD_EEPROM
582 bool "eeprom - EEPROM subsystem"
583 help
584 (deprecated, needs conversion to driver model)
585 Provides commands to read and write EEPROM (Electrically Erasable
586 Programmable Read Only Memory) chips that are connected over an
587 I2C bus.
588
589config CMD_EEPROM_LAYOUT
590 bool "Enable layout-aware eeprom commands"
591 depends on CMD_EEPROM
592 help
593 (deprecated, needs conversion to driver model)
594 When enabled, additional eeprom sub-commands become available.
595
596 eeprom print - prints the contents of the eeprom in a human-readable
597 way (eeprom layout fields, and data formatted to be fit for human
598 consumption).
599
600 eeprom update - allows user to update eeprom fields by specifying
601 the field name, and providing the new data in a human readable format
602 (same format as displayed by the eeprom print command).
603
604 Both commands can either auto detect the layout, or be told which
605 layout to use.
606
607 Feature API:
608 __weak int parse_layout_version(char *str)
609 - override to provide your own layout name parsing
610 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
611 int layout_version);
612 - override to setup the layout metadata based on the version
613 __weak int eeprom_layout_detect(unsigned char *data)
614 - override to provide your own algorithm for detecting layout
615 version
616 eeprom_field.c
617 - contains various printing and updating functions for common
618 types of eeprom fields. Can be used for defining
619 custom layouts.
620
621config EEPROM_LAYOUT_HELP_STRING
622 string "Tells user what layout names are supported"
623 depends on CMD_EEPROM_LAYOUT
624 default "<not defined>"
625 help
626 Help printed with the LAYOUT VERSIONS part of the 'eeprom'
627 command's help.
628
Tom Rini88cd7d02021-08-17 17:59:45 -0400629config SYS_I2C_EEPROM_BUS
630 int "I2C bus of the EEPROM device."
631 depends on CMD_EEPROM
632 default 0
633
634config SYS_I2C_EEPROM_ADDR_LEN
635 int "Length in bytes of the EEPROM memory array address"
636 depends on CMD_EEPROM || ID_EEPROM
637 default 1
638 range 1 2
639 help
640 Note: This is NOT the chip address length!
641
642config SYS_EEPROM_SIZE
643 depends on CMD_EEPROM
644 int "Size in bytes of the EEPROM device"
645 default 256
646
647config SYS_EEPROM_PAGE_WRITE_BITS
648 int "Number of bits used to address bytes in a single page"
649 depends on CMD_EEPROM
650 default 8
651 help
652 The EEPROM page size is 2^SYS_EEPROM_PAGE_WRITE_BITS.
653 A 64 byte page, for example would require six bits.
654
655config SYS_EEPROM_PAGE_WRITE_DELAY_MS
656 int "Number of milliseconds to delay between page writes"
657 depends on CMD_EEPROM || CMD_I2C
658 default 0
659
Simon Glassba71be52017-08-04 16:34:51 -0600660config LOOPW
661 bool "loopw"
662 help
663 Infinite write loop on address range
664
Andre Przywarabea79d72017-03-15 01:19:05 +0000665config CMD_MD5SUM
666 bool "md5sum"
Andre Przywarabea79d72017-03-15 01:19:05 +0000667 select MD5
668 help
669 Compute MD5 checksum.
670
Daniel Thompson221a9492017-05-19 17:26:58 +0100671config MD5SUM_VERIFY
Andre Przywarabea79d72017-03-15 01:19:05 +0000672 bool "md5sum -v"
Andre Przywarabea79d72017-03-15 01:19:05 +0000673 depends on CMD_MD5SUM
674 help
675 Add -v option to verify data against an MD5 checksum.
676
Simon Glassba71be52017-08-04 16:34:51 -0600677config CMD_MEMINFO
678 bool "meminfo"
Daniel Thompson221a9492017-05-19 17:26:58 +0100679 help
Simon Glassba71be52017-08-04 16:34:51 -0600680 Display memory information.
Daniel Thompson221a9492017-05-19 17:26:58 +0100681
Simon Glassba71be52017-08-04 16:34:51 -0600682config CMD_MEMORY
683 bool "md, mm, nm, mw, cp, cmp, base, loop"
684 default y
Daniel Thompson221a9492017-05-19 17:26:58 +0100685 help
Simon Glassba71be52017-08-04 16:34:51 -0600686 Memory commands.
687 md - memory display
688 mm - memory modify (auto-incrementing address)
689 nm - memory modify (constant address)
690 mw - memory write (fill)
691 cp - memory copy
692 cmp - memory compare
693 base - print or set address offset
694 loop - initialize loop on address range
Simon Glass72a8cf82016-01-17 20:53:51 -0700695
Simon Glass550a9e72020-07-28 19:41:14 -0600696config CMD_MEM_SEARCH
Simon Glassbdded202020-06-02 19:26:49 -0600697 bool "ms - Memory search"
698 help
699 Memory-search command
700
701 This allows searching through a region of memory looking for hex
702 data (byte, 16-bit word, 32-bit long, also 64-bit on machines that
703 support it). It is also possible to search for a string. The
704 command accepts a memory range and a list of values to search for.
705 The values need to appear in memory in the same order they are given
706 in the command. At most 10 matches can be returned at a time, but
707 pressing return will show the next 10 matches. Environment variables
708 are set for use with scripting (memmatches, memaddr, mempos).
709
Joel Johnson72732312020-01-29 09:17:18 -0700710config CMD_MX_CYCLIC
Adam Ford78f28772019-08-14 07:54:34 -0500711 bool "Enable cyclic md/mw commands"
712 depends on CMD_MEMORY
713 help
714 Add the "mdc" and "mwc" memory commands. These are cyclic
715 "md/mw" commands.
716 Examples:
717
718 => mdc.b 10 4 500
719 This command will print 4 bytes (10,11,12,13) each 500 ms.
720
721 => mwc.l 100 12345678 10
722 This command will write 12345678 to address 100 all 10 ms.
723
Jean-Jacques Hiblot803e1a32019-07-02 14:23:26 +0200724config CMD_RANDOM
725 bool "random"
726 default y
727 depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
728 help
729 random - fill memory with random data
730
Simon Glass72a8cf82016-01-17 20:53:51 -0700731config CMD_MEMTEST
732 bool "memtest"
733 help
734 Simple RAM read/write test.
735
Mario Sixe89f8aa2018-03-28 14:38:14 +0200736if CMD_MEMTEST
737
738config SYS_ALT_MEMTEST
739 bool "Alternative test"
740 help
741 Use a more complete alternative memory test.
742
Ralph Siemsen9989fb12020-09-09 12:10:00 -0400743if SYS_ALT_MEMTEST
744
745config SYS_ALT_MEMTEST_BITFLIP
746 bool "Bitflip test"
747 default y
748 help
749 The alternative memory test includes bitflip test since 2020.07.
750 The bitflip test significantly increases the overall test time.
751 Bitflip test can optionally be disabled here.
752
753endif
754
Ashok Reddy Soma702de892020-05-04 15:26:21 +0200755config SYS_MEMTEST_START
756 hex "default start address for mtest"
Tom Riniff27af12021-12-12 22:12:29 -0500757 default 0x0
Ashok Reddy Soma702de892020-05-04 15:26:21 +0200758 help
759 This is the default start address for mtest for simple read/write
760 test. If no arguments are given to mtest, default address is used
761 as start address.
762
763config SYS_MEMTEST_END
764 hex "default end address for mtest"
765 default 0x1000
766 help
767 This is the default end address for mtest for simple read/write
768 test. If no arguments are given to mtest, default address is used
769 as end address.
770
Mario Sixe89f8aa2018-03-28 14:38:14 +0200771endif
772
Simon Glassba71be52017-08-04 16:34:51 -0600773config CMD_SHA1SUM
774 bool "sha1sum"
775 select SHA1
Simon Glass72a8cf82016-01-17 20:53:51 -0700776 help
Simon Glassba71be52017-08-04 16:34:51 -0600777 Compute SHA1 checksum.
778
779config SHA1SUM_VERIFY
780 bool "sha1sum -v"
781 depends on CMD_SHA1SUM
782 help
783 Add -v option to verify data against a SHA1 checksum.
Simon Glass72a8cf82016-01-17 20:53:51 -0700784
Simon Glass00805d72017-08-04 16:34:52 -0600785config CMD_STRINGS
786 bool "strings - display strings in memory"
787 help
788 This works similarly to the Unix 'strings' command except that it
789 works with a memory range. String of printable characters found
790 within the range are displayed. The minimum number of characters
791 for a sequence to be considered a string can be provided.
792
Simon Glassee7c0e72017-05-17 03:25:43 -0600793endmenu
794
795menu "Compression commands"
796
797config CMD_LZMADEC
798 bool "lzmadec"
Tom Rini99e46df2017-09-29 14:32:44 -0400799 default y if CMD_BOOTI
Simon Glassee7c0e72017-05-17 03:25:43 -0600800 select LZMA
801 help
802 Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
803 image from memory.
804
Yusuke Ashidukaa1732232020-02-20 20:48:01 +0900805config CMD_UNLZ4
806 bool "unlz4"
807 default y if CMD_BOOTI
808 select LZ4
809 help
810 Support decompressing an LZ4 image from memory region.
811
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900812config CMD_UNZIP
813 bool "unzip"
Tom Rini99e46df2017-09-29 14:32:44 -0400814 default y if CMD_BOOTI
Michael Walle56c311b2020-05-22 14:07:35 +0200815 select GZIP
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900816 help
817 Uncompress a zip-compressed memory region.
818
819config CMD_ZIP
820 bool "zip"
Michael Walleeff5a542020-05-22 14:07:36 +0200821 select GZIP_COMPRESSED
Masahiro Yamadae9d33e72017-02-05 10:42:56 +0900822 help
823 Compress a memory region with zlib deflate method.
824
Simon Glass72a8cf82016-01-17 20:53:51 -0700825endmenu
826
827menu "Device access commands"
828
Simon Glass0c19b4d2017-08-04 16:34:28 -0600829config CMD_ARMFLASH
830 #depends on FLASH_CFI_DRIVER
831 bool "armflash"
832 help
833 ARM Ltd reference designs flash partition access
834
Neil Armstrong051ebe32018-04-27 15:17:57 +0200835config CMD_ADC
836 bool "adc - Access Analog to Digital Converters info and data"
837 select ADC
Michal Simek6e741cf2020-08-19 10:44:17 +0200838 depends on DM_REGULATOR
Neil Armstrong051ebe32018-04-27 15:17:57 +0200839 help
840 Shows ADC device info and permit printing one-shot analog converted
841 data from a named Analog to Digital Converter.
842
Eugeniu Roscadb7b7a02019-05-23 17:32:22 +0200843config CMD_BCB
844 bool "bcb"
845 depends on MMC
846 depends on PARTITIONS
847 help
848 Read/modify/write the fields of Bootloader Control Block, usually
849 stored on the flash "misc" partition with its structure defined in:
850 https://android.googlesource.com/platform/bootable/recovery/+/master/
851 bootloader_message/include/bootloader_message/bootloader_message.h
852
853 Some real-life use-cases include (but are not limited to):
854 - Determine the "boot reason" (and act accordingly):
855 https://source.android.com/devices/bootloader/boot-reason
856 - Get/pass a list of commands from/to recovery:
857 https://android.googlesource.com/platform/bootable/recovery
858 - Inspect/dump the contents of the BCB fields
859
Jean-Jacques Hiblot49c752c2018-08-09 16:17:46 +0200860config CMD_BIND
861 bool "bind/unbind - Bind or unbind a device to/from a driver"
862 depends on DM
863 help
864 Bind or unbind a device to/from a driver from the command line.
865 This is useful in situations where a device may be handled by several
866 drivers. For example, this can be used to bind a UDC to the usb ether
867 gadget driver from the command line.
868
Simon Glassd3156282017-04-26 22:28:02 -0600869config CMD_CLK
870 bool "clk - Show clock frequencies"
871 help
872 (deprecated)
873 Shows clock frequences by calling a sock_clk_dump() hook function.
874 This is depreated in favour of using the CLK uclass and accessing
875 clock values from associated drivers. However currently no command
876 exists for this.
877
Simon Glass72a8cf82016-01-17 20:53:51 -0700878config CMD_DEMO
879 bool "demo - Demonstration commands for driver model"
880 depends on DM
881 help
882 Provides a 'demo' command which can be used to play around with
883 driver model. To use this properly you will need to enable one or
884 both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
885 Otherwise you will always get an empty list of devices. The demo
886 devices are defined in the sandbox device tree, so the easiest
887 option is to use sandbox and pass the -d point to sandbox's
888 u-boot.dtb file.
889
Simon Glass0c19b4d2017-08-04 16:34:28 -0600890config CMD_DFU
891 bool "dfu"
Marek Vasut0f44d332018-02-16 16:41:17 +0100892 select DFU
Simon Glass0c19b4d2017-08-04 16:34:28 -0600893 help
894 Enables the command "dfu" which is used to have U-Boot create a DFU
Simon Glass00fd59d2017-08-04 16:35:06 -0600895 class device via USB. This command requires that the "dfu_alt_info"
896 environment variable be set and define the alt settings to expose to
897 the host.
Simon Glass0c19b4d2017-08-04 16:34:28 -0600898
899config CMD_DM
900 bool "dm - Access to driver model information"
901 depends on DM
Simon Glass0c19b4d2017-08-04 16:34:28 -0600902 help
903 Provides access to driver model data structures and information,
904 such as a list of devices, list of uclasses and the state of each
905 device (e.g. activated). This is not required for operation, but
906 can be useful to see the state of driver model for debugging or
907 interest.
908
Alex Kiernan312a10f2018-05-29 15:30:39 +0000909config CMD_FASTBOOT
910 bool "fastboot - Android fastboot support"
911 depends on FASTBOOT
912 help
913 This enables the command "fastboot" which enables the Android
914 fastboot mode for the platform. Fastboot is a protocol for
915 downloading images, flashing and device control used on
Alex Kiernanf73a7df2018-05-29 15:30:53 +0000916 Android devices. Fastboot requires either the network stack
917 enabled or support for acting as a USB device.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000918
Sam Protsenko586a1bf2020-01-24 17:53:44 +0200919 See doc/android/fastboot.rst for more information.
Alex Kiernan312a10f2018-05-29 15:30:39 +0000920
Simon Glass0c19b4d2017-08-04 16:34:28 -0600921config CMD_FLASH
922 bool "flinfo, erase, protect"
923 default y
Miquel Raynalff102c52019-10-25 19:39:30 +0200924 depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH
Simon Glass0c19b4d2017-08-04 16:34:28 -0600925 help
926 NOR flash support.
927 flinfo - print FLASH memory information
928 erase - FLASH memory
929 protect - enable or disable FLASH write protection
930
931config CMD_FPGA
932 bool "fpga"
Tuomas Tynkkynena4fa8112018-01-27 20:28:40 +0200933 depends on FPGA
Simon Glass0c19b4d2017-08-04 16:34:28 -0600934 default y
935 help
936 FPGA support.
937
938config CMD_FPGA_LOADBP
939 bool "fpga loadbp - load partial bitstream (Xilinx only)"
940 depends on CMD_FPGA
941 help
942 Supports loading an FPGA device from a bitstream buffer containing
943 a partial bitstream.
944
945config CMD_FPGA_LOADFS
946 bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
947 depends on CMD_FPGA
948 help
949 Supports loading an FPGA device from a FAT filesystem.
950
951config CMD_FPGA_LOADMK
952 bool "fpga loadmk - load bitstream from image"
953 depends on CMD_FPGA
954 help
955 Supports loading an FPGA device from a image generated by mkimage.
956
957config CMD_FPGA_LOADP
958 bool "fpga loadp - load partial bitstream"
959 depends on CMD_FPGA
960 help
961 Supports loading an FPGA device from a bitstream buffer containing
962 a partial bitstream.
963
Siva Durga Prasad Paladugucedd48e2018-05-31 15:10:22 +0530964config CMD_FPGA_LOAD_SECURE
965 bool "fpga loads - loads secure bitstreams (Xilinx only)"
966 depends on CMD_FPGA
967 help
968 Enables the fpga loads command which is used to load secure
969 (authenticated or encrypted or both) bitstreams on to FPGA.
970
Simon Glass0c19b4d2017-08-04 16:34:28 -0600971config CMD_FPGAD
972 bool "fpgad - dump FPGA registers"
973 help
974 (legacy, needs conversion to driver model)
975 Provides a way to dump FPGA registers by calling the board-specific
976 fpga_get_reg() function. This functions similarly to the 'md'
977 command.
978
979config CMD_FUSE
980 bool "fuse - support for the fuse subssystem"
981 help
982 (deprecated - needs conversion to driver model)
983 This allows reading, sensing, programming or overriding fuses
984 which control the behaviour of the device. The command uses the
985 fuse_...() API.
986
987config CMD_GPIO
988 bool "gpio"
989 help
990 GPIO support.
991
Pragnesh Patel9e9a5302020-12-22 11:30:05 +0530992config CMD_PWM
993 bool "pwm"
994 depends on DM_PWM
995 help
996 Control PWM channels, this allows invert/config/enable/disable PWM channels.
997
Simon Glass0c19b4d2017-08-04 16:34:28 -0600998config CMD_GPT
999 bool "GPT (GUID Partition Table) command"
Simon Glass0c19b4d2017-08-04 16:34:28 -06001000 select EFI_PARTITION
Adam Ford1811a922018-02-06 12:43:56 -06001001 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +02001002 select PARTITION_UUIDS
Maxime Ripard47738ac2017-08-24 11:52:32 +02001003 imply RANDOM_UUID
Simon Glass0c19b4d2017-08-04 16:34:28 -06001004 help
1005 Enable the 'gpt' command to ready and write GPT style partition
1006 tables.
1007
Maxime Ripard47738ac2017-08-24 11:52:32 +02001008config RANDOM_UUID
1009 bool "GPT Random UUID generation"
Adam Forda451bc22018-02-06 12:14:28 -06001010 select LIB_UUID
Maxime Ripard47738ac2017-08-24 11:52:32 +02001011 help
1012 Enable the generation of partitions with random UUIDs if none
1013 are provided.
1014
Simon Glass0c19b4d2017-08-04 16:34:28 -06001015config CMD_GPT_RENAME
1016 bool "GPT partition renaming commands"
1017 depends on CMD_GPT
1018 help
1019 Enables the 'gpt' command to interchange names on two GPT
1020 partitions via the 'gpt swap' command or to rename single
1021 partitions via the 'rename' command.
1022
Simon Glass75eb9972017-05-17 03:25:29 -06001023config CMD_IDE
1024 bool "ide - Support for IDE drivers"
Simon Glassfc843a02017-05-17 03:25:30 -06001025 select IDE
Simon Glass75eb9972017-05-17 03:25:29 -06001026 help
1027 Provides an 'ide' command which allows accessing the IDE drive,
Vagrant Cascadian1107b062021-12-21 13:06:56 -08001028 resetting the IDE interface, printing the partition table and
Simon Glass75eb9972017-05-17 03:25:29 -06001029 geting device info. It also enables the 'diskboot' command which
1030 permits booting from an IDE drive.
1031
Simon Glass594e8d12017-05-17 03:25:34 -06001032config CMD_IO
1033 bool "io - Support for performing I/O accesses"
1034 help
1035 Provides an 'iod' command to display I/O space and an 'iow' command
1036 to write values to the I/O space. This can be useful for manually
1037 checking the state of devices during boot when debugging device
1038 drivers, etc.
1039
Simon Glass7d0f5c12017-05-17 03:25:36 -06001040config CMD_IOTRACE
1041 bool "iotrace - Support for tracing I/O activity"
1042 help
1043 Provides an 'iotrace' command which supports recording I/O reads and
1044 writes in a trace buffer in memory . It also maintains a checksum
1045 of the trace records (even if space is exhausted) so that the
1046 sequence of I/O accesses can be verified.
1047
1048 When debugging drivers it is useful to see what I/O accesses were
1049 done and in what order.
1050
1051 Even if the individual accesses are of little interest it can be
1052 useful to verify that the access pattern is consistent each time
1053 an operation is performed. In this case a checksum can be used to
1054 characterise the operation of a driver. The checksum can be compared
1055 across different runs of the operation to verify that the driver is
1056 working properly.
1057
1058 In particular, when performing major refactoring of the driver, where
1059 the access pattern should not change, the checksum provides assurance
1060 that the refactoring work has not broken the driver.
1061
1062 This works by sneaking into the io.h heder for an architecture and
1063 redirecting I/O accesses through iotrace's tracing mechanism.
1064
1065 For now no commands are provided to examine the trace buffer. The
1066 format is fairly simple, so 'md' is a reasonable substitute.
1067
1068 Note: The checksum feature is only useful for I/O regions where the
1069 contents do not change outside of software control. Where this is not
1070 suitable you can fall back to manually comparing the addresses. It
1071 might be useful to enhance tracing to only checksum the accesses and
1072 not the data read/written.
1073
Simon Glass0c19b4d2017-08-04 16:34:28 -06001074config CMD_I2C
1075 bool "i2c"
1076 help
1077 I2C support.
1078
Eugen Hristevd05266f2018-09-18 10:35:33 +03001079config CMD_W1
1080 depends on W1
1081 default y if W1
1082 bool "w1 - Support for Dallas 1-Wire protocol"
1083 help
1084 Dallas 1-wire protocol support
1085
Simon Glass72a8cf82016-01-17 20:53:51 -07001086config CMD_LOADB
1087 bool "loadb"
1088 default y
1089 help
1090 Load a binary file over serial line.
1091
1092config CMD_LOADS
1093 bool "loads"
1094 default y
1095 help
1096 Load an S-Record file over serial line
1097
Niel Fouriee3697902020-03-30 17:22:58 +02001098config CMD_LSBLK
1099 depends on BLK
1100 bool "lsblk - list block drivers and devices"
1101 help
1102 Print list of available block device drivers, and for each, the list
1103 of known block devices.
1104
Marek Szyprowski750c5432020-12-23 13:55:15 +01001105config CMD_MBR
1106 bool "MBR (Master Boot Record) command"
1107 select DOS_PARTITION
1108 select HAVE_BLOCK_DEVICE
1109 help
1110 Enable the 'mbr' command to ready and write MBR (Master Boot Record)
1111 style partition tables.
1112
Bin Meng3bc0db12020-10-14 14:34:52 +08001113config CMD_MISC
1114 bool "misc"
1115 depends on MISC
1116 help
1117 Enable the command "misc" for accessing miscellaneous devices with
1118 a MISC uclass driver. The command provides listing all MISC devices
1119 as well as read and write functionalities via their drivers.
1120
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001121config CMD_MMC
1122 bool "mmc"
Heinrich Schuchardtec611872021-03-27 11:43:54 +01001123 depends on MMC
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001124 help
1125 MMC memory mapped support.
1126
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001127if CMD_MMC
1128
1129config CMD_BKOPS_ENABLE
1130 bool "mmc bkops enable"
1131 depends on CMD_MMC
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001132 help
1133 Enable command for setting manual background operations handshake
1134 on a eMMC device. The feature is optionally available on eMMC devices
1135 conforming to standard >= 4.41.
1136
Alex Kiernan5a7b11e2018-05-08 04:43:31 +00001137config CMD_MMC_RPMB
1138 bool "Enable support for RPMB in the mmc command"
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001139 depends on SUPPORT_EMMC_RPMB
Alex Kiernan5a7b11e2018-05-08 04:43:31 +00001140 help
1141 Enable the commands for reading, writing and programming the
1142 key for the Replay Protection Memory Block partition in eMMC.
1143
Alex Kiernanc232d142018-05-29 15:30:52 +00001144config CMD_MMC_SWRITE
1145 bool "mmc swrite"
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001146 depends on MMC_WRITE
Alex Kiernanc232d142018-05-29 15:30:52 +00001147 select IMAGE_SPARSE
1148 help
1149 Enable support for the "mmc swrite" command to write Android sparse
1150 images to eMMC.
1151
Heinrich Schuchardt453d2132020-03-31 17:39:28 +00001152endif
1153
John Chau4a4830c2020-07-02 12:01:21 +08001154config CMD_CLONE
1155 bool "clone"
1156 depends on BLK
1157 help
1158 Enable storage cloning over block devices, useful for
1159 initial flashing by external block device without network
1160 or usb support.
1161
Ruchika Guptabcc6c572020-10-23 13:39:33 +05301162config CMD_OPTEE_RPMB
1163 bool "Enable read/write support on RPMB via OPTEE"
1164 depends on SUPPORT_EMMC_RPMB && OPTEE
1165 help
1166 Enable the commands for reading, writing persistent named values
1167 in the Replay Protection Memory Block partition in eMMC by
1168 using Persistent Objects in OPTEE
1169
Miquel Raynal5db66b32018-09-29 12:58:28 +02001170config CMD_MTD
1171 bool "mtd"
Miquel Raynalff102c52019-10-25 19:39:30 +02001172 depends on MTD
Miquel Raynal5db66b32018-09-29 12:58:28 +02001173 select MTD_PARTITIONS
1174 help
1175 MTD commands support.
1176
Pratyush Yadav05115ab2020-10-16 16:16:35 +05301177config CMD_MUX
1178 bool "mux"
1179 depends on MULTIPLEXER
1180 help
1181 List, select, and deselect mux controllers on the fly.
1182
Simon Glass72a8cf82016-01-17 20:53:51 -07001183config CMD_NAND
1184 bool "nand"
Maxime Ripard522c2822017-03-03 15:13:30 +01001185 default y if NAND_SUNXI
Miquel Raynalff102c52019-10-25 19:39:30 +02001186 depends on MTD_RAW_NAND
Simon Glass72a8cf82016-01-17 20:53:51 -07001187 help
1188 NAND support.
1189
Boris Brezillone915d202017-02-27 18:22:07 +01001190if CMD_NAND
1191config CMD_NAND_TRIMFFS
1192 bool "nand write.trimffs"
Hans de Goeded482a8d2017-02-27 18:22:10 +01001193 default y if ARCH_SUNXI
Boris Brezillone915d202017-02-27 18:22:07 +01001194 help
1195 Allows one to skip empty pages when flashing something on a NAND.
1196
1197config CMD_NAND_LOCK_UNLOCK
1198 bool "nand lock/unlock"
1199 help
1200 NAND locking support.
1201
1202config CMD_NAND_TORTURE
1203 bool "nand torture"
1204 help
1205 NAND torture support.
1206
1207endif # CMD_NAND
1208
Zhikang Zhang0adc38b2017-08-03 02:30:59 -07001209config CMD_NVME
1210 bool "nvme"
1211 depends on NVME
1212 default y if NVME
1213 help
1214 NVM Express device support
1215
Simon Glass978f0852017-08-04 16:34:31 -06001216config CMD_ONENAND
1217 bool "onenand - access to onenand device"
Miquel Raynalff102c52019-10-25 19:39:30 +02001218 depends on MTD
Simon Glass978f0852017-08-04 16:34:31 -06001219 help
1220 OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1221 various useful features. This command allows reading, writing,
1222 and erasing blocks. It allso provides a way to show and change
1223 bad blocks, and test the device.
1224
Mario Six3bf65cb2018-09-27 09:19:34 +02001225config CMD_OSD
1226 bool "osd"
1227 help
1228 Enable the 'osd' command which allows to query information from and
1229 write text data to a on-screen display (OSD) device; a virtual device
1230 associated with a display capable of displaying a text overlay on the
1231 display it's associated with..
1232
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001233config CMD_PART
1234 bool "part"
Adam Ford1811a922018-02-06 12:43:56 -06001235 select HAVE_BLOCK_DEVICE
Michal Simek5ed063d2018-07-23 15:55:13 +02001236 select PARTITION_UUIDS
Patrick Delaunayb331cd62017-01-27 11:00:42 +01001237 help
1238 Read and display information about the partition table on
1239 various media.
1240
Simon Glass6500ec72017-08-04 16:34:34 -06001241config CMD_PCI
1242 bool "pci - Access PCI devices"
1243 help
1244 Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1245 used on some devices to allow the CPU to communicate with its
1246 peripherals. Sub-commands allow bus enumeration, displaying and
1247 changing configuration space and a few other features.
1248
Patrice Chotardd5a83132018-10-24 14:10:17 +02001249config CMD_PINMUX
1250 bool "pinmux - show pins muxing"
Marek Behúna70abcf2021-02-09 21:23:47 +01001251 depends on PINCTRL
Patrice Chotardd5a83132018-10-24 14:10:17 +02001252 default y if PINCTRL
1253 help
1254 Parse all available pin-controllers and show pins muxing. This
1255 is useful for debug purpoer to check the pin muxing and to know if
1256 a pin is configured as a GPIO or as an alternate function.
1257
Adam Ford577c40a2018-09-09 07:05:57 -05001258config CMD_POWEROFF
1259 bool "poweroff"
1260 help
1261 Poweroff/Shutdown the system
1262
Simon Glassb75dfd22017-08-04 16:34:39 -06001263config CMD_READ
1264 bool "read - Read binary data from a partition"
1265 help
1266 Provides low-level access to the data in a partition.
1267
Simon Glass72a8cf82016-01-17 20:53:51 -07001268config CMD_REMOTEPROC
1269 bool "remoteproc"
1270 depends on REMOTEPROC
1271 help
1272 Support for Remote Processor control
1273
Simon Glass3bf926c2017-06-14 21:28:24 -06001274config CMD_SATA
1275 bool "sata - Access SATA subsystem"
Simon Glass10e40d52017-06-14 21:28:25 -06001276 select SATA
Simon Glass3bf926c2017-06-14 21:28:24 -06001277 help
1278 SATA (Serial Advanced Technology Attachment) is a serial bus
1279 standard for connecting to hard drives and other storage devices.
1280 This command provides information about attached devices and allows
1281 reading, writing and other operations.
1282
1283 SATA replaces PATA (originally just ATA), which stands for Parallel AT
1284 Attachment, where AT refers to an IBM AT (Advanced Technology)
1285 computer released in 1984.
1286
Simon Glass15dc63d2017-08-04 16:34:43 -06001287config CMD_SAVES
1288 bool "saves - Save a file over serial in S-Record format"
1289 help
1290 Provides a way to save a binary file using the Motorola S-Record
1291 format over the serial line.
1292
Heinrich Schuchardt0c3fecd2018-02-14 08:05:44 +01001293config CMD_SCSI
1294 bool "scsi - Access to SCSI devices"
1295 default y if SCSI
1296 help
1297 This provides a 'scsi' command which provides access to SCSI (Small
1298 Computer System Interface) devices. The command provides a way to
1299 scan the bus, reset the bus, read and write data and get information
1300 about devices.
1301
Simon Glassefce2442017-08-04 16:34:45 -06001302config CMD_SDRAM
1303 bool "sdram - Print SDRAM configuration information"
1304 help
1305 Provides information about attached SDRAM. This assumed that the
1306 SDRAM has an EEPROM with information that can be read using the
1307 I2C bus. This is only available on some boards.
1308
Simon Glass0c19b4d2017-08-04 16:34:28 -06001309config CMD_SF
1310 bool "sf"
Tom Rinia4298dd2019-05-29 17:01:28 -04001311 depends on DM_SPI_FLASH || SPI_FLASH
Jagan Tekic2af7fb2019-10-16 17:59:42 +05301312 default y if DM_SPI_FLASH
Simon Glass0c19b4d2017-08-04 16:34:28 -06001313 help
1314 SPI Flash support
1315
Simon Glass719d36e2017-08-04 16:34:46 -06001316config CMD_SF_TEST
1317 bool "sf test - Allow testing of SPI flash"
Tom Rinia4298dd2019-05-29 17:01:28 -04001318 depends on CMD_SF
Simon Glass719d36e2017-08-04 16:34:46 -06001319 help
1320 Provides a way to test that SPI flash is working correctly. The
1321 test is destructive, in that an area of SPI flash must be provided
1322 for the test to use. Performance information is also provided,
1323 measuring the performance of reading, writing and erasing in
1324 Mbps (Million Bits Per Second). This value should approximately
1325 equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1326 everything is working properly.
1327
Simon Glass0c19b4d2017-08-04 16:34:28 -06001328config CMD_SPI
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001329 bool "sspi - Command to access spi device"
Tom Rinia4298dd2019-05-29 17:01:28 -04001330 depends on SPI
Simon Glass0c19b4d2017-08-04 16:34:28 -06001331 help
1332 SPI utility command.
1333
Patrick Delaunayc95e6322019-02-27 15:20:37 +01001334config DEFAULT_SPI_BUS
1335 int "default spi bus used by sspi command"
1336 depends on CMD_SPI
1337 default 0
1338
1339config DEFAULT_SPI_MODE
1340 hex "default spi mode used by sspi command (see include/spi.h)"
1341 depends on CMD_SPI
1342 default 0
1343
Simon Glass5605aa82017-08-04 16:35:00 -06001344config CMD_TSI148
1345 bool "tsi148 - Command to access tsi148 device"
1346 help
1347 This provides various sub-commands to initialise and configure the
1348 Turndra tsi148 device. See the command help for full details.
1349
Faiz Abbasa539c8b2019-10-15 18:24:40 +05301350config CMD_UFS
1351 bool "Enable UFS - Universal Flash Subsystem commands"
1352 depends on UFS
1353 help
1354 "This provides commands to initialise and configure universal flash
1355 subsystem devices"
1356
Simon Glass2a242e32017-08-04 16:35:01 -06001357config CMD_UNIVERSE
1358 bool "universe - Command to set up the Turndra Universe controller"
1359 help
1360 This allows setting up the VMEbus provided by this controller.
1361 See the command help for full details.
1362
Simon Glass0c19b4d2017-08-04 16:34:28 -06001363config CMD_USB
1364 bool "usb"
Tom Rinie8d3eaa2021-07-09 10:11:55 -04001365 depends on USB_HOST
Adam Ford1811a922018-02-06 12:43:56 -06001366 select HAVE_BLOCK_DEVICE
Simon Glass0c19b4d2017-08-04 16:34:28 -06001367 help
1368 USB support.
1369
Stefan Agner2f005692017-08-16 11:00:53 -07001370config CMD_USB_SDP
1371 bool "sdp"
1372 select USB_FUNCTION_SDP
1373 help
1374 Enables the command "sdp" which is used to have U-Boot emulating the
1375 Serial Download Protocol (SDP) via USB.
Michal Simek6e7bdde2018-07-23 15:55:12 +02001376
Eddie Cai453c95e2017-12-15 08:17:11 +08001377config CMD_ROCKUSB
1378 bool "rockusb"
1379 depends on USB_FUNCTION_ROCKUSB
1380 help
Michal Simek6e7bdde2018-07-23 15:55:12 +02001381 Rockusb protocol is widely used by Rockchip SoC based devices. It can
Eddie Cai453c95e2017-12-15 08:17:11 +08001382 read/write info, image to/from devices. This enable rockusb command
1383 support to communication with rockusb device. for more detail about
1384 this command, please read doc/README.rockusb.
Stefan Agner2f005692017-08-16 11:00:53 -07001385
Simon Glass0c19b4d2017-08-04 16:34:28 -06001386config CMD_USB_MASS_STORAGE
1387 bool "UMS usb mass storage"
Tom Rini123dc512021-05-22 08:47:16 -04001388 depends on USB_GADGET_DOWNLOAD
Lukasz Majewskie4d46042018-01-29 19:28:02 +01001389 select USB_FUNCTION_MASS_STORAGE
Patrick Delaunay6b8d9c92021-06-04 18:51:46 +02001390 depends on BLK && USB_GADGET
Simon Glass0c19b4d2017-08-04 16:34:28 -06001391 help
Patrick Delaunay6b8d9c92021-06-04 18:51:46 +02001392 Enables the command "ums" and the USB mass storage support to the
1393 export a block device: U-Boot, the USB device, acts as a simple
1394 external hard drive plugged on the host USB port.
Simon Glass0c19b4d2017-08-04 16:34:28 -06001395
Anastasiia Lukianenko722bc5b2020-08-06 12:42:55 +03001396config CMD_PVBLOCK
1397 bool "Xen para-virtualized block device"
1398 depends on XEN
1399 select PVBLOCK
1400 help
1401 Xen para-virtualized block device support
1402
Tuomas Tynkkynen78e12902018-10-15 02:21:12 -07001403config CMD_VIRTIO
1404 bool "virtio"
1405 depends on VIRTIO
Bin Meng05173ec2021-02-25 17:22:45 +08001406 depends on HAVE_BLOCK_DEVICE
Tuomas Tynkkynen78e12902018-10-15 02:21:12 -07001407 default y if VIRTIO
1408 help
1409 VirtIO block device support
1410
Michael Walle82a00be2019-04-06 02:24:02 +02001411config CMD_WDT
1412 bool "wdt"
1413 depends on WDT
1414 help
1415 This provides commands to control the watchdog timer devices.
1416
Mario Six37c4a5f2018-08-09 14:51:21 +02001417config CMD_AXI
1418 bool "axi"
1419 depends on AXI
1420 help
1421 Enable the command "axi" for accessing AXI (Advanced eXtensible
1422 Interface) busses, a on-chip interconnect specification for managing
1423 functional blocks in SoC designs, which is also often used in designs
1424 involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs).
Simon Glass72a8cf82016-01-17 20:53:51 -07001425endmenu
1426
1427
1428menu "Shell scripting commands"
1429
1430config CMD_ECHO
1431 bool "echo"
1432 default y
1433 help
1434 Echo args to console
1435
1436config CMD_ITEST
1437 bool "itest"
1438 default y
1439 help
1440 Return true/false on integer compare.
1441
1442config CMD_SOURCE
1443 bool "source"
1444 default y
1445 help
1446 Run script from memory
1447
1448config CMD_SETEXPR
1449 bool "setexpr"
1450 default y
1451 help
1452 Evaluate boolean and math expressions and store the result in an env
1453 variable.
1454 Also supports loading the value at a memory location into a variable.
1455 If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1456
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +00001457config CMD_SETEXPR_FMT
1458 bool "setexpr_fmt"
Roland Gaudigf4f8d8b2021-07-23 12:29:21 +00001459 depends on CMD_SETEXPR
1460 help
1461 Evaluate format string expression and store result in an environment
1462 variable.
1463
Simon Glass72a8cf82016-01-17 20:53:51 -07001464endmenu
1465
Ruslan Trofymenko17030c72019-07-05 15:37:33 +03001466menu "Android support commands"
1467
1468config CMD_AB_SELECT
1469 bool "ab_select"
Ruslan Trofymenko17030c72019-07-05 15:37:33 +03001470 depends on ANDROID_AB
1471 help
1472 On Android devices with more than one boot slot (multiple copies of
1473 the kernel and system images) this provides a command to select which
1474 slot should be used to boot from and register the boot attempt. This
1475 is used by the new A/B update model where one slot is updated in the
1476 background while running from the other slot.
1477
1478endmenu
1479
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001480if NET
1481
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001482menuconfig CMD_NET
1483 bool "Network commands"
1484 default y
Adam Fordd7869b212018-07-20 23:03:57 -05001485 imply NETDEVICES
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001486
1487if CMD_NET
1488
1489config CMD_BOOTP
1490 bool "bootp"
Simon Glass72a8cf82016-01-17 20:53:51 -07001491 default y
1492 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001493 bootp - boot image via network using BOOTP/TFTP protocol
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001494
Joe Hershbergere88b2562018-04-13 15:26:33 -05001495config CMD_DHCP
1496 bool "dhcp"
1497 depends on CMD_BOOTP
1498 help
1499 Boot image via network using DHCP/TFTP protocol
1500
Tom Rinia542e432022-02-25 11:19:50 -05001501config BOOTP_MAY_FAIL
1502 bool "Allow for the BOOTP/DHCP server to not be found"
1503 depends on CMD_BOOTP
1504 help
1505 If the DHCP server is not found after the configured retry count, the
1506 call will fail instead of starting over. This can be used to fail
1507 over to Link-local IP address configuration if the DHCP server is not
1508 available.
1509
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001510config BOOTP_BOOTPATH
Joe Hershberger8df69d92018-04-13 15:26:34 -05001511 bool "Request & store 'rootpath' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001512 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001513 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001514 help
1515 Even though the config is called BOOTP_BOOTPATH, it stores the
1516 path in the variable 'rootpath'.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001517
Tom Rinia542e432022-02-25 11:19:50 -05001518config BOOTP_VENDOREX
1519 bool "Support vendor extensions from BOOTP/DHCP server"
1520 depends on CMD_BOOTP
1521
1522config BOOTP_BOOTFILESIZE
1523 bool "Request & store 'bootfilesize' from BOOTP/DHCP server"
1524 depends on CMD_BOOTP
1525
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001526config BOOTP_DNS
Joe Hershberger8df69d92018-04-13 15:26:34 -05001527 bool "Request & store 'dnsip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001528 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001529 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001530 help
1531 The primary DNS server is stored as 'dnsip'. If two servers are
1532 returned, you must set BOOTP_DNS2 to store that second server IP
1533 also.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001534
Joe Hershberger80449c02018-04-13 15:26:35 -05001535config BOOTP_DNS2
1536 bool "Store 'dnsip2' from BOOTP/DHCP server"
1537 depends on BOOTP_DNS
1538 help
1539 If a DHCP client requests the DNS server IP from a DHCP server,
1540 it is possible that more than one DNS serverip is offered to the
1541 client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1542 server IP will be stored in the additional environment
1543 variable "dnsip2". The first DNS serverip is always
1544 stored in the variable "dnsip", when BOOTP_DNS is defined.
1545
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001546config BOOTP_GATEWAY
Joe Hershberger8df69d92018-04-13 15:26:34 -05001547 bool "Request & store 'gatewayip' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001548 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001549 depends on CMD_BOOTP
1550
1551config BOOTP_HOSTNAME
Joe Hershberger8df69d92018-04-13 15:26:34 -05001552 bool "Request & store 'hostname' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001553 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001554 depends on CMD_BOOTP
Joe Hershberger8df69d92018-04-13 15:26:34 -05001555 help
1556 The name may or may not be qualified with the local domain name.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001557
Alexander Grafbdce3402018-06-15 10:29:28 +02001558config BOOTP_PREFER_SERVERIP
1559 bool "serverip variable takes precedent over DHCP server IP."
1560 depends on CMD_BOOTP
1561 help
1562 By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1563
1564 With this option enabled, the 'serverip' variable in the environment
1565 takes precedence over DHCP server IP and will only be set by the DHCP
1566 server if not already set in the environment.
1567
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001568config BOOTP_SUBNETMASK
Joe Hershberger8df69d92018-04-13 15:26:34 -05001569 bool "Request & store 'netmask' from BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001570 default y
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001571 depends on CMD_BOOTP
1572
Tom Rinia542e432022-02-25 11:19:50 -05001573config BOOTP_NISDOMAIN
1574 bool "Request & store 'nisdomain' from BOOTP/DHCP server"
1575 depends on CMD_BOOTP
1576
Chris Packham9b23c732018-05-03 20:19:02 +12001577config BOOTP_NTPSERVER
1578 bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1579 depends on CMD_BOOTP
1580
Tom Rinia542e432022-02-25 11:19:50 -05001581config BOOTP_TIMEOFFSET
1582 bool "Request & store 'timeoffset' from BOOTP/DHCP server"
1583 depends on CMD_BOOTP && CMD_SNTP
1584
Ramon Fried3eaac632019-07-18 21:43:30 +03001585config CMD_PCAP
1586 bool "pcap capture"
1587 help
1588 Selecting this will allow capturing all Ethernet packets and store
1589 them in physical memory in a PCAP formated file,
1590 later to be analyzed by PCAP reader application (IE. WireShark).
1591
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001592config BOOTP_PXE
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001593 bool "Send PXE client arch to BOOTP/DHCP server"
Joe Hershberger3dfbc532018-04-13 15:26:37 -05001594 default y
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001595 depends on CMD_BOOTP && CMD_PXE
1596 help
1597 Supported for ARM, ARM64, and x86 for now.
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001598
1599config BOOTP_PXE_CLIENTARCH
1600 hex
Joe Hershberger2b9f4862018-04-13 15:26:36 -05001601 depends on BOOTP_PXE
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001602 default 0x16 if ARM64
1603 default 0x15 if ARM
1604 default 0 if X86
1605
1606config BOOTP_VCI_STRING
1607 string
1608 depends on CMD_BOOTP
Michal Simek4bbd6b12018-04-26 18:21:29 +05301609 default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001610 default "U-Boot.armv8" if ARM64
1611 default "U-Boot.arm" if ARM
1612 default "U-Boot"
1613
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001614config CMD_TFTPBOOT
1615 bool "tftpboot"
1616 default y
1617 help
Simon Glass72a8cf82016-01-17 20:53:51 -07001618 tftpboot - boot image via network using TFTP protocol
1619
1620config CMD_TFTPPUT
1621 bool "tftp put"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001622 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001623 help
1624 TFTP put command, for uploading files to a server
1625
1626config CMD_TFTPSRV
1627 bool "tftpsrv"
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001628 depends on CMD_TFTPBOOT
Simon Glass72a8cf82016-01-17 20:53:51 -07001629 help
1630 Act as a TFTP server and boot the first received file
1631
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001632config NET_TFTP_VARS
1633 bool "Control TFTP timeout and count through environment"
1634 depends on CMD_TFTPBOOT
1635 default y
1636 help
1637 If set, allows controlling the TFTP timeout through the
1638 environment variable tftptimeout, and the TFTP maximum
1639 timeout count through the variable tftptimeoutcountmax.
1640 If unset, timeout and maximum are hard-defined as 1 second
1641 and 10 timouts per TFTP transfer.
1642
Simon Glass72a8cf82016-01-17 20:53:51 -07001643config CMD_RARP
1644 bool "rarpboot"
1645 help
1646 Boot image via network using RARP/TFTP protocol
1647
Simon Glass72a8cf82016-01-17 20:53:51 -07001648config CMD_NFS
1649 bool "nfs"
1650 default y
1651 help
1652 Boot image via network using NFS protocol.
1653
Tom Rinieeda7622022-03-11 09:12:05 -05001654config NFS_TIMEOUT
1655 int "Timeout in milliseconds for NFS mounts"
1656 depends on CMD_NFS
1657 default 2000
1658 help
1659 Timeout in milliseconds used in NFS protocol. If you encounter
1660 "ERROR: Cannot umount" in nfs command, try longer timeout such as
1661 10000.
1662
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001663config CMD_MII
1664 bool "mii"
Ramon Fried7d9701d2019-09-13 18:25:03 +03001665 imply CMD_MDIO
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001666 help
Ramon Fried7d9701d2019-09-13 18:25:03 +03001667 If set, allows 802.3(clause 22) MII Management functions interface access
1668 The management interface specified in Clause 22 provides
1669 a simple, two signal, serial interface to connect a
1670 Station Management entity and a managed PHY for providing access
1671 to management parameters and services.
1672 The interface is referred to as the MII management interface.
1673
Tom Rinicc386f12022-03-18 08:38:27 -04001674config MII_INIT
1675 bool "Call mii_init() in the mii command"
1676 depends on CMD_MII && (MPC8XX_FEC || FSLDMAFE || MCFFEC)
1677
Ramon Fried7d9701d2019-09-13 18:25:03 +03001678config CMD_MDIO
1679 bool "mdio"
1680 depends on PHYLIB
1681 help
1682 If set, allows Enable 802.3(clause 45) MDIO interface registers access
1683 The MDIO interface is orthogonal to the MII interface and extends
1684 it by adding access to more registers through indirect addressing.
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001685
Simon Glass72a8cf82016-01-17 20:53:51 -07001686config CMD_PING
1687 bool "ping"
1688 help
1689 Send ICMP ECHO_REQUEST to network host
1690
1691config CMD_CDP
1692 bool "cdp"
1693 help
1694 Perform CDP network configuration
1695
1696config CMD_SNTP
1697 bool "sntp"
Philippe Reynes912ece42020-09-18 14:13:02 +02001698 select PROT_UDP
Simon Glass72a8cf82016-01-17 20:53:51 -07001699 help
1700 Synchronize RTC via network
1701
1702config CMD_DNS
1703 bool "dns"
1704 help
1705 Lookup the IP of a hostname
1706
1707config CMD_LINK_LOCAL
1708 bool "linklocal"
Joe Hershberger6f0dc0c2018-04-30 12:45:22 -05001709 select LIB_RAND
Simon Glass72a8cf82016-01-17 20:53:51 -07001710 help
1711 Acquire a network IP address using the link-local protocol
1712
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001713endif
1714
Simon Glassef072202017-05-17 03:25:17 -06001715config CMD_ETHSW
1716 bool "ethsw"
1717 help
1718 Allow control of L2 Ethernet switch commands. These are supported
1719 by the vsc9953 Ethernet driver at present. Sub-commands allow
1720 operations such as enabling / disabling a port and
1721 viewing/maintaining the filtering database (FDB)
1722
Joe Hershberger92fa44d2018-04-13 15:26:32 -05001723config CMD_PXE
1724 bool "pxe"
1725 select MENU
1726 help
1727 Boot image via network using PXE protocol
Michal Simek3b3ea2c2018-02-26 16:01:02 +01001728
Lothar Feltend8970da2018-06-22 22:29:54 +02001729config CMD_WOL
1730 bool "wol"
1731 help
1732 Wait for wake-on-lan Magic Packet
1733
Joe Hershbergerd7a45ea2018-04-13 15:26:30 -05001734endif
Simon Glass72a8cf82016-01-17 20:53:51 -07001735
1736menu "Misc commands"
1737
Simon Glass0f710252017-04-26 22:27:55 -06001738config CMD_BMP
1739 bool "Enable 'bmp' command"
1740 depends on LCD || DM_VIDEO || VIDEO
1741 help
Andrius Å tikonas60a9aeb2019-09-23 22:43:41 +01001742 This provides a way to obtain information about a BMP-format image
Simon Glass0f710252017-04-26 22:27:55 -06001743 and to display it. BMP (which presumably stands for BitMaP) is a
1744 file format defined by Microsoft which supports images of various
1745 depths, formats and compression methods. Headers on the file
1746 determine the formats used. This command can be used by first loading
1747 the image into RAM, then using this command to look at it or display
1748 it.
1749
Alex Kiernanb11ed7d2018-05-12 05:49:47 +00001750config CMD_BOOTCOUNT
1751 bool "bootcount"
1752 depends on BOOTCOUNT_LIMIT
1753 help
1754 Enable the bootcount command, which allows interrogation and
1755 reset of the bootcounter.
1756
Simon Glass4893e342017-04-26 22:27:56 -06001757config CMD_BSP
1758 bool "Enable board-specific commands"
1759 help
1760 (deprecated: instead, please define a Kconfig option for each command)
1761
1762 Some boards have board-specific commands which are only enabled
1763 during developemnt and need to be turned off for production. This
1764 option provides a way to control this. The commands that are enabled
1765 vary depending on the board.
1766
Eric Nelsone40cf342016-03-28 10:05:44 -07001767config CMD_BLOCK_CACHE
1768 bool "blkcache - control and stats for block cache"
1769 depends on BLOCK_CACHE
1770 default y if BLOCK_CACHE
1771 help
1772 Enable the blkcache command, which can be used to control the
1773 operation of the cache functions.
1774 This is most useful when fine-tuning the operation of the cache
1775 during development, but also allows the cache to be disabled when
1776 it might hurt performance (e.g. when using the ums command).
1777
Philippe Reynes325141a2020-07-24 18:19:47 +02001778config CMD_BUTTON
1779 bool "button"
1780 depends on BUTTON
1781 default y if BUTTON
1782 help
1783 Enable the 'button' command which allows to get the status of
1784 buttons supported by the board. The buttonss can be listed with
1785 'button list' and state can be known with 'button <label>'.
1786 Any button drivers can be controlled with this command, e.g.
1787 button_gpio.
1788
Dinh Nguyenab8243e2016-04-21 09:05:23 -05001789config CMD_CACHE
1790 bool "icache or dcache"
1791 help
1792 Enable the "icache" and "dcache" commands
1793
Heinrich Schuchardt29cfc092018-09-07 19:43:11 +02001794config CMD_CONITRACE
1795 bool "conitrace - trace console input codes"
1796 help
1797 Enable the 'conitrace' command which displays the codes received
1798 from the console input as hexadecimal numbers.
1799
Anatolij Gustschin4e92e602018-12-01 10:47:20 +01001800config CMD_CLS
1801 bool "Enable clear screen command 'cls'"
Simon Glass1fa43ca2022-01-23 07:04:08 -07001802 depends on DM_VIDEO || LCD || VIDEO
Anatolij Gustschin4e92e602018-12-01 10:47:20 +01001803 default y if LCD
1804 help
1805 Enable the 'cls' command which clears the screen contents
1806 on video frame buffer.
1807
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001808config CMD_EFIDEBUG
1809 bool "efidebug - display/configure UEFI environment"
1810 depends on EFI_LOADER
Heinrich Schuchardt64b5ba42019-05-11 09:53:33 +02001811 select EFI_DEVICE_PATH_TO_TEXT
AKASHI Takahiro59df7e72019-02-25 15:54:38 +09001812 help
1813 Enable the 'efidebug' command which provides a subset of UEFI
1814 shell utility with simplified functionality. It will be useful
1815 particularly for managing boot parameters as well as examining
1816 various EFI status for debugging.
1817
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001818config CMD_EXCEPTION
1819 bool "exception - raise exception"
Heinrich Schuchardt3a5ec032020-11-12 00:29:57 +01001820 depends on ARM || RISCV || SANDBOX || X86
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001821 help
1822 Enable the 'exception' command which allows to raise an exception.
1823
Simon Glassffe20522017-04-10 11:34:59 -06001824config CMD_LED
1825 bool "led"
Jan Kiszka2ab6e742019-01-03 09:08:42 +01001826 depends on LED
Simon Glassffe20522017-04-10 11:34:59 -06001827 default y if LED
1828 help
1829 Enable the 'led' command which allows for control of LEDs supported
1830 by the board. The LEDs can be listed with 'led list' and controlled
1831 with led on/off/togle/blink. Any LED drivers can be controlled with
1832 this command, e.g. led_gpio.
1833
Chris Packhamc9032ce2017-04-29 15:20:28 +12001834config CMD_DATE
1835 bool "date"
1836 default y if DM_RTC
AKASHI Takahiro05429b62019-11-13 09:44:49 +09001837 select LIB_DATE
Chris Packhamc9032ce2017-04-29 15:20:28 +12001838 help
1839 Enable the 'date' command for getting/setting the time/date in RTC
1840 devices.
1841
Rasmus Villemoes803a8592020-07-06 22:01:15 +02001842config CMD_RTC
1843 bool "rtc"
1844 depends on DM_RTC
1845 help
1846 Enable the 'rtc' command for low-level access to RTC devices.
1847
Simon Glass72a8cf82016-01-17 20:53:51 -07001848config CMD_TIME
1849 bool "time"
1850 help
1851 Run commands and summarize execution time.
1852
Simon Glassd91a9d72017-05-17 03:25:23 -06001853config CMD_GETTIME
1854 bool "gettime - read elapsed time"
1855 help
1856 Enable the 'gettime' command which reads the elapsed time since
1857 U-Boot started running. This shows the time in seconds and
1858 milliseconds. See also the 'bootstage' command which provides more
1859 flexibility for boot timing.
1860
Heinrich Schuchardt4f24ac02019-12-24 22:17:37 +01001861config CMD_RNG
1862 bool "rng command"
1863 depends on DM_RNG
1864 select HEXDUMP
1865 help
1866 Print bytes from the hardware random number generator.
1867
Chris Morganfe3dde32021-08-25 11:22:57 -05001868config CMD_KASLRSEED
1869 bool "kaslrseed"
1870 depends on DM_RNG
1871 help
1872 Set the kaslr-seed in the chosen node with entropy provided by a
1873 hardware random number generator.
1874
Bin Meng16060852020-10-13 18:45:05 +08001875config CMD_SLEEP
Simon Glass72a8cf82016-01-17 20:53:51 -07001876 bool "sleep"
1877 default y
1878 help
1879 Delay execution for some time
1880
Ashok Reddy Soma480245c2022-01-17 10:16:50 +01001881config CMD_MP
1882 bool "support for multiprocessor commands"
1883 depends on MP
1884 default y
Siva Durga Prasad Paladugu0fd2290c2018-06-19 12:24:23 +02001885 help
Ashok Reddy Soma480245c2022-01-17 10:16:50 +01001886 This enables commands to bringup different processors
1887 in multiprocessor cases.
Siva Durga Prasad Paladugu0fd2290c2018-06-19 12:24:23 +02001888
Simon Glass72a8cf82016-01-17 20:53:51 -07001889config CMD_TIMER
1890 bool "timer"
1891 help
1892 Access the system timer.
1893
Simon Glass72a8cf82016-01-17 20:53:51 -07001894config CMD_SOUND
1895 bool "sound"
1896 depends on SOUND
1897 help
1898 This provides basic access to the U-Boot's sound support. The main
1899 feature is to play a beep.
1900
1901 sound init - set up sound system
1902 sound play - play a sound
1903
Patrice Chotard993c9122019-11-25 09:07:38 +01001904config CMD_SYSBOOT
1905 bool "sysboot"
1906 select MENU
1907 help
1908 Boot image via local extlinux.conf file
1909
Miao Yan18686592016-05-22 19:37:17 -07001910config CMD_QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001911 bool "qfw"
Miao Yanfcf5c042016-05-22 19:37:14 -07001912 select QFW
Tom Rinidd6f3ab2016-05-06 10:40:22 -04001913 help
1914 This provides access to the QEMU firmware interface. The main
1915 feature is to allow easy loading of files passed to qemu-system
1916 via -kernel / -initrd
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02001917
Frédéric Danis9744d1a2020-03-20 10:59:22 +01001918config CMD_PSTORE
1919 bool "pstore"
1920 help
1921 This provides access to Linux PStore with Rammoops backend. The main
1922 feature is to allow to display or save PStore records.
1923
1924 See doc/pstore.rst for more information.
1925
1926if CMD_PSTORE
1927
1928config CMD_PSTORE_MEM_ADDR
1929 hex "Memory Address"
1930 depends on CMD_PSTORE
1931 help
1932 Base addr used for PStore ramoops memory, should be identical to
1933 ramoops.mem_address parameter used by kernel
1934
1935config CMD_PSTORE_MEM_SIZE
1936 hex "Memory size"
1937 depends on CMD_PSTORE
1938 default "0x10000"
1939 help
1940 Size of PStore ramoops memory, should be identical to ramoops.mem_size
1941 parameter used by kernel, a power of 2 and larger than the sum of the
1942 record sizes
1943
1944config CMD_PSTORE_RECORD_SIZE
1945 hex "Dump record size"
1946 depends on CMD_PSTORE
1947 default "0x1000"
1948 help
1949 Size of each dump done on oops/panic, should be identical to
1950 ramoops.record_size parameter used by kernel and a power of 2
1951 Must be non-zero
1952
1953config CMD_PSTORE_CONSOLE_SIZE
1954 hex "Kernel console log size"
1955 depends on CMD_PSTORE
1956 default "0x1000"
1957 help
1958 Size of kernel console log, should be identical to
1959 ramoops.console_size parameter used by kernel and a power of 2
1960 Must be non-zero
1961
1962config CMD_PSTORE_FTRACE_SIZE
1963 hex "FTrace log size"
1964 depends on CMD_PSTORE
1965 default "0x1000"
1966 help
1967 Size of ftrace log, should be identical to ramoops.ftrace_size
1968 parameter used by kernel and a power of 2
1969
1970config CMD_PSTORE_PMSG_SIZE
1971 hex "User space message log size"
1972 depends on CMD_PSTORE
1973 default "0x1000"
1974 help
1975 Size of user space message log, should be identical to
1976 ramoops.pmsg_size parameter used by kernel and a power of 2
1977
1978config CMD_PSTORE_ECC_SIZE
1979 int "ECC size"
1980 depends on CMD_PSTORE
1981 default "0"
1982 help
1983 if non-zero, the option enables ECC support and specifies ECC buffer
1984 size in bytes (1 is a special value, means 16 bytes ECC), should be
1985 identical to ramoops.ramoops_ecc parameter used by kernel
1986
1987endif
1988
Konstantin Porotchkinfa61ef62016-12-08 12:22:28 +02001989source "cmd/mvebu/Kconfig"
1990
Simon Glass3cef3b32017-08-04 16:34:55 -06001991config CMD_TERMINAL
1992 bool "terminal - provides a way to attach a serial terminal"
1993 help
1994 Provides a 'cu'-like serial terminal command. This can be used to
1995 access other serial ports from the system console. The terminal
1996 is very simple with no special processing of characters. As with
1997 cu, you can press ~. (tilde followed by period) to exit.
1998
Simon Glass1aa4e8d2017-08-04 16:35:02 -06001999config CMD_UUID
2000 bool "uuid, guid - generation of unique IDs"
Adam Forda451bc22018-02-06 12:14:28 -06002001 select LIB_UUID
Simon Glass1aa4e8d2017-08-04 16:35:02 -06002002 help
2003 This enables two commands:
2004
2005 uuid - generate random Universally Unique Identifier
2006 guid - generate Globally Unique Identifier based on random UUID
2007
2008 The two commands are very similar except for the endianness of the
2009 output.
2010
Simon Glass72a8cf82016-01-17 20:53:51 -07002011endmenu
2012
Lokesh Vutla5cd96612017-12-29 11:47:49 +05302013source "cmd/ti/Kconfig"
2014
Simon Glass72a8cf82016-01-17 20:53:51 -07002015config CMD_BOOTSTAGE
2016 bool "Enable the 'bootstage' command"
2017 depends on BOOTSTAGE
2018 help
2019 Add a 'bootstage' command which supports printing a report
2020 and un/stashing of bootstage data.
2021
2022menu "Power commands"
2023config CMD_PMIC
2024 bool "Enable Driver Model PMIC command"
2025 depends on DM_PMIC
2026 help
2027 This is the pmic command, based on a driver model pmic's API.
2028 Command features are unchanged:
2029 - list - list pmic devices
2030 - pmic dev <id> - show or [set] operating pmic device (NEW)
2031 - pmic dump - dump registers
2032 - pmic read address - read byte of register at address
2033 - pmic write address - write byte to register at address
2034 The only one change for this command is 'dev' subcommand.
2035
2036config CMD_REGULATOR
2037 bool "Enable Driver Model REGULATOR command"
2038 depends on DM_REGULATOR
2039 help
2040 This command is based on driver model regulator's API.
2041 User interface features:
2042 - list - list regulator devices
2043 - regulator dev <id> - show or [set] operating regulator device
2044 - regulator info - print constraints info
2045 - regulator status - print operating status
2046 - regulator value <val] <-f> - print/[set] voltage value [uV]
2047 - regulator current <val> - print/[set] current value [uA]
2048 - regulator mode <id> - print/[set] operating mode id
2049 - regulator enable - enable the regulator output
2050 - regulator disable - disable the regulator output
2051
2052 The '-f' (force) option can be used for set the value which exceeds
2053 the limits, which are found in device-tree and are kept in regulator's
Simon Glasscaa4daa2020-12-03 16:55:18 -07002054 uclass plat structure.
Simon Glass72a8cf82016-01-17 20:53:51 -07002055
2056endmenu
2057
2058menu "Security commands"
Simon Glassb1a873d2017-04-26 22:27:49 -06002059config CMD_AES
2060 bool "Enable the 'aes' command"
2061 select AES
2062 help
2063 This provides a means to encrypt and decrypt data using the AES
2064 (Advanced Encryption Standard). This algorithm uses a symetric key
2065 and is widely used as a streaming cipher. Different key lengths are
2066 supported by the algorithm but this command only supports 128 bits
2067 at present.
2068
Simon Glassc04b9b32017-04-26 22:27:53 -06002069config CMD_BLOB
2070 bool "Enable the 'blob' command"
Aymen Sghaier25324292021-03-25 17:30:27 +08002071 depends on !MX6ULL && !MX6SLL && !MX6SL
2072 select IMX_HAB if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
Simon Glassc04b9b32017-04-26 22:27:53 -06002073 help
2074 This is used with the Freescale secure boot mechanism.
2075
2076 Freescale's SEC block has built-in Blob Protocol which provides
2077 a method for protecting user-defined data across system power
2078 cycles. SEC block protects data in a data structure called a Blob,
2079 which provides both confidentiality and integrity protection.
2080
2081 Encapsulating data as a blob
2082 Each time that the Blob Protocol is used to protect data, a
2083 different randomly generated key is used to encrypt the data.
2084 This random key is itself encrypted using a key which is derived
2085 from SoC's non-volatile secret key and a 16 bit Key identifier.
2086 The resulting encrypted key along with encrypted data is called a
2087 blob. The non-volatile secure key is available for use only during
2088 secure boot.
2089
2090 During decapsulation, the reverse process is performed to get back
2091 the original data.
2092
2093 Sub-commands:
Michal Simek6e7bdde2018-07-23 15:55:12 +02002094 blob enc - encapsulating data as a cryptgraphic blob
Simon Glassc04b9b32017-04-26 22:27:53 -06002095 blob dec - decapsulating cryptgraphic blob to get the data
2096
2097 Syntax:
2098
2099 blob enc src dst len km
2100
2101 Encapsulate and create blob of data $len bytes long
2102 at address $src and store the result at address $dst.
2103 $km is the 16 byte key modifier is also required for
2104 generation/use as key for cryptographic operation. Key
2105 modifier should be 16 byte long.
2106
2107 blob dec src dst len km
2108
2109 Decapsulate the blob of data at address $src and
2110 store result of $len byte at addr $dst.
2111 $km is the 16 byte key modifier is also required for
2112 generation/use as key for cryptographic operation. Key
2113 modifier should be 16 byte long.
2114
Simon Glass551c3932017-05-17 03:25:25 -06002115config CMD_HASH
2116 bool "Support 'hash' command"
Simon Glassd70f9192017-05-17 09:05:34 -06002117 select HASH
Simon Glass551c3932017-05-17 03:25:25 -06002118 help
2119 This provides a way to hash data in memory using various supported
2120 algorithms (such as SHA1, MD5, CRC32). The computed digest can be
2121 saved to memory or to an environment variable. It is also possible
2122 to verify a hash against data in memory.
2123
Michalis Pappas666028f2018-04-13 10:40:57 +03002124config CMD_HVC
2125 bool "Support the 'hvc' command"
2126 depends on ARM_SMCCC
2127 help
2128 Allows issuing Hypervisor Calls (HVCs). Mostly useful for
2129 development and testing.
2130
2131config CMD_SMC
2132 bool "Support the 'smc' command"
2133 depends on ARM_SMCCC
2134 help
2135 Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
2136 development and testing.
2137
Daniel Thompson221a9492017-05-19 17:26:58 +01002138config HASH_VERIFY
2139 bool "hash -v"
2140 depends on CMD_HASH
2141 help
2142 Add -v option to verify data against a hash.
2143
Jorge Ramirez-Ortiz26839e52021-02-14 16:27:24 +01002144config CMD_SCP03
2145 bool "scp03 - SCP03 enable and rotate/provision operations"
2146 depends on SCP03
2147 help
2148 This command provides access to a Trusted Application
2149 running in a TEE to request Secure Channel Protocol 03
2150 (SCP03) enablement and/or rotation of its SCP03 keys.
2151
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002152config CMD_TPM_V1
2153 bool
2154
2155config CMD_TPM_V2
2156 bool
2157
Simon Glass72a8cf82016-01-17 20:53:51 -07002158config CMD_TPM
2159 bool "Enable the 'tpm' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002160 depends on TPM_V1 || TPM_V2
2161 select CMD_TPM_V1 if TPM_V1
2162 select CMD_TPM_V2 if TPM_V2
Simon Glass72a8cf82016-01-17 20:53:51 -07002163 help
2164 This provides a means to talk to a TPM from the command line. A wide
2165 range of commands if provided - see 'tpm help' for details. The
2166 command requires a suitable TPM on your board and the correct driver
2167 must be enabled.
2168
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002169if CMD_TPM
2170
Simon Glass72a8cf82016-01-17 20:53:51 -07002171config CMD_TPM_TEST
2172 bool "Enable the 'tpm test' command"
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002173 depends on TPM_V1
Simon Glass72a8cf82016-01-17 20:53:51 -07002174 help
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002175 This provides a a series of tests to confirm that the TPMv1.x is
2176 working correctly. The tests cover initialisation, non-volatile RAM,
2177 extend, global lock and checking that timing is within expectations.
2178 The tests pass correctly on Infineon TPMs but may need to be adjusted
Simon Glass72a8cf82016-01-17 20:53:51 -07002179 for other devices.
2180
Miquel Raynal9f9ce3c2018-05-15 11:57:05 +02002181endif
2182
Simon Glass72a8cf82016-01-17 20:53:51 -07002183endmenu
2184
Moritz Fischerbfeba012016-10-04 17:08:08 -07002185menu "Firmware commands"
2186config CMD_CROS_EC
2187 bool "Enable crosec command"
2188 depends on CROS_EC
2189 default y
2190 help
2191 Enable command-line access to the Chrome OS EC (Embedded
2192 Controller). This provides the 'crosec' command which has
2193 a number of sub-commands for performing EC tasks such as
2194 updating its flash, accessing a small saved context area
2195 and talking to the I2C bus behind the EC (if there is one).
2196endmenu
2197
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002198menu "Filesystem commands"
Marek Behún9d845502017-09-03 17:00:30 +02002199config CMD_BTRFS
2200 bool "Enable the 'btrsubvol' command"
2201 select FS_BTRFS
2202 help
2203 This enables the 'btrsubvol' command to list subvolumes
2204 of a BTRFS filesystem. There are no special commands for
2205 listing BTRFS directories or loading BTRFS files - this
2206 can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
2207 when BTRFS is enabled (see FS_BTRFS).
2208
Simon Glassd66a10f2017-04-26 22:27:58 -06002209config CMD_CBFS
2210 bool "Enable the 'cbfs' command"
Simon Glassdeb959992017-04-26 22:27:59 -06002211 depends on FS_CBFS
Simon Glassd66a10f2017-04-26 22:27:58 -06002212 help
2213 Define this to enable support for reading from a Coreboot
2214 filesystem. This is a ROM-based filesystem used for accessing files
2215 on systems that use coreboot as the first boot-loader and then load
2216 U-Boot to actually boot the Operating System. Available commands are
2217 cbfsinit, cbfsinfo, cbfsls and cbfsload.
2218
Simon Glass97072742017-04-26 22:28:03 -06002219config CMD_CRAMFS
2220 bool "Enable the 'cramfs' command"
Simon Glass80e44cf2017-04-26 22:28:04 -06002221 depends on FS_CRAMFS
Simon Glass97072742017-04-26 22:28:03 -06002222 help
2223 This provides commands for dealing with CRAMFS (Compressed ROM
2224 filesystem). CRAMFS is useful when space is tight since files are
2225 compressed. Two commands are provided:
2226
2227 cramfsls - lists files in a cramfs image
2228 cramfsload - loads a file from a cramfs image
2229
Huang Jianan739941e2022-02-26 15:05:50 +08002230config CMD_EROFS
2231 bool "EROFS command support"
2232 select FS_EROFS
2233 help
2234 Support for the EROFS fs
2235
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002236config CMD_EXT2
2237 bool "ext2 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002238 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002239 help
2240 Enables EXT2 FS command
2241
2242config CMD_EXT4
2243 bool "ext4 command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002244 select FS_EXT4
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002245 help
2246 Enables EXT4 FS command
2247
2248config CMD_EXT4_WRITE
2249 depends on CMD_EXT4
2250 bool "ext4 write command support"
Tuomas Tynkkynen3d22bae2018-01-05 02:45:17 +02002251 select EXT4_WRITE
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002252 help
2253 Enables EXT4 FS write command
2254
2255config CMD_FAT
2256 bool "FAT command support"
Sekhar Norieedfb892017-06-02 17:53:59 +05302257 select FS_FAT
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002258 help
2259 Support for the FAT fs
2260
Joao Marcos Costabba604b2020-07-30 15:33:48 +02002261config CMD_SQUASHFS
2262 bool "SquashFS command support"
2263 select FS_SQUASHFS
2264 help
2265 Enables SquashFS filesystem commands (e.g. load, ls).
2266
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002267config CMD_FS_GENERIC
2268 bool "filesystem commands"
2269 help
2270 Enables filesystem commands (e.g. load, ls) that work for multiple
2271 fs types.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002272
Josua Mayerefbe99c2017-04-24 10:10:45 +02002273config CMD_FS_UUID
2274 bool "fsuuid command"
2275 help
2276 Enables fsuuid command for filesystem UUID.
2277
Simon Glassb8682a72017-05-17 03:25:37 -06002278config CMD_JFFS2
2279 bool "jffs2 command"
Simon Glass59e12a42017-05-17 03:25:38 -06002280 select FS_JFFS2
Simon Glassb8682a72017-05-17 03:25:37 -06002281 help
2282 Enables commands to support the JFFS2 (Journalling Flash File System
2283 version 2) filesystem. This enables fsload, ls and fsinfo which
2284 provide the ability to load files, list directories and obtain
2285 filesystem information.
2286
Tom Rini968c6212021-12-17 18:08:47 -05002287config JFFS2_DEV
2288 string "Default device for JFFS2"
2289 depends on CMD_JFFS2
2290 default "nor0"
2291 help
2292 The default device to use with the jffs2 command.
2293
2294config JFFS2_PART_OFFSET
2295 hex "Default offset within flash to locate the JFFS2 image"
2296 depends on CMD_JFFS2
2297 default 0x0
2298 help
2299 The default offset within flash to locate the JFFS2 image.
2300
2301config JFFS2_PART_SIZE
2302 hex "Default size of JFFS2 partition"
2303 depends on CMD_JFFS2
2304 default 0xFFFFFFFF
2305 help
2306 The default size of the JFFS2 partition
2307
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002308config CMD_MTDPARTS
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002309 bool "MTD partition support"
Miquel Raynalff102c52019-10-25 19:39:30 +02002310 depends on MTD
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002311 help
Miquel Raynal938db6f2018-09-29 12:58:30 +02002312 MTD partitioning tool support.
2313 It is strongly encouraged to avoid using this command
2314 anymore along with 'sf', 'nand', 'onenand'. One can still
2315 declare the partitions in the mtdparts environment variable
2316 but better use the MTD stack and the 'mtd' command instead.
Maxime Ripard0269dfa2017-02-27 18:22:04 +01002317
Simon Glasscb70e6c2017-08-04 16:34:30 -06002318config CMD_MTDPARTS_SPREAD
2319 bool "Padd partition size to take account of bad blocks"
2320 depends on CMD_MTDPARTS
2321 help
2322 This enables the 'spread' sub-command of the mtdparts command.
2323 This command will modify the existing mtdparts variable by increasing
2324 the size of the partitions such that 1) each partition's net size is
2325 at least as large as the size specified in the mtdparts variable and
2326 2) each partition starts on a good block.
2327
Alexander Dahl672c5702019-10-30 16:53:55 +01002328config CMD_MTDPARTS_SHOW_NET_SIZES
2329 bool "Show net size (w/o bad blocks) of partitions"
2330 depends on CMD_MTDPARTS
2331 help
2332 Adds two columns to the printed partition table showing the
2333 effective usable size of a partition, if bad blocks are taken
2334 into account.
2335
Miquel Raynal587f4452019-10-03 19:50:25 +02002336config MTDIDS_DEFAULT
2337 string "Default MTD IDs"
Miquel Raynalff102c52019-10-25 19:39:30 +02002338 depends on MTD || SPI_FLASH
Miquel Raynal587f4452019-10-03 19:50:25 +02002339 help
2340 Defines a default MTD IDs list for use with MTD partitions in the
2341 Linux MTD command line partitions format.
2342
2343config MTDPARTS_DEFAULT
2344 string "Default MTD partition scheme"
Miquel Raynalff102c52019-10-25 19:39:30 +02002345 depends on MTD || SPI_FLASH
Miquel Raynal587f4452019-10-03 19:50:25 +02002346 help
2347 Defines a default MTD partitioning scheme in the Linux MTD command
2348 line partitions format
2349
Simon Glassf8803a92017-08-04 16:34:41 -06002350config CMD_REISER
2351 bool "reiser - Access to reiserfs filesystems"
2352 help
2353 This provides two commands which operate on a resierfs filesystem,
2354 commonly used some years ago:
2355
2356 reiserls - list files
2357 reiserload - load a file
2358
Simon Glass7a764312017-08-04 16:34:58 -06002359config CMD_YAFFS2
2360 bool "yaffs2 - Access of YAFFS2 filesystem"
2361 depends on YAFFS2
2362 default y
2363 help
2364 This provides commands for accessing a YAFFS2 filesystem. Yet
2365 Another Flash Filesystem 2 is a filesystem designed specifically
2366 for NAND flash. It incorporates bad-block management and ensures
2367 that device writes are sequential regardless of filesystem
2368 activity.
2369
Simon Glass54feea12017-08-04 16:35:04 -06002370config CMD_ZFS
2371 bool "zfs - Access of ZFS filesystem"
2372 help
2373 This provides commands to accessing a ZFS filesystem, commonly used
2374 on Solaris systems. Two sub-commands are provided:
2375
2376 zfsls - list files in a directory
2377 zfsload - load a file
2378
2379 See doc/README.zfs for more details.
2380
Dinh Nguyenab8243e2016-04-21 09:05:23 -05002381endmenu
2382
Simon Glassac20a1b2017-04-26 22:27:52 -06002383menu "Debug commands"
2384
Simon Glass71cebf02021-03-15 18:00:24 +13002385config CMD_CBSYSINFO
2386 bool "cbsysinfo"
2387 depends on X86
2388 default y if SYS_COREBOOT
2389 help
2390 This provides information about the coreboot sysinfo table stored in
2391 memory by coreboot before jumping to U-Boot. It can be useful for
2392 debugging the beaaviour of coreboot or U-Boot.
2393
Simon Glass3bd25cb2017-04-26 22:28:08 -06002394config CMD_DIAG
2395 bool "diag - Board diagnostics"
2396 help
2397 This command provides access to board diagnostic tests. These are
2398 called Power-on Self Tests (POST). The command allows listing of
2399 available tests and running either all the tests, or specific tests
2400 identified by name.
2401
Simon Glassc81b4602022-03-04 08:43:06 -07002402config CMD_EVENT
2403 bool "event - Show information about events"
2404 default y if EVENT_DEBUG
2405 help
2406 This enables the 'event' command which provides information about
2407 events and event-handler routines. This can help to device event
2408 hadling.
2409
Simon Glass1b330892017-05-17 03:25:39 -06002410config CMD_IRQ
2411 bool "irq - Show information about interrupts"
Pragnesh Patelc5a7e5b2020-08-24 20:38:55 +05302412 depends on !ARM && !MIPS && !RISCV && !SH
Simon Glass1b330892017-05-17 03:25:39 -06002413 help
2414 This enables two commands:
2415
2416 interrupts - enable or disable interrupts
2417 irqinfo - print device-specific interrupt information
Simon Glass6bac2272017-05-17 03:25:40 -06002418
2419config CMD_KGDB
2420 bool "kgdb - Allow debugging of U-Boot with gdb"
Michal Simekb9205502018-10-04 14:26:13 +02002421 depends on PPC
Simon Glass6bac2272017-05-17 03:25:40 -06002422 help
2423 This enables a 'kgdb' command which allows gdb to connect to U-Boot
2424 over a serial link for debugging purposes. This allows
2425 single-stepping, inspecting variables, etc. This is supported only
2426 on PowerPC at present.
2427
Simon Glassd5f61f22017-12-04 13:48:26 -07002428config CMD_LOG
2429 bool "log - Generation, control and access to logging"
Heinrich Schuchardt83a1f932018-04-19 22:02:46 +02002430 select LOG
Sean Anderson3e409762020-10-27 19:55:38 -04002431 select GETOPT
Simon Glassd5f61f22017-12-04 13:48:26 -07002432 help
2433 This provides access to logging features. It allows the output of
2434 log data to be controlled to a limited extent (setting up the default
Simon Glassef11ed82017-12-04 13:48:27 -07002435 maximum log level for emitting of records). It also provides access
2436 to a command used for testing the log system.
Simon Glassd5f61f22017-12-04 13:48:26 -07002437
Simon Glassce058ae2017-08-04 16:34:59 -06002438config CMD_TRACE
2439 bool "trace - Support tracing of function calls and timing"
Simon Glass89050242021-11-24 09:26:39 -07002440 depends on TRACE
2441 default y
Simon Glassce058ae2017-08-04 16:34:59 -06002442 help
2443 Enables a command to control using of function tracing within
2444 U-Boot. This allows recording of call traces including timing
2445 information. The command can write data to memory for exporting
Simon Glassa24a78d2019-04-08 13:20:51 -06002446 for analysis (e.g. using bootchart). See doc/README.trace for full
Simon Glassce058ae2017-08-04 16:34:59 -06002447 details.
2448
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002449config CMD_AVB
2450 bool "avb - Android Verified Boot 2.0 operations"
Igor Opaniukb0aa74a2018-07-17 14:33:25 +03002451 depends on AVB_VERIFY
Igor Opaniuk60b2f9e2018-06-03 21:56:39 +03002452 help
2453 Enables a "avb" command to perform verification of partitions using
2454 Android Verified Boot 2.0 functionality. It includes such subcommands:
2455 avb init - initialize avb2 subsystem
2456 avb read_rb - read rollback index
2457 avb write_rb - write rollback index
2458 avb is_unlocked - check device lock state
2459 avb get_uuid - read and print uuid of a partition
2460 avb read_part - read data from partition
2461 avb read_part_hex - read data from partition and output to stdout
2462 avb write_part - write data to partition
2463 avb verify - run full verification chain
Joel Peshkin4e9bce12021-04-11 11:21:58 +02002464
2465config CMD_STACKPROTECTOR_TEST
2466 bool "Test command for stack protector"
2467 depends on STACKPROTECTOR
2468 help
2469 Enable stackprot_test command
2470 The stackprot_test command will force a stack overrun to test
2471 the stack smashing detection mechanisms.
2472
Simon Glassac20a1b2017-04-26 22:27:52 -06002473endmenu
2474
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002475config CMD_UBI
2476 tristate "Enable UBI - Unsorted block images commands"
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002477 select MTD_UBI
2478 help
2479 UBI is a software layer above MTD layer which admits use of LVM-like
2480 logical volumes on top of MTD devices, hides some complexities of
2481 flash chips like wear and bad blocks and provides some other useful
2482 capabilities. Please, consult the MTD web site for more details
2483 (www.linux-mtd.infradead.org). Activate this option if you want
2484 to use U-Boot UBI commands.
Miquel Raynalc58fb2c2018-09-29 12:58:29 +02002485 It is also strongly encouraged to also enable CONFIG_MTD to get full
2486 partition support.
Heiko Schocher8f2fe0c2016-09-21 07:58:19 +02002487
Philippe Reynes83f70782020-03-23 19:20:47 +01002488config CMD_UBI_RENAME
2489 bool "Enable rename"
2490 depends on CMD_UBI
Philippe Reynes83f70782020-03-23 19:20:47 +01002491 help
2492 Enable a "ubi" command to rename ubi volume:
2493 ubi rename <oldname> <newname>
2494
Boris Brezillon173aafb2017-02-27 18:22:06 +01002495config CMD_UBIFS
2496 tristate "Enable UBIFS - Unsorted block images filesystem commands"
Maxime Ripard2bc734b2017-03-03 14:53:22 +01002497 depends on CMD_UBI
Michal Simek5ed063d2018-07-23 15:55:13 +02002498 default y if CMD_UBI
Karl Beldan24fc9532017-07-12 16:11:47 +00002499 select LZO
Boris Brezillon173aafb2017-02-27 18:22:06 +01002500 help
2501 UBIFS is a file system for flash devices which works on top of UBI.
2502
Aswath Govindraju19f7a342021-08-13 23:04:41 +05302503config MMC_SPEED_MODE_SET
2504 bool "set speed mode using mmc command"
2505 depends on CMD_MMC
2506 default n
2507 help
2508 Enable setting speed mode using mmc rescan and mmc dev commands.
2509 The speed mode is provided as the last argument in these commands
2510 and is indicated using the index from enum bus_mode in
2511 include/mmc.h. A speed mode can be set only if it has already
2512 been enabled in the device tree.
Simon Glass72a8cf82016-01-17 20:53:51 -07002513endmenu