blob: 202c7cc5861b054f2ddfe0d0b7a571503d6725c7 [file] [log] [blame]
Simon Glass29499a02016-01-17 20:53:51 -07001menu "Command line interface"
2
Simon Glassaa34ef22016-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 Glass29499a02016-01-17 20:53:51 -070014config HUSH_PARSER
15 bool "Use hush shell"
Simon Glassaa34ef22016-03-13 19:07:28 -060016 depends on CMDLINE
Simon Glass29499a02016-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 Ford58dbf862018-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 Glass29499a02016-01-17 20:53:51 -070049config SYS_PROMPT
50 string "Shell prompt"
Michal Simekf048cae2019-09-25 12:32:41 +020051 default "Zynq> " if ARCH_ZYNQ
Michal Simek4f107432019-09-25 12:37:15 +020052 default "ZynqMP> " if ARCH_ZYNQMP
Simon Glass29499a02016-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
Christoph Muellner388b1452019-04-05 13:03:46 +020058config SYS_XTRACE
59 string "Command execution tracer"
60 depends on CMDLINE
61 default y if CMDLINE
62 help
63 This option enables the possiblity to print all commands before
64 executing them and after all variables are evaluated (similar
65 to Bash's xtrace/'set -x' feature).
66 To enable the tracer a variable "xtrace" needs to be defined in
67 the environment.
68
Simon Glass29499a02016-01-17 20:53:51 -070069menu "Autoboot options"
70
Masahiro Yamada622a01c2016-06-20 17:33:39 +090071config AUTOBOOT
72 bool "Autoboot"
73 default y
74 help
75 This enables the autoboot. See doc/README.autoboot for detail.
76
Simon Glass29499a02016-01-17 20:53:51 -070077config AUTOBOOT_KEYED
78 bool "Stop autobooting via specific input key / string"
79 default n
80 help
81 This option enables stopping (aborting) of the automatic
82 boot feature only by issuing a specific input key or
83 string. If not enabled, any input key will abort the
84 U-Boot automatic booting process and bring the device
85 to the U-Boot prompt for user input.
86
87config AUTOBOOT_PROMPT
88 string "Autoboot stop prompt"
89 depends on AUTOBOOT_KEYED
90 default "Autoboot in %d seconds\\n"
91 help
92 This string is displayed before the boot delay selected by
93 CONFIG_BOOTDELAY starts. If it is not defined there is no
94 output indicating that autoboot is in progress.
95
96 Note that this define is used as the (only) argument to a
97 printf() call, so it may contain '%' format specifications,
98 provided that it also includes, sepearated by commas exactly
99 like in a printf statement, the required arguments. It is
100 the responsibility of the user to select only such arguments
101 that are valid in the given context.
102
103config AUTOBOOT_ENCRYPTION
104 bool "Enable encryption in autoboot stopping"
105 depends on AUTOBOOT_KEYED
Simon Glassa8cab882019-07-20 20:51:17 -0600106 help
107 This option allows a string to be entered into U-Boot to stop the
108 autoboot. The string itself is hashed and compared against the hash
109 in the environment variable 'bootstopkeysha256'. If it matches then
110 boot stops and a command-line prompt is presented.
111
112 This provides a way to ship a secure production device which can also
113 be accessed at the U-Boot command line.
Simon Glass29499a02016-01-17 20:53:51 -0700114
115config AUTOBOOT_DELAY_STR
116 string "Delay autobooting via specific input key / string"
117 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
118 help
119 This option delays the automatic boot feature by issuing
120 a specific input key or string. If CONFIG_AUTOBOOT_DELAY_STR
121 or the environment variable "bootdelaykey" is specified
122 and this string is received from console input before
123 autoboot starts booting, U-Boot gives a command prompt. The
124 U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is
125 used, otherwise it never times out.
126
127config AUTOBOOT_STOP_STR
128 string "Stop autobooting via specific input key / string"
129 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
130 help
131 This option enables stopping (aborting) of the automatic
132 boot feature only by issuing a specific input key or
133 string. If CONFIG_AUTOBOOT_STOP_STR or the environment
134 variable "bootstopkey" is specified and this string is
135 received from console input before autoboot starts booting,
136 U-Boot gives a command prompt. The U-Boot prompt never
137 times out, even if CONFIG_BOOT_RETRY_TIME is used.
138
139config AUTOBOOT_KEYED_CTRLC
140 bool "Enable Ctrl-C autoboot interruption"
141 depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
142 default n
143 help
144 This option allows for the boot sequence to be interrupted
145 by ctrl-c, in addition to the "bootdelaykey" and "bootstopkey".
146 Setting this variable provides an escape sequence from the
147 limited "password" strings.
148
149config AUTOBOOT_STOP_STR_SHA256
150 string "Stop autobooting via SHA256 encrypted password"
151 depends on AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION
152 help
153 This option adds the feature to only stop the autobooting,
154 and therefore boot into the U-Boot prompt, when the input
155 string / password matches a values that is encypted via
156 a SHA256 hash and saved in the environment.
157
Simon Glass9e476d92019-07-20 20:51:21 -0600158config AUTOBOOT_USE_MENUKEY
159 bool "Allow a specify key to run a menu from the environment"
160 depends on !AUTOBOOT_KEYED
161 help
162 If a specific key is pressed to stop autoboot, then the commands in
163 the environment variable 'menucmd' are executed before boot starts.
164
165config AUTOBOOT_MENUKEY
166 int "ASCII value of boot key to show a menu"
167 default 0
168 depends on AUTOBOOT_USE_MENUKEY
169 help
170 If this key is pressed to stop autoboot, then the commands in the
171 environment variable 'menucmd' will be executed before boot starts.
172 For example, 33 means "!" in ASCII, so pressing ! at boot would take
173 this action.
174
Simon Glass32679ba2019-07-20 20:51:25 -0600175config AUTOBOOT_MENU_SHOW
176 bool "Show a menu on boot"
AKASHI Takahiroc4927522019-09-12 15:31:22 +0900177 depends on CMD_BOOTMENU
Simon Glass32679ba2019-07-20 20:51:25 -0600178 help
179 This enables the boot menu, controlled by environment variables
180 defined by the board. The menu starts after running the 'preboot'
181 environmnent variable (if enabled) and before handling the boot delay.
182 See README.bootmenu for more details.
183
Simon Glass29499a02016-01-17 20:53:51 -0700184endmenu
185
Sam Protsenko13c1f3a2017-09-28 12:33:45 -0700186config BUILD_BIN2C
187 bool
188
Simon Glass29499a02016-01-17 20:53:51 -0700189comment "Commands"
190
191menu "Info commands"
192
Simon Glassfaf08c72020-04-26 09:19:53 -0600193config CMD_ACPI
194 bool "acpi"
195 default y if ACPIGEN
196 help
197 List and dump ACPI tables. ACPI (Advanced Configuration and Power
198 Interface) is used mostly on x86 for providing information to the
199 Operating System about devices in the system. The tables are set up
200 by the firmware, typically U-Boot but possibly an earlier firmware
201 module, if U-Boot is chain-loaded from something else. ACPI tables
202 can also include code, to perform hardware-specific tasks required
203 by the Operating Systems. This allows some amount of separation
204 between the firmware and OS, and is particularly useful when you
205 want to make hardware changes without the OS needing to be adjusted.
206
Simon Glass29499a02016-01-17 20:53:51 -0700207config CMD_BDI
208 bool "bdinfo"
209 default y
210 help
211 Print board info
212
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900213config CMD_CONFIG
214 bool "config"
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900215 default SANDBOX
Michal Simek84f3dec2018-07-23 15:55:13 +0200216 select BUILD_BIN2C
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900217 help
218 Print ".config" contents.
219
220 If this option is enabled, the ".config" file contents are embedded
221 in the U-Boot image and can be printed on the console by the "config"
222 command. This provides information of which options are enabled on
223 the running U-Boot.
224
Simon Glass29499a02016-01-17 20:53:51 -0700225config CMD_CONSOLE
226 bool "coninfo"
227 default y
228 help
229 Print console devices and information.
230
231config CMD_CPU
232 bool "cpu"
233 help
234 Print information about available CPUs. This normally shows the
235 number of CPUs, type (e.g. manufacturer, architecture, product or
236 internal name) and clock frequency. Other information may be
237 available depending on the CPU driver.
238
239config CMD_LICENSE
240 bool "license"
Masahiro Yamada81680332017-01-30 11:12:08 +0900241 select BUILD_BIN2C
Simon Glass29499a02016-01-17 20:53:51 -0700242 help
243 Print GPL license text
244
Simon Glass8c501022019-12-06 21:41:54 -0700245config CMD_PMC
246 bool "pmc"
247 help
248 Provides access to the Intel Power-Management Controller (PMC) so
249 that its state can be examined. This does not currently support
250 changing the state but it is still useful for debugging and seeing
251 what is going on.
252
Christophe Leroye538bbc2017-08-04 16:34:40 -0600253config CMD_REGINFO
254 bool "reginfo"
255 depends on PPC
256 help
257 Register dump
258
Baruch Siachfad48982020-01-21 15:44:54 +0200259config CMD_TLV_EEPROM
260 bool "tlv_eeprom"
261 depends on I2C_EEPROM
262 help
263 Display and program the system EEPROM data block in ONIE Tlvinfo
264 format. TLV stands for Type-Length-Value.
265
266config SPL_CMD_TLV_EEPROM
267 bool "tlv_eeprom for SPL"
268 depends on SPL_I2C_EEPROM
269 select SPL_DRIVERS_MISC_SUPPORT
270 help
271 Read system EEPROM data block in ONIE Tlvinfo format from SPL.
272
Simon Glass29499a02016-01-17 20:53:51 -0700273endmenu
274
275menu "Boot commands"
276
277config CMD_BOOTD
278 bool "bootd"
279 default y
280 help
281 Run the command stored in the environment "bootcmd", i.e.
282 "bootd" does the same thing as "run bootcmd".
283
284config CMD_BOOTM
285 bool "bootm"
286 default y
287 help
288 Boot an application image from the memory.
289
Cristian Ciocaltea6aca5982019-12-24 18:05:39 +0200290config BOOTM_EFI
291 bool "Support booting UEFI FIT images"
292 depends on CMD_BOOTEFI && CMD_BOOTM && FIT
293 default y
294 help
295 Support booting UEFI FIT images via the bootm command.
296
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500297config CMD_BOOTZ
298 bool "bootz"
299 help
300 Boot the Linux zImage
301
Masahiro Yamada04cf1552016-08-12 08:31:16 -0400302config CMD_BOOTI
303 bool "booti"
Atish Patra583b4092019-05-06 17:49:39 -0700304 depends on ARM64 || RISCV
Masahiro Yamada04cf1552016-08-12 08:31:16 -0400305 default y
306 help
307 Boot an AArch64 Linux Kernel image from memory.
308
Tom Rini9a102072019-09-20 17:36:50 -0400309config BOOTM_LINUX
310 bool "Support booting Linux OS images"
311 depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI
312 default y
313 help
314 Support booting the Linux kernel directly via a command such as bootm
315 or booti or bootz.
316
317config BOOTM_NETBSD
318 bool "Support booting NetBSD (non-EFI) loader images"
319 depends on CMD_BOOTM
320 default y
321 help
322 Support booting NetBSD via the bootm command.
323
324config BOOTM_OPENRTOS
325 bool "Support booting OPENRTOS / FreeRTOS images"
326 depends on CMD_BOOTM
327 help
328 Support booting OPENRTOS / FreeRTOS via the bootm command.
329
330config BOOTM_OSE
331 bool "Support booting Enea OSE images"
Tom Rini1d0b1fc2019-12-05 18:46:11 -0500332 depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86)
Tom Rini9a102072019-09-20 17:36:50 -0400333 depends on CMD_BOOTM
334 help
335 Support booting Enea OSE images via the bootm command.
336
337config BOOTM_PLAN9
338 bool "Support booting Plan9 OS images"
339 depends on CMD_BOOTM
340 default y
341 help
342 Support booting Plan9 images via the bootm command.
343
344config BOOTM_RTEMS
345 bool "Support booting RTEMS OS images"
346 depends on CMD_BOOTM
347 default y
348 help
349 Support booting RTEMS images via the bootm command.
350
351config BOOTM_VXWORKS
352 bool "Support booting VxWorks OS images"
353 depends on CMD_BOOTM
354 default y
355 help
356 Support booting VxWorks images via the bootm command.
357
AKASHI Takahiro8d95b6e2019-11-08 10:32:15 +0900358config CMD_BOOTEFI
359 bool "bootefi"
360 depends on EFI_LOADER
361 default y
362 help
363 Boot an EFI image from memory.
364
Alexander Grafb5483512016-11-17 22:40:10 +0100365config CMD_BOOTEFI_HELLO_COMPILE
366 bool "Compile a standard EFI hello world binary for testing"
Heinrich Schuchardt0f675d92019-11-07 08:05:17 +0100367 depends on CMD_BOOTEFI && !CPU_V7M
Alexander Grafb5483512016-11-17 22:40:10 +0100368 default y
369 help
370 This compiles a standard EFI hello world application with U-Boot so
371 that it can be used with the test/py testing framework. This is useful
372 for testing that EFI is working at a basic level, and for bringing
373 up EFI support on a new architecture.
374
375 No additional space will be required in the resulting U-Boot binary
376 when this option is enabled.
377
Simon Glassfac4ced2016-11-07 08:47:08 -0700378config CMD_BOOTEFI_HELLO
379 bool "Allow booting a standard EFI hello world for testing"
Alexander Grafb5483512016-11-17 22:40:10 +0100380 depends on CMD_BOOTEFI_HELLO_COMPILE
Simon Glassfac4ced2016-11-07 08:47:08 -0700381 help
382 This adds a standard EFI hello world application to U-Boot so that
383 it can be used with the 'bootefi hello' command. This is useful
384 for testing that EFI is working at a basic level, and for bringing
385 up EFI support on a new architecture.
386
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200387source lib/efi_selftest/Kconfig
388
Tom Rini697f4732016-11-29 09:14:56 -0500389config CMD_BOOTMENU
390 bool "bootmenu"
391 select MENU
392 help
393 Add an ANSI terminal boot menu command.
394
Eugeniu Roscaee98dac2019-12-24 17:51:06 +0100395config CMD_ADTIMG
396 bool "adtimg"
Sam Protsenko92f95bb2018-08-16 23:34:13 +0300397 help
398 Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
399 image into RAM, dump image structure information, etc. Those dtb/dtbo
400 files should be merged in one dtb further, which needs to be passed to
401 the kernel, as part of a boot process.
402
Sam Protsenko035502e2020-01-24 17:53:42 +0200403config CMD_ABOOTIMG
404 bool "abootimg"
405 depends on ANDROID_BOOT_IMAGE
406 help
407 Android Boot Image manipulation commands. Allows one to extract
408 images contained in boot.img, like kernel, ramdisk, dtb, etc, and
409 obtain corresponding meta-information from boot.img.
410
Sam Protsenkod8efc7c2020-01-24 17:53:43 +0200411 See doc/android/boot-image.rst for details.
412
Simon Glass29499a02016-01-17 20:53:51 -0700413config CMD_ELF
414 bool "bootelf, bootvx"
415 default y
Keerthy76f361a2020-02-12 13:55:03 +0530416 select LIB_ELF
Simon Glass29499a02016-01-17 20:53:51 -0700417 help
418 Boot an ELF/vxWorks image from the memory.
419
Michal Simekf168c652016-04-06 20:28:04 +0200420config CMD_FDT
421 bool "Flattened Device Tree utility commands"
422 default y
423 depends on OF_LIBFDT
424 help
425 Do FDT related setup before booting into the Operating System.
426
Simon Glass29499a02016-01-17 20:53:51 -0700427config CMD_GO
428 bool "go"
429 default y
430 help
431 Start an application at a given address.
432
433config CMD_RUN
434 bool "run"
435 default y
436 help
437 Run the command in the given environment variable.
438
439config CMD_IMI
440 bool "iminfo"
441 default y
442 help
443 Print header information for application image.
444
445config CMD_IMLS
446 bool "imls"
Simon Glass29499a02016-01-17 20:53:51 -0700447 help
448 List all images found in flash
449
450config CMD_XIMG
451 bool "imxtract"
452 default y
453 help
454 Extract a part of a multi-image.
455
Simon Glassc6567fa2017-08-04 16:34:48 -0600456config CMD_SPL
457 bool "spl export - Export boot information for Falcon boot"
458 depends on SPL
459 help
460 Falcon mode allows booting directly from SPL into an Operating
461 System such as Linux, thus skipping U-Boot proper. See
462 doc/README.falcon for full information about how to use this
463 command.
464
Simon Glassc034e3d2017-08-04 16:34:49 -0600465config CMD_SPL_NAND_OFS
Lukasz Majewski10797442019-05-16 16:01:36 +0200466 hex "Offset of OS args or dtb for Falcon-mode NAND boot"
Lukasz Majewskie73ce322019-05-16 16:01:35 +0200467 depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
Simon Glassc034e3d2017-08-04 16:34:49 -0600468 default 0
469 help
470 This provides the offset of the command line arguments for Linux
471 when booting from NAND in Falcon mode. See doc/README.falcon
472 for full information about how to use this option (and also see
473 board/gateworks/gw_ventana/README for an example).
474
Lukasz Majewski06d92532019-05-16 16:01:37 +0200475config CMD_SPL_NOR_OFS
476 hex "Offset of OS args or dtb for Falcon-mode NOR boot"
477 depends on CMD_SPL && SPL_NOR_SUPPORT
478 default 0
479 help
480 This provides the offset of the command line arguments or dtb for
481 Linux when booting from NOR in Falcon mode.
482
Simon Glass51ef45a2017-08-04 16:34:50 -0600483config CMD_SPL_WRITE_SIZE
484 hex "Size of argument area"
485 depends on CMD_SPL
486 default 0x2000
487 help
488 This provides the size of the command-line argument area in NAND
489 flash used by Falcon-mode boot. See the documentation until CMD_SPL
490 for detail.
491
Simon Glassa18b9692017-08-04 16:34:57 -0600492config CMD_THOR_DOWNLOAD
493 bool "thor - TIZEN 'thor' download"
Marek Szyprowskide4752e2019-10-02 12:29:08 +0200494 select DFU
Simon Glassa18b9692017-08-04 16:34:57 -0600495 help
496 Implements the 'thor' download protocol. This is a way of
497 downloading a software update over USB from an attached host.
498 There is no documentation about this within the U-Boot source code
499 but you should be able to find something on the interwebs.
500
Simon Glass01d097d2017-08-04 16:35:03 -0600501config CMD_ZBOOT
502 bool "zboot - x86 boot command"
503 help
504 With x86 machines it is common to boot a bzImage file which
505 contains both a kernel and a setup.bin file. The latter includes
506 configuration information from the dark ages which x86 boards still
507 need to pick things out of.
508
509 Consider using FIT in preference to this since it supports directly
510 booting both 32- and 64-bit kernels, as well as secure boot.
511 Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
512
Simon Glass29499a02016-01-17 20:53:51 -0700513endmenu
514
515menu "Environment commands"
516
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500517config CMD_ASKENV
518 bool "ask for env variable"
519 help
520 Ask for environment variable
521
Simon Glass29499a02016-01-17 20:53:51 -0700522config CMD_EXPORTENV
523 bool "env export"
524 default y
525 help
526 Export environments.
527
528config CMD_IMPORTENV
529 bool "env import"
530 default y
531 help
532 Import environments.
533
534config CMD_EDITENV
535 bool "editenv"
536 default y
537 help
538 Edit environment variable.
539
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500540config CMD_GREPENV
541 bool "search env"
542 help
543 Allow for searching environment variables
544
Simon Glass29499a02016-01-17 20:53:51 -0700545config CMD_SAVEENV
546 bool "saveenv"
547 default y
548 help
549 Save all environment variables into the compiled-in persistent
550 storage.
551
Frank Wunderlich33afa932019-06-29 11:36:19 +0200552config CMD_ERASEENV
553 bool "eraseenv"
554 default n
555 depends on CMD_SAVEENV
556 help
557 Erase environment variables from the compiled-in persistent
558 storage.
559
Simon Glass29499a02016-01-17 20:53:51 -0700560config CMD_ENV_EXISTS
561 bool "env exists"
562 default y
563 help
564 Check if a variable is defined in the environment for use in
565 shell scripting.
566
Simon Glass84d67c72017-05-17 03:25:13 -0600567config CMD_ENV_CALLBACK
568 bool "env callbacks - print callbacks and their associated variables"
569 help
570 Some environment variable have callbacks defined by
571 U_BOOT_ENV_CALLBACK. These are called when the variable changes.
572 For example changing "baudrate" adjust the serial baud rate. This
573 command lists the currently defined callbacks.
574
Simon Glassc31e2d82017-05-17 03:25:14 -0600575config CMD_ENV_FLAGS
576 bool "env flags -print variables that have non-default flags"
577 help
578 Some environment variables have special flags that control their
579 behaviour. For example, serial# can only be written once and cannot
580 be deleted. This command shows the variables that have special
581 flags.
582
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900583config CMD_NVEDIT_EFI
584 bool "env [set|print] -e - set/print UEFI variables"
585 depends on EFI_LOADER
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900586 imply HEXDUMP
587 help
588 UEFI variables are encoded as some form of U-Boot variables.
589 If enabled, we are allowed to set/print UEFI variables using
590 "env" command with "-e" option without knowing details.
591
Leo Ruan7450b872019-05-24 17:20:19 +0200592config CMD_NVEDIT_INFO
593 bool "env info - print or evaluate environment information"
594 help
595 Print environment information:
596 - env_valid : is environment valid
597 - env_ready : is environment imported into hash table
598 - env_use_default : is default environment used
599
600 This command can be optionally used for evaluation in scripts:
601 [-d] : evaluate whether default environment is used
602 [-p] : evaluate whether environment can be persisted
603 The result of multiple evaluations will be combined with AND.
604
Simon Glass29499a02016-01-17 20:53:51 -0700605endmenu
606
607menu "Memory commands"
608
Mario Six8a4f6642018-03-28 14:39:18 +0200609config CMD_BINOP
610 bool "binop"
611 help
612 Compute binary operations (xor, or, and) of byte arrays of arbitrary
613 size from memory and store the result in memory or the environment.
614
Simon Glass29499a02016-01-17 20:53:51 -0700615config CMD_CRC32
616 bool "crc32"
617 default y
Michal Simek84f3dec2018-07-23 15:55:13 +0200618 select HASH
Simon Glass29499a02016-01-17 20:53:51 -0700619 help
620 Compute CRC32.
621
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100622config CRC32_VERIFY
623 bool "crc32 -v"
624 depends on CMD_CRC32
625 help
626 Add -v option to verify data against a crc32 checksum.
627
Simon Glass4590d4e2017-05-17 03:25:10 -0600628config CMD_EEPROM
629 bool "eeprom - EEPROM subsystem"
630 help
631 (deprecated, needs conversion to driver model)
632 Provides commands to read and write EEPROM (Electrically Erasable
633 Programmable Read Only Memory) chips that are connected over an
634 I2C bus.
635
636config CMD_EEPROM_LAYOUT
637 bool "Enable layout-aware eeprom commands"
638 depends on CMD_EEPROM
639 help
640 (deprecated, needs conversion to driver model)
641 When enabled, additional eeprom sub-commands become available.
642
643 eeprom print - prints the contents of the eeprom in a human-readable
644 way (eeprom layout fields, and data formatted to be fit for human
645 consumption).
646
647 eeprom update - allows user to update eeprom fields by specifying
648 the field name, and providing the new data in a human readable format
649 (same format as displayed by the eeprom print command).
650
651 Both commands can either auto detect the layout, or be told which
652 layout to use.
653
654 Feature API:
655 __weak int parse_layout_version(char *str)
656 - override to provide your own layout name parsing
657 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
658 int layout_version);
659 - override to setup the layout metadata based on the version
660 __weak int eeprom_layout_detect(unsigned char *data)
661 - override to provide your own algorithm for detecting layout
662 version
663 eeprom_field.c
664 - contains various printing and updating functions for common
665 types of eeprom fields. Can be used for defining
666 custom layouts.
667
668config EEPROM_LAYOUT_HELP_STRING
669 string "Tells user what layout names are supported"
670 depends on CMD_EEPROM_LAYOUT
671 default "<not defined>"
672 help
673 Help printed with the LAYOUT VERSIONS part of the 'eeprom'
674 command's help.
675
Simon Glass26c20532017-08-04 16:34:51 -0600676config LOOPW
677 bool "loopw"
678 help
679 Infinite write loop on address range
680
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000681config CMD_MD5SUM
682 bool "md5sum"
683 default n
684 select MD5
685 help
686 Compute MD5 checksum.
687
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100688config MD5SUM_VERIFY
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000689 bool "md5sum -v"
690 default n
691 depends on CMD_MD5SUM
692 help
693 Add -v option to verify data against an MD5 checksum.
694
Simon Glass26c20532017-08-04 16:34:51 -0600695config CMD_MEMINFO
696 bool "meminfo"
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100697 help
Simon Glass26c20532017-08-04 16:34:51 -0600698 Display memory information.
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100699
Simon Glass26c20532017-08-04 16:34:51 -0600700config CMD_MEMORY
701 bool "md, mm, nm, mw, cp, cmp, base, loop"
702 default y
Simon Glass29499a02016-01-17 20:53:51 -0700703 help
Simon Glass26c20532017-08-04 16:34:51 -0600704 Memory commands.
705 md - memory display
706 mm - memory modify (auto-incrementing address)
707 nm - memory modify (constant address)
708 mw - memory write (fill)
709 cp - memory copy
710 cmp - memory compare
711 base - print or set address offset
712 loop - initialize loop on address range
Simon Glass29499a02016-01-17 20:53:51 -0700713
Simon Glass19038de2020-06-02 19:26:49 -0600714config MEM_SEARCH
715 bool "ms - Memory search"
716 help
717 Memory-search command
718
719 This allows searching through a region of memory looking for hex
720 data (byte, 16-bit word, 32-bit long, also 64-bit on machines that
721 support it). It is also possible to search for a string. The
722 command accepts a memory range and a list of values to search for.
723 The values need to appear in memory in the same order they are given
724 in the command. At most 10 matches can be returned at a time, but
725 pressing return will show the next 10 matches. Environment variables
726 are set for use with scripting (memmatches, memaddr, mempos).
727
Joel Johnsondb5a97e2020-01-29 09:17:18 -0700728config CMD_MX_CYCLIC
Adam Ford1ef0c492019-08-14 07:54:34 -0500729 bool "Enable cyclic md/mw commands"
730 depends on CMD_MEMORY
731 help
732 Add the "mdc" and "mwc" memory commands. These are cyclic
733 "md/mw" commands.
734 Examples:
735
736 => mdc.b 10 4 500
737 This command will print 4 bytes (10,11,12,13) each 500 ms.
738
739 => mwc.l 100 12345678 10
740 This command will write 12345678 to address 100 all 10 ms.
741
Jean-Jacques Hiblotd3f09372019-07-02 14:23:26 +0200742config CMD_RANDOM
743 bool "random"
744 default y
745 depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
746 help
747 random - fill memory with random data
748
Simon Glass29499a02016-01-17 20:53:51 -0700749config CMD_MEMTEST
750 bool "memtest"
751 help
752 Simple RAM read/write test.
753
Mario Six00518992018-03-28 14:38:14 +0200754if CMD_MEMTEST
755
756config SYS_ALT_MEMTEST
757 bool "Alternative test"
758 help
759 Use a more complete alternative memory test.
760
Ashok Reddy Soma41e8edf2020-05-04 15:26:21 +0200761config SYS_MEMTEST_START
762 hex "default start address for mtest"
763 default 0
764 help
765 This is the default start address for mtest for simple read/write
766 test. If no arguments are given to mtest, default address is used
767 as start address.
768
769config SYS_MEMTEST_END
770 hex "default end address for mtest"
771 default 0x1000
772 help
773 This is the default end address for mtest for simple read/write
774 test. If no arguments are given to mtest, default address is used
775 as end address.
776
Mario Six00518992018-03-28 14:38:14 +0200777endif
778
Simon Glass26c20532017-08-04 16:34:51 -0600779config CMD_SHA1SUM
780 bool "sha1sum"
781 select SHA1
Simon Glass29499a02016-01-17 20:53:51 -0700782 help
Simon Glass26c20532017-08-04 16:34:51 -0600783 Compute SHA1 checksum.
784
785config SHA1SUM_VERIFY
786 bool "sha1sum -v"
787 depends on CMD_SHA1SUM
788 help
789 Add -v option to verify data against a SHA1 checksum.
Simon Glass29499a02016-01-17 20:53:51 -0700790
Simon Glass8e83ca82017-08-04 16:34:52 -0600791config CMD_STRINGS
792 bool "strings - display strings in memory"
793 help
794 This works similarly to the Unix 'strings' command except that it
795 works with a memory range. String of printable characters found
796 within the range are displayed. The minimum number of characters
797 for a sequence to be considered a string can be provided.
798
Simon Glassbecaa8f2017-05-17 03:25:43 -0600799endmenu
800
801menu "Compression commands"
802
803config CMD_LZMADEC
804 bool "lzmadec"
Tom Rini3237bc62017-09-29 14:32:44 -0400805 default y if CMD_BOOTI
Simon Glassbecaa8f2017-05-17 03:25:43 -0600806 select LZMA
807 help
808 Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
809 image from memory.
810
Yusuke Ashidukaa20545d2020-02-20 20:48:01 +0900811config CMD_UNLZ4
812 bool "unlz4"
813 default y if CMD_BOOTI
814 select LZ4
815 help
816 Support decompressing an LZ4 image from memory region.
817
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900818config CMD_UNZIP
819 bool "unzip"
Tom Rini3237bc62017-09-29 14:32:44 -0400820 default y if CMD_BOOTI
Michael Wallef253f2c2020-05-22 14:07:35 +0200821 select GZIP
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900822 help
823 Uncompress a zip-compressed memory region.
824
825config CMD_ZIP
826 bool "zip"
Michael Walle3a6e3512020-05-22 14:07:36 +0200827 select GZIP_COMPRESSED
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900828 help
829 Compress a memory region with zlib deflate method.
830
Simon Glass29499a02016-01-17 20:53:51 -0700831endmenu
832
833menu "Device access commands"
834
Simon Glass036bbb12017-08-04 16:34:28 -0600835config CMD_ARMFLASH
836 #depends on FLASH_CFI_DRIVER
837 bool "armflash"
838 help
839 ARM Ltd reference designs flash partition access
840
Neil Armstrong49261c72018-04-27 15:17:57 +0200841config CMD_ADC
842 bool "adc - Access Analog to Digital Converters info and data"
843 select ADC
844 select DM_REGULATOR
845 help
846 Shows ADC device info and permit printing one-shot analog converted
847 data from a named Analog to Digital Converter.
848
Eugeniu Rosca35c34be2019-05-23 17:32:22 +0200849config CMD_BCB
850 bool "bcb"
851 depends on MMC
852 depends on PARTITIONS
853 help
854 Read/modify/write the fields of Bootloader Control Block, usually
855 stored on the flash "misc" partition with its structure defined in:
856 https://android.googlesource.com/platform/bootable/recovery/+/master/
857 bootloader_message/include/bootloader_message/bootloader_message.h
858
859 Some real-life use-cases include (but are not limited to):
860 - Determine the "boot reason" (and act accordingly):
861 https://source.android.com/devices/bootloader/boot-reason
862 - Get/pass a list of commands from/to recovery:
863 https://android.googlesource.com/platform/bootable/recovery
864 - Inspect/dump the contents of the BCB fields
865
Jean-Jacques Hiblote83a31b2018-08-09 16:17:46 +0200866config CMD_BIND
867 bool "bind/unbind - Bind or unbind a device to/from a driver"
868 depends on DM
869 help
870 Bind or unbind a device to/from a driver from the command line.
871 This is useful in situations where a device may be handled by several
872 drivers. For example, this can be used to bind a UDC to the usb ether
873 gadget driver from the command line.
874
Simon Glass04ac6f12017-04-26 22:28:02 -0600875config CMD_CLK
876 bool "clk - Show clock frequencies"
877 help
878 (deprecated)
879 Shows clock frequences by calling a sock_clk_dump() hook function.
880 This is depreated in favour of using the CLK uclass and accessing
881 clock values from associated drivers. However currently no command
882 exists for this.
883
Simon Glass036bbb12017-08-04 16:34:28 -0600884config CMD_DEMO
885 bool "demo - Demonstration commands for driver model"
886 depends on DM
887 help
888 Provides a 'demo' command which can be used to play around with
889 driver model. To use this properly you will need to enable one or
890 both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
891 Otherwise you will always get an empty list of devices. The demo
892 devices are defined in the sandbox device tree, so the easiest
893 option is to use sandbox and pass the -d point to sandbox's
894 u-boot.dtb file.
895
896config CMD_DFU
897 bool "dfu"
Marek Vasutea84f802018-02-16 16:41:17 +0100898 select DFU
Simon Glass036bbb12017-08-04 16:34:28 -0600899 help
900 Enables the command "dfu" which is used to have U-Boot create a DFU
Simon Glass663b0cc2017-08-04 16:35:06 -0600901 class device via USB. This command requires that the "dfu_alt_info"
902 environment variable be set and define the alt settings to expose to
903 the host.
Simon Glass036bbb12017-08-04 16:34:28 -0600904
Simon Glass29499a02016-01-17 20:53:51 -0700905config CMD_DM
906 bool "dm - Access to driver model information"
907 depends on DM
Simon Glass29499a02016-01-17 20:53:51 -0700908 help
909 Provides access to driver model data structures and information,
910 such as a list of devices, list of uclasses and the state of each
911 device (e.g. activated). This is not required for operation, but
912 can be useful to see the state of driver model for debugging or
913 interest.
914
Alex Kiernan65de9552018-05-29 15:30:39 +0000915config CMD_FASTBOOT
916 bool "fastboot - Android fastboot support"
917 depends on FASTBOOT
918 help
919 This enables the command "fastboot" which enables the Android
920 fastboot mode for the platform. Fastboot is a protocol for
921 downloading images, flashing and device control used on
Alex Kiernand5aa57c2018-05-29 15:30:53 +0000922 Android devices. Fastboot requires either the network stack
923 enabled or support for acting as a USB device.
Alex Kiernan65de9552018-05-29 15:30:39 +0000924
Sam Protsenkocd43fa12020-01-24 17:53:44 +0200925 See doc/android/fastboot.rst for more information.
Alex Kiernan65de9552018-05-29 15:30:39 +0000926
Simon Glass036bbb12017-08-04 16:34:28 -0600927config CMD_FLASH
928 bool "flinfo, erase, protect"
929 default y
Miquel Raynald2418202019-10-25 19:39:30 +0200930 depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH
Simon Glass036bbb12017-08-04 16:34:28 -0600931 help
932 NOR flash support.
933 flinfo - print FLASH memory information
934 erase - FLASH memory
935 protect - enable or disable FLASH write protection
936
937config CMD_FPGA
938 bool "fpga"
Tuomas Tynkkynen5ca16b32018-01-27 20:28:40 +0200939 depends on FPGA
Simon Glass036bbb12017-08-04 16:34:28 -0600940 default y
941 help
942 FPGA support.
943
944config CMD_FPGA_LOADBP
945 bool "fpga loadbp - load partial bitstream (Xilinx only)"
946 depends on CMD_FPGA
947 help
948 Supports loading an FPGA device from a bitstream buffer containing
949 a partial bitstream.
950
951config CMD_FPGA_LOADFS
952 bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
953 depends on CMD_FPGA
954 help
955 Supports loading an FPGA device from a FAT filesystem.
956
957config CMD_FPGA_LOADMK
958 bool "fpga loadmk - load bitstream from image"
959 depends on CMD_FPGA
960 help
961 Supports loading an FPGA device from a image generated by mkimage.
962
963config CMD_FPGA_LOADP
964 bool "fpga loadp - load partial bitstream"
965 depends on CMD_FPGA
966 help
967 Supports loading an FPGA device from a bitstream buffer containing
968 a partial bitstream.
969
Siva Durga Prasad Paladugucce0cb02018-05-31 15:10:22 +0530970config CMD_FPGA_LOAD_SECURE
971 bool "fpga loads - loads secure bitstreams (Xilinx only)"
972 depends on CMD_FPGA
973 help
974 Enables the fpga loads command which is used to load secure
975 (authenticated or encrypted or both) bitstreams on to FPGA.
976
Simon Glass036bbb12017-08-04 16:34:28 -0600977config CMD_FPGAD
978 bool "fpgad - dump FPGA registers"
979 help
980 (legacy, needs conversion to driver model)
981 Provides a way to dump FPGA registers by calling the board-specific
982 fpga_get_reg() function. This functions similarly to the 'md'
983 command.
984
985config CMD_FUSE
986 bool "fuse - support for the fuse subssystem"
987 help
988 (deprecated - needs conversion to driver model)
989 This allows reading, sensing, programming or overriding fuses
990 which control the behaviour of the device. The command uses the
991 fuse_...() API.
992
993config CMD_GPIO
994 bool "gpio"
995 help
996 GPIO support.
997
998config CMD_GPT
999 bool "GPT (GUID Partition Table) command"
Simon Glass036bbb12017-08-04 16:34:28 -06001000 select EFI_PARTITION
Adam Fordb10ba902018-02-06 12:43:56 -06001001 select HAVE_BLOCK_DEVICE
Michal Simek84f3dec2018-07-23 15:55:13 +02001002 select PARTITION_UUIDS
Maxime Ripard24336442017-08-24 11:52:32 +02001003 imply RANDOM_UUID
Simon Glass036bbb12017-08-04 16:34:28 -06001004 help
1005 Enable the 'gpt' command to ready and write GPT style partition
1006 tables.
1007
Maxime Ripard24336442017-08-24 11:52:32 +02001008config RANDOM_UUID
1009 bool "GPT Random UUID generation"
Adam Ford70c8f052018-02-06 12:14:28 -06001010 select LIB_UUID
Maxime Ripard24336442017-08-24 11:52:32 +02001011 help
1012 Enable the generation of partitions with random UUIDs if none
1013 are provided.
1014
Simon Glass036bbb12017-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.
Simon Glass29499a02016-01-17 20:53:51 -07001022
Simon Glassa831eca2017-05-17 03:25:29 -06001023config CMD_IDE
1024 bool "ide - Support for IDE drivers"
Simon Glassb569a012017-05-17 03:25:30 -06001025 select IDE
Simon Glassa831eca2017-05-17 03:25:29 -06001026 help
1027 Provides an 'ide' command which allows accessing the IDE drive,
1028 reseting the IDE interface, printing the partition table and
1029 geting device info. It also enables the 'diskboot' command which
1030 permits booting from an IDE drive.
1031
Simon Glass3bebbe62017-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 Glass30daabc2017-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 Glass036bbb12017-08-04 16:34:28 -06001074config CMD_I2C
1075 bool "i2c"
1076 help
1077 I2C support.
1078
Eugen Hristevb879c842018-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 Glass29499a02016-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 Fourie09262bb2020-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
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001105config CMD_MMC
1106 bool "mmc"
1107 help
1108 MMC memory mapped support.
1109
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001110if CMD_MMC
1111
1112config CMD_BKOPS_ENABLE
1113 bool "mmc bkops enable"
1114 depends on CMD_MMC
1115 default n
1116 help
1117 Enable command for setting manual background operations handshake
1118 on a eMMC device. The feature is optionally available on eMMC devices
1119 conforming to standard >= 4.41.
1120
Alex Kiernan60e0f612018-05-08 04:43:31 +00001121config CMD_MMC_RPMB
1122 bool "Enable support for RPMB in the mmc command"
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001123 depends on SUPPORT_EMMC_RPMB
Alex Kiernan60e0f612018-05-08 04:43:31 +00001124 help
1125 Enable the commands for reading, writing and programming the
1126 key for the Replay Protection Memory Block partition in eMMC.
1127
Alex Kiernanc568bcb2018-05-29 15:30:52 +00001128config CMD_MMC_SWRITE
1129 bool "mmc swrite"
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001130 depends on MMC_WRITE
Alex Kiernanc568bcb2018-05-29 15:30:52 +00001131 select IMAGE_SPARSE
1132 help
1133 Enable support for the "mmc swrite" command to write Android sparse
1134 images to eMMC.
1135
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001136endif
1137
Miquel Raynal741f4c72018-09-29 12:58:28 +02001138config CMD_MTD
1139 bool "mtd"
Miquel Raynald2418202019-10-25 19:39:30 +02001140 depends on MTD
Miquel Raynal741f4c72018-09-29 12:58:28 +02001141 select MTD_PARTITIONS
1142 help
1143 MTD commands support.
1144
Simon Glass29499a02016-01-17 20:53:51 -07001145config CMD_NAND
1146 bool "nand"
Maxime Ripard5a5d71f2017-03-03 15:13:30 +01001147 default y if NAND_SUNXI
Miquel Raynald2418202019-10-25 19:39:30 +02001148 depends on MTD_RAW_NAND
Simon Glass29499a02016-01-17 20:53:51 -07001149 help
1150 NAND support.
1151
Boris Brezillon19907782017-02-27 18:22:07 +01001152if CMD_NAND
1153config CMD_NAND_TRIMFFS
1154 bool "nand write.trimffs"
Hans de Goedefd42c052017-02-27 18:22:10 +01001155 default y if ARCH_SUNXI
Boris Brezillon19907782017-02-27 18:22:07 +01001156 help
1157 Allows one to skip empty pages when flashing something on a NAND.
1158
1159config CMD_NAND_LOCK_UNLOCK
1160 bool "nand lock/unlock"
1161 help
1162 NAND locking support.
1163
1164config CMD_NAND_TORTURE
1165 bool "nand torture"
1166 help
1167 NAND torture support.
1168
1169endif # CMD_NAND
1170
Zhikang Zhang49455652017-08-03 02:30:59 -07001171config CMD_NVME
1172 bool "nvme"
1173 depends on NVME
1174 default y if NVME
1175 help
1176 NVM Express device support
1177
Simon Glassa2a82072017-08-04 16:34:31 -06001178config CMD_ONENAND
1179 bool "onenand - access to onenand device"
Miquel Raynald2418202019-10-25 19:39:30 +02001180 depends on MTD
Simon Glassa2a82072017-08-04 16:34:31 -06001181 help
1182 OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1183 various useful features. This command allows reading, writing,
1184 and erasing blocks. It allso provides a way to show and change
1185 bad blocks, and test the device.
1186
Mario Sixf8395902018-09-27 09:19:34 +02001187config CMD_OSD
1188 bool "osd"
1189 help
1190 Enable the 'osd' command which allows to query information from and
1191 write text data to a on-screen display (OSD) device; a virtual device
1192 associated with a display capable of displaying a text overlay on the
1193 display it's associated with..
1194
Patrick Delaunay73287092017-01-27 11:00:42 +01001195config CMD_PART
1196 bool "part"
Adam Fordb10ba902018-02-06 12:43:56 -06001197 select HAVE_BLOCK_DEVICE
Michal Simek84f3dec2018-07-23 15:55:13 +02001198 select PARTITION_UUIDS
Patrick Delaunay73287092017-01-27 11:00:42 +01001199 help
1200 Read and display information about the partition table on
1201 various media.
1202
Simon Glassc88a09a2017-08-04 16:34:34 -06001203config CMD_PCI
1204 bool "pci - Access PCI devices"
1205 help
1206 Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1207 used on some devices to allow the CPU to communicate with its
1208 peripherals. Sub-commands allow bus enumeration, displaying and
1209 changing configuration space and a few other features.
1210
Patrice Chotardc4b4ef02018-10-24 14:10:17 +02001211config CMD_PINMUX
1212 bool "pinmux - show pins muxing"
1213 default y if PINCTRL
1214 help
1215 Parse all available pin-controllers and show pins muxing. This
1216 is useful for debug purpoer to check the pin muxing and to know if
1217 a pin is configured as a GPIO or as an alternate function.
1218
Adam Fordc4f16322018-09-09 07:05:57 -05001219config CMD_POWEROFF
1220 bool "poweroff"
1221 help
1222 Poweroff/Shutdown the system
1223
Simon Glassc05459b2017-08-04 16:34:39 -06001224config CMD_READ
1225 bool "read - Read binary data from a partition"
1226 help
1227 Provides low-level access to the data in a partition.
1228
Simon Glass036bbb12017-08-04 16:34:28 -06001229config CMD_REMOTEPROC
1230 bool "remoteproc"
1231 depends on REMOTEPROC
1232 help
1233 Support for Remote Processor control
1234
1235config CMD_SATA
1236 bool "sata - Access SATA subsystem"
1237 select SATA
1238 help
1239 SATA (Serial Advanced Technology Attachment) is a serial bus
1240 standard for connecting to hard drives and other storage devices.
1241 This command provides information about attached devices and allows
1242 reading, writing and other operations.
1243
1244 SATA replaces PATA (originally just ATA), which stands for Parallel AT
1245 Attachment, where AT refers to an IBM AT (Advanced Technology)
1246 computer released in 1984.
1247
Simon Glassd09f3772017-08-04 16:34:43 -06001248config CMD_SAVES
1249 bool "saves - Save a file over serial in S-Record format"
1250 help
1251 Provides a way to save a binary file using the Motorola S-Record
1252 format over the serial line.
1253
Heinrich Schuchardta0f52832018-02-14 08:05:44 +01001254config CMD_SCSI
1255 bool "scsi - Access to SCSI devices"
1256 default y if SCSI
1257 help
1258 This provides a 'scsi' command which provides access to SCSI (Small
1259 Computer System Interface) devices. The command provides a way to
1260 scan the bus, reset the bus, read and write data and get information
1261 about devices.
1262
Simon Glass6870d2e2017-08-04 16:34:45 -06001263config CMD_SDRAM
1264 bool "sdram - Print SDRAM configuration information"
1265 help
1266 Provides information about attached SDRAM. This assumed that the
1267 SDRAM has an EEPROM with information that can be read using the
1268 I2C bus. This is only available on some boards.
1269
Simon Glass29499a02016-01-17 20:53:51 -07001270config CMD_SF
1271 bool "sf"
Tom Rinie5289a72019-05-29 17:01:28 -04001272 depends on DM_SPI_FLASH || SPI_FLASH
Jagan Teki132e81f2019-10-16 17:59:42 +05301273 default y if DM_SPI_FLASH
Simon Glass29499a02016-01-17 20:53:51 -07001274 help
1275 SPI Flash support
1276
Simon Glass86b1b652017-08-04 16:34:46 -06001277config CMD_SF_TEST
1278 bool "sf test - Allow testing of SPI flash"
Tom Rinie5289a72019-05-29 17:01:28 -04001279 depends on CMD_SF
Simon Glass86b1b652017-08-04 16:34:46 -06001280 help
1281 Provides a way to test that SPI flash is working correctly. The
1282 test is destructive, in that an area of SPI flash must be provided
1283 for the test to use. Performance information is also provided,
1284 measuring the performance of reading, writing and erasing in
1285 Mbps (Million Bits Per Second). This value should approximately
1286 equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1287 everything is working properly.
1288
Simon Glass29499a02016-01-17 20:53:51 -07001289config CMD_SPI
Patrick Delaunay5a6b52b2019-02-27 15:20:37 +01001290 bool "sspi - Command to access spi device"
Tom Rinie5289a72019-05-29 17:01:28 -04001291 depends on SPI
Simon Glass29499a02016-01-17 20:53:51 -07001292 help
1293 SPI utility command.
1294
Patrick Delaunay5a6b52b2019-02-27 15:20:37 +01001295config DEFAULT_SPI_BUS
1296 int "default spi bus used by sspi command"
1297 depends on CMD_SPI
1298 default 0
1299
1300config DEFAULT_SPI_MODE
1301 hex "default spi mode used by sspi command (see include/spi.h)"
1302 depends on CMD_SPI
1303 default 0
1304
Simon Glass80a56cd2017-08-04 16:35:00 -06001305config CMD_TSI148
1306 bool "tsi148 - Command to access tsi148 device"
1307 help
1308 This provides various sub-commands to initialise and configure the
1309 Turndra tsi148 device. See the command help for full details.
1310
Faiz Abbas61e9fbb2019-10-15 18:24:40 +05301311config CMD_UFS
1312 bool "Enable UFS - Universal Flash Subsystem commands"
1313 depends on UFS
1314 help
1315 "This provides commands to initialise and configure universal flash
1316 subsystem devices"
1317
Simon Glass0c03c1a2017-08-04 16:35:01 -06001318config CMD_UNIVERSE
1319 bool "universe - Command to set up the Turndra Universe controller"
1320 help
1321 This allows setting up the VMEbus provided by this controller.
1322 See the command help for full details.
1323
Simon Glass29499a02016-01-17 20:53:51 -07001324config CMD_USB
1325 bool "usb"
Adam Fordb10ba902018-02-06 12:43:56 -06001326 select HAVE_BLOCK_DEVICE
Simon Glass29499a02016-01-17 20:53:51 -07001327 help
1328 USB support.
1329
Stefan Agnerd9d661c2017-08-16 11:00:53 -07001330config CMD_USB_SDP
1331 bool "sdp"
1332 select USB_FUNCTION_SDP
1333 help
1334 Enables the command "sdp" which is used to have U-Boot emulating the
1335 Serial Download Protocol (SDP) via USB.
Michal Simekf751ff52018-07-23 15:55:12 +02001336
Eddie Cai5e3020b2017-12-15 08:17:11 +08001337config CMD_ROCKUSB
1338 bool "rockusb"
1339 depends on USB_FUNCTION_ROCKUSB
1340 help
Michal Simekf751ff52018-07-23 15:55:12 +02001341 Rockusb protocol is widely used by Rockchip SoC based devices. It can
Eddie Cai5e3020b2017-12-15 08:17:11 +08001342 read/write info, image to/from devices. This enable rockusb command
1343 support to communication with rockusb device. for more detail about
1344 this command, please read doc/README.rockusb.
Stefan Agnerd9d661c2017-08-16 11:00:53 -07001345
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001346config CMD_USB_MASS_STORAGE
1347 bool "UMS usb mass storage"
Lukasz Majewski6e782742018-01-29 19:28:02 +01001348 select USB_FUNCTION_MASS_STORAGE
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001349 help
1350 USB mass storage support
1351
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -07001352config CMD_VIRTIO
1353 bool "virtio"
1354 depends on VIRTIO
1355 default y if VIRTIO
1356 help
1357 VirtIO block device support
1358
Michael Walle23964a82019-04-06 02:24:02 +02001359config CMD_WDT
1360 bool "wdt"
1361 depends on WDT
1362 help
1363 This provides commands to control the watchdog timer devices.
1364
Mario Sixfd1cc422018-08-09 14:51:21 +02001365config CMD_AXI
1366 bool "axi"
1367 depends on AXI
1368 help
1369 Enable the command "axi" for accessing AXI (Advanced eXtensible
1370 Interface) busses, a on-chip interconnect specification for managing
1371 functional blocks in SoC designs, which is also often used in designs
1372 involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs).
Simon Glass29499a02016-01-17 20:53:51 -07001373endmenu
1374
1375
1376menu "Shell scripting commands"
1377
1378config CMD_ECHO
1379 bool "echo"
1380 default y
1381 help
1382 Echo args to console
1383
1384config CMD_ITEST
1385 bool "itest"
1386 default y
1387 help
1388 Return true/false on integer compare.
1389
1390config CMD_SOURCE
1391 bool "source"
1392 default y
1393 help
1394 Run script from memory
1395
1396config CMD_SETEXPR
1397 bool "setexpr"
1398 default y
1399 help
1400 Evaluate boolean and math expressions and store the result in an env
1401 variable.
1402 Also supports loading the value at a memory location into a variable.
1403 If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1404
1405endmenu
1406
Ruslan Trofymenkoa24f9b42019-07-05 15:37:33 +03001407menu "Android support commands"
1408
1409config CMD_AB_SELECT
1410 bool "ab_select"
1411 default n
1412 depends on ANDROID_AB
1413 help
1414 On Android devices with more than one boot slot (multiple copies of
1415 the kernel and system images) this provides a command to select which
1416 slot should be used to boot from and register the boot attempt. This
1417 is used by the new A/B update model where one slot is updated in the
1418 background while running from the other slot.
1419
1420endmenu
1421
Michal Simek2f785a12018-02-26 16:01:02 +01001422if NET
1423
Joe Hershbergerb0429462018-04-13 15:26:30 -05001424menuconfig CMD_NET
1425 bool "Network commands"
1426 default y
Adam Ford53705472018-07-20 23:03:57 -05001427 imply NETDEVICES
Joe Hershbergerb0429462018-04-13 15:26:30 -05001428
1429if CMD_NET
1430
1431config CMD_BOOTP
1432 bool "bootp"
Simon Glass29499a02016-01-17 20:53:51 -07001433 default y
1434 help
Simon Glass29499a02016-01-17 20:53:51 -07001435 bootp - boot image via network using BOOTP/TFTP protocol
Joe Hershbergerb0429462018-04-13 15:26:30 -05001436
Joe Hershberger01261792018-04-13 15:26:33 -05001437config CMD_DHCP
1438 bool "dhcp"
1439 depends on CMD_BOOTP
1440 help
1441 Boot image via network using DHCP/TFTP protocol
1442
Joe Hershberger0824ad92018-04-13 15:26:32 -05001443config BOOTP_BOOTPATH
Joe Hershberger06661e12018-04-13 15:26:34 -05001444 bool "Request & store 'rootpath' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001445 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001446 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001447 help
1448 Even though the config is called BOOTP_BOOTPATH, it stores the
1449 path in the variable 'rootpath'.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001450
1451config BOOTP_DNS
Joe Hershberger06661e12018-04-13 15:26:34 -05001452 bool "Request & store 'dnsip' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001453 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001454 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001455 help
1456 The primary DNS server is stored as 'dnsip'. If two servers are
1457 returned, you must set BOOTP_DNS2 to store that second server IP
1458 also.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001459
Joe Hershberger63e70712018-04-13 15:26:35 -05001460config BOOTP_DNS2
1461 bool "Store 'dnsip2' from BOOTP/DHCP server"
1462 depends on BOOTP_DNS
1463 help
1464 If a DHCP client requests the DNS server IP from a DHCP server,
1465 it is possible that more than one DNS serverip is offered to the
1466 client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1467 server IP will be stored in the additional environment
1468 variable "dnsip2". The first DNS serverip is always
1469 stored in the variable "dnsip", when BOOTP_DNS is defined.
1470
Joe Hershberger0824ad92018-04-13 15:26:32 -05001471config BOOTP_GATEWAY
Joe Hershberger06661e12018-04-13 15:26:34 -05001472 bool "Request & store 'gatewayip' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001473 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001474 depends on CMD_BOOTP
1475
1476config BOOTP_HOSTNAME
Joe Hershberger06661e12018-04-13 15:26:34 -05001477 bool "Request & store 'hostname' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001478 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001479 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001480 help
1481 The name may or may not be qualified with the local domain name.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001482
Alexander Graf427e6952018-06-15 10:29:28 +02001483config BOOTP_PREFER_SERVERIP
1484 bool "serverip variable takes precedent over DHCP server IP."
1485 depends on CMD_BOOTP
1486 help
1487 By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1488
1489 With this option enabled, the 'serverip' variable in the environment
1490 takes precedence over DHCP server IP and will only be set by the DHCP
1491 server if not already set in the environment.
1492
Joe Hershberger0824ad92018-04-13 15:26:32 -05001493config BOOTP_SUBNETMASK
Joe Hershberger06661e12018-04-13 15:26:34 -05001494 bool "Request & store 'netmask' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001495 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001496 depends on CMD_BOOTP
1497
Chris Packhambfa7c212018-05-03 20:19:02 +12001498config BOOTP_NTPSERVER
1499 bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1500 depends on CMD_BOOTP
1501
Ramon Friedac598c12019-07-18 21:43:30 +03001502config CMD_PCAP
1503 bool "pcap capture"
1504 help
1505 Selecting this will allow capturing all Ethernet packets and store
1506 them in physical memory in a PCAP formated file,
1507 later to be analyzed by PCAP reader application (IE. WireShark).
1508
Joe Hershberger0824ad92018-04-13 15:26:32 -05001509config BOOTP_PXE
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001510 bool "Send PXE client arch to BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001511 default y
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001512 depends on CMD_BOOTP && CMD_PXE
1513 help
1514 Supported for ARM, ARM64, and x86 for now.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001515
1516config BOOTP_PXE_CLIENTARCH
1517 hex
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001518 depends on BOOTP_PXE
Joe Hershberger0824ad92018-04-13 15:26:32 -05001519 default 0x16 if ARM64
1520 default 0x15 if ARM
1521 default 0 if X86
1522
1523config BOOTP_VCI_STRING
1524 string
1525 depends on CMD_BOOTP
Michal Simekf4359382018-04-26 18:21:29 +05301526 default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
Joe Hershberger0824ad92018-04-13 15:26:32 -05001527 default "U-Boot.armv8" if ARM64
1528 default "U-Boot.arm" if ARM
1529 default "U-Boot"
1530
Joe Hershbergerb0429462018-04-13 15:26:30 -05001531config CMD_TFTPBOOT
1532 bool "tftpboot"
1533 default y
1534 help
Simon Glass29499a02016-01-17 20:53:51 -07001535 tftpboot - boot image via network using TFTP protocol
1536
1537config CMD_TFTPPUT
1538 bool "tftp put"
Joe Hershbergerb0429462018-04-13 15:26:30 -05001539 depends on CMD_TFTPBOOT
Simon Glass29499a02016-01-17 20:53:51 -07001540 help
1541 TFTP put command, for uploading files to a server
1542
1543config CMD_TFTPSRV
1544 bool "tftpsrv"
Joe Hershbergerb0429462018-04-13 15:26:30 -05001545 depends on CMD_TFTPBOOT
Simon Glass29499a02016-01-17 20:53:51 -07001546 help
1547 Act as a TFTP server and boot the first received file
1548
Joe Hershberger0824ad92018-04-13 15:26:32 -05001549config NET_TFTP_VARS
1550 bool "Control TFTP timeout and count through environment"
1551 depends on CMD_TFTPBOOT
1552 default y
1553 help
1554 If set, allows controlling the TFTP timeout through the
1555 environment variable tftptimeout, and the TFTP maximum
1556 timeout count through the variable tftptimeoutcountmax.
1557 If unset, timeout and maximum are hard-defined as 1 second
1558 and 10 timouts per TFTP transfer.
1559
Simon Glass29499a02016-01-17 20:53:51 -07001560config CMD_RARP
1561 bool "rarpboot"
1562 help
1563 Boot image via network using RARP/TFTP protocol
1564
Simon Glass29499a02016-01-17 20:53:51 -07001565config CMD_NFS
1566 bool "nfs"
1567 default y
1568 help
1569 Boot image via network using NFS protocol.
1570
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001571config CMD_MII
1572 bool "mii"
Ramon Frieddeb6c502019-09-13 18:25:03 +03001573 imply CMD_MDIO
1574 help
1575 If set, allows 802.3(clause 22) MII Management functions interface access
1576 The management interface specified in Clause 22 provides
1577 a simple, two signal, serial interface to connect a
1578 Station Management entity and a managed PHY for providing access
1579 to management parameters and services.
1580 The interface is referred to as the MII management interface.
1581
1582config CMD_MDIO
1583 bool "mdio"
1584 depends on PHYLIB
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001585 help
Ramon Frieddeb6c502019-09-13 18:25:03 +03001586 If set, allows Enable 802.3(clause 45) MDIO interface registers access
1587 The MDIO interface is orthogonal to the MII interface and extends
1588 it by adding access to more registers through indirect addressing.
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001589
Simon Glass29499a02016-01-17 20:53:51 -07001590config CMD_PING
1591 bool "ping"
1592 help
1593 Send ICMP ECHO_REQUEST to network host
1594
1595config CMD_CDP
1596 bool "cdp"
1597 help
1598 Perform CDP network configuration
1599
1600config CMD_SNTP
1601 bool "sntp"
1602 help
1603 Synchronize RTC via network
1604
1605config CMD_DNS
1606 bool "dns"
1607 help
1608 Lookup the IP of a hostname
1609
1610config CMD_LINK_LOCAL
1611 bool "linklocal"
Joe Hershberger51d78982018-04-30 12:45:22 -05001612 select LIB_RAND
Simon Glass29499a02016-01-17 20:53:51 -07001613 help
1614 Acquire a network IP address using the link-local protocol
1615
Joe Hershberger0824ad92018-04-13 15:26:32 -05001616endif
1617
Simon Glass12b85702017-05-17 03:25:17 -06001618config CMD_ETHSW
1619 bool "ethsw"
1620 help
1621 Allow control of L2 Ethernet switch commands. These are supported
1622 by the vsc9953 Ethernet driver at present. Sub-commands allow
1623 operations such as enabling / disabling a port and
1624 viewing/maintaining the filtering database (FDB)
1625
Joe Hershberger0824ad92018-04-13 15:26:32 -05001626config CMD_PXE
1627 bool "pxe"
1628 select MENU
1629 help
1630 Boot image via network using PXE protocol
Michal Simek2f785a12018-02-26 16:01:02 +01001631
Lothar Felten776fc102018-06-22 22:29:54 +02001632config CMD_WOL
1633 bool "wol"
1634 help
1635 Wait for wake-on-lan Magic Packet
1636
Joe Hershbergerb0429462018-04-13 15:26:30 -05001637endif
Simon Glass29499a02016-01-17 20:53:51 -07001638
1639menu "Misc commands"
1640
Simon Glassb575bfc2017-04-26 22:27:55 -06001641config CMD_BMP
1642 bool "Enable 'bmp' command"
1643 depends on LCD || DM_VIDEO || VIDEO
1644 help
Andrius Å tikonas1d5ccd62019-09-23 22:43:41 +01001645 This provides a way to obtain information about a BMP-format image
Simon Glassb575bfc2017-04-26 22:27:55 -06001646 and to display it. BMP (which presumably stands for BitMaP) is a
1647 file format defined by Microsoft which supports images of various
1648 depths, formats and compression methods. Headers on the file
1649 determine the formats used. This command can be used by first loading
1650 the image into RAM, then using this command to look at it or display
1651 it.
1652
Alex Kiernane710fa62018-05-12 05:49:47 +00001653config CMD_BOOTCOUNT
1654 bool "bootcount"
1655 depends on BOOTCOUNT_LIMIT
1656 help
1657 Enable the bootcount command, which allows interrogation and
1658 reset of the bootcounter.
1659
Simon Glassffab9a02017-04-26 22:27:56 -06001660config CMD_BSP
1661 bool "Enable board-specific commands"
1662 help
1663 (deprecated: instead, please define a Kconfig option for each command)
1664
1665 Some boards have board-specific commands which are only enabled
1666 during developemnt and need to be turned off for production. This
1667 option provides a way to control this. The commands that are enabled
1668 vary depending on the board.
1669
Eric Nelsonfaf4f052016-03-28 10:05:44 -07001670config CMD_BLOCK_CACHE
1671 bool "blkcache - control and stats for block cache"
1672 depends on BLOCK_CACHE
1673 default y if BLOCK_CACHE
1674 help
1675 Enable the blkcache command, which can be used to control the
1676 operation of the cache functions.
1677 This is most useful when fine-tuning the operation of the cache
1678 during development, but also allows the cache to be disabled when
1679 it might hurt performance (e.g. when using the ums command).
1680
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001681config CMD_CACHE
1682 bool "icache or dcache"
1683 help
1684 Enable the "icache" and "dcache" commands
1685
Heinrich Schuchardt13ea6852018-09-07 19:43:11 +02001686config CMD_CONITRACE
1687 bool "conitrace - trace console input codes"
1688 help
1689 Enable the 'conitrace' command which displays the codes received
1690 from the console input as hexadecimal numbers.
1691
Anatolij Gustschine0455a42018-12-01 10:47:20 +01001692config CMD_CLS
1693 bool "Enable clear screen command 'cls'"
1694 depends on CFB_CONSOLE || DM_VIDEO || LCD || VIDEO
1695 default y if LCD
1696 help
1697 Enable the 'cls' command which clears the screen contents
1698 on video frame buffer.
1699
AKASHI Takahiroe7c08832019-02-25 15:54:38 +09001700config CMD_EFIDEBUG
1701 bool "efidebug - display/configure UEFI environment"
1702 depends on EFI_LOADER
Heinrich Schuchardt3db35912019-05-11 09:53:33 +02001703 select EFI_DEVICE_PATH_TO_TEXT
AKASHI Takahiroe7c08832019-02-25 15:54:38 +09001704 default n
1705 help
1706 Enable the 'efidebug' command which provides a subset of UEFI
1707 shell utility with simplified functionality. It will be useful
1708 particularly for managing boot parameters as well as examining
1709 various EFI status for debugging.
1710
Heinrich Schuchardtf7d6b072018-12-26 17:20:35 +01001711config CMD_EXCEPTION
1712 bool "exception - raise exception"
1713 depends on ARM || RISCV || X86
1714 help
1715 Enable the 'exception' command which allows to raise an exception.
1716
Simon Glassfc8a5292017-04-10 11:34:59 -06001717config CMD_LED
1718 bool "led"
Jan Kiszka89077ba2019-01-03 09:08:42 +01001719 depends on LED
Simon Glassfc8a5292017-04-10 11:34:59 -06001720 default y if LED
1721 help
1722 Enable the 'led' command which allows for control of LEDs supported
1723 by the board. The LEDs can be listed with 'led list' and controlled
1724 with led on/off/togle/blink. Any LED drivers can be controlled with
1725 this command, e.g. led_gpio.
1726
Chris Packham3e257df2017-04-29 15:20:28 +12001727config CMD_DATE
1728 bool "date"
1729 default y if DM_RTC
AKASHI Takahiro51ba5222019-11-13 09:44:49 +09001730 select LIB_DATE
Chris Packham3e257df2017-04-29 15:20:28 +12001731 help
1732 Enable the 'date' command for getting/setting the time/date in RTC
1733 devices.
1734
Rasmus Villemoescc092022020-07-06 22:01:15 +02001735config CMD_RTC
1736 bool "rtc"
1737 depends on DM_RTC
1738 help
1739 Enable the 'rtc' command for low-level access to RTC devices.
1740
Simon Glass29499a02016-01-17 20:53:51 -07001741config CMD_TIME
1742 bool "time"
1743 help
1744 Run commands and summarize execution time.
1745
Simon Glassfa744522017-05-17 03:25:23 -06001746config CMD_GETTIME
1747 bool "gettime - read elapsed time"
1748 help
1749 Enable the 'gettime' command which reads the elapsed time since
1750 U-Boot started running. This shows the time in seconds and
1751 milliseconds. See also the 'bootstage' command which provides more
1752 flexibility for boot timing.
1753
Heinrich Schuchardta31a5942019-12-24 22:17:37 +01001754config CMD_RNG
1755 bool "rng command"
1756 depends on DM_RNG
1757 select HEXDUMP
1758 help
1759 Print bytes from the hardware random number generator.
1760
Simon Glass29499a02016-01-17 20:53:51 -07001761# TODO: rename to CMD_SLEEP
1762config CMD_MISC
1763 bool "sleep"
1764 default y
1765 help
1766 Delay execution for some time
1767
Siva Durga Prasad Paladugu8e45f1a2018-06-19 12:24:23 +02001768config MP
1769 bool "support for multiprocessor"
1770 help
1771 This provides an option to brinup
1772 different processors in multiprocessor
1773 cases.
1774
Simon Glass29499a02016-01-17 20:53:51 -07001775config CMD_TIMER
1776 bool "timer"
1777 help
1778 Access the system timer.
1779
Simon Glass29499a02016-01-17 20:53:51 -07001780config CMD_SOUND
1781 bool "sound"
1782 depends on SOUND
1783 help
1784 This provides basic access to the U-Boot's sound support. The main
1785 feature is to play a beep.
1786
1787 sound init - set up sound system
1788 sound play - play a sound
1789
Patrice Chotard7b81c052019-11-25 09:07:38 +01001790config CMD_SYSBOOT
1791 bool "sysboot"
1792 select MENU
1793 help
1794 Boot image via local extlinux.conf file
1795
Miao Yan92106272016-05-22 19:37:17 -07001796config CMD_QFW
Tom Rinibcb3c8d2016-05-06 10:40:22 -04001797 bool "qfw"
Miao Yan4fcd7f22016-05-22 19:37:14 -07001798 select QFW
Tom Rinibcb3c8d2016-05-06 10:40:22 -04001799 help
1800 This provides access to the QEMU firmware interface. The main
1801 feature is to allow easy loading of files passed to qemu-system
1802 via -kernel / -initrd
Konstantin Porotchkin97d26782016-12-08 12:22:28 +02001803
1804source "cmd/mvebu/Kconfig"
1805
Simon Glass89342ef2017-08-04 16:34:55 -06001806config CMD_TERMINAL
1807 bool "terminal - provides a way to attach a serial terminal"
1808 help
1809 Provides a 'cu'-like serial terminal command. This can be used to
1810 access other serial ports from the system console. The terminal
1811 is very simple with no special processing of characters. As with
1812 cu, you can press ~. (tilde followed by period) to exit.
1813
Simon Glass6d56aad2017-08-04 16:35:02 -06001814config CMD_UUID
1815 bool "uuid, guid - generation of unique IDs"
Adam Ford70c8f052018-02-06 12:14:28 -06001816 select LIB_UUID
Simon Glass6d56aad2017-08-04 16:35:02 -06001817 help
1818 This enables two commands:
1819
1820 uuid - generate random Universally Unique Identifier
1821 guid - generate Globally Unique Identifier based on random UUID
1822
1823 The two commands are very similar except for the endianness of the
1824 output.
1825
Simon Glass29499a02016-01-17 20:53:51 -07001826endmenu
1827
Lokesh Vutla962c4e02017-12-29 11:47:49 +05301828source "cmd/ti/Kconfig"
1829
Simon Glass29499a02016-01-17 20:53:51 -07001830config CMD_BOOTSTAGE
1831 bool "Enable the 'bootstage' command"
1832 depends on BOOTSTAGE
1833 help
1834 Add a 'bootstage' command which supports printing a report
1835 and un/stashing of bootstage data.
1836
1837menu "Power commands"
1838config CMD_PMIC
1839 bool "Enable Driver Model PMIC command"
1840 depends on DM_PMIC
1841 help
1842 This is the pmic command, based on a driver model pmic's API.
1843 Command features are unchanged:
1844 - list - list pmic devices
1845 - pmic dev <id> - show or [set] operating pmic device (NEW)
1846 - pmic dump - dump registers
1847 - pmic read address - read byte of register at address
1848 - pmic write address - write byte to register at address
1849 The only one change for this command is 'dev' subcommand.
1850
1851config CMD_REGULATOR
1852 bool "Enable Driver Model REGULATOR command"
1853 depends on DM_REGULATOR
1854 help
1855 This command is based on driver model regulator's API.
1856 User interface features:
1857 - list - list regulator devices
1858 - regulator dev <id> - show or [set] operating regulator device
1859 - regulator info - print constraints info
1860 - regulator status - print operating status
1861 - regulator value <val] <-f> - print/[set] voltage value [uV]
1862 - regulator current <val> - print/[set] current value [uA]
1863 - regulator mode <id> - print/[set] operating mode id
1864 - regulator enable - enable the regulator output
1865 - regulator disable - disable the regulator output
1866
1867 The '-f' (force) option can be used for set the value which exceeds
1868 the limits, which are found in device-tree and are kept in regulator's
1869 uclass platdata structure.
1870
1871endmenu
1872
1873menu "Security commands"
Simon Glass528fdd12017-04-26 22:27:49 -06001874config CMD_AES
1875 bool "Enable the 'aes' command"
1876 select AES
1877 help
1878 This provides a means to encrypt and decrypt data using the AES
1879 (Advanced Encryption Standard). This algorithm uses a symetric key
1880 and is widely used as a streaming cipher. Different key lengths are
1881 supported by the algorithm but this command only supports 128 bits
1882 at present.
1883
Simon Glass311ec4f2017-04-26 22:27:53 -06001884config CMD_BLOB
1885 bool "Enable the 'blob' command"
1886 help
1887 This is used with the Freescale secure boot mechanism.
1888
1889 Freescale's SEC block has built-in Blob Protocol which provides
1890 a method for protecting user-defined data across system power
1891 cycles. SEC block protects data in a data structure called a Blob,
1892 which provides both confidentiality and integrity protection.
1893
1894 Encapsulating data as a blob
1895 Each time that the Blob Protocol is used to protect data, a
1896 different randomly generated key is used to encrypt the data.
1897 This random key is itself encrypted using a key which is derived
1898 from SoC's non-volatile secret key and a 16 bit Key identifier.
1899 The resulting encrypted key along with encrypted data is called a
1900 blob. The non-volatile secure key is available for use only during
1901 secure boot.
1902
1903 During decapsulation, the reverse process is performed to get back
1904 the original data.
1905
1906 Sub-commands:
Michal Simekf751ff52018-07-23 15:55:12 +02001907 blob enc - encapsulating data as a cryptgraphic blob
Simon Glass311ec4f2017-04-26 22:27:53 -06001908 blob dec - decapsulating cryptgraphic blob to get the data
1909
1910 Syntax:
1911
1912 blob enc src dst len km
1913
1914 Encapsulate and create blob of data $len bytes long
1915 at address $src and store the result at address $dst.
1916 $km is the 16 byte key modifier is also required for
1917 generation/use as key for cryptographic operation. Key
1918 modifier should be 16 byte long.
1919
1920 blob dec src dst len km
1921
1922 Decapsulate the blob of data at address $src and
1923 store result of $len byte at addr $dst.
1924 $km is the 16 byte key modifier is also required for
1925 generation/use as key for cryptographic operation. Key
1926 modifier should be 16 byte long.
1927
Simon Glass027608e2017-05-17 03:25:25 -06001928config CMD_HASH
1929 bool "Support 'hash' command"
Simon Glassb22ec7a2017-05-17 09:05:34 -06001930 select HASH
Simon Glass027608e2017-05-17 03:25:25 -06001931 help
1932 This provides a way to hash data in memory using various supported
1933 algorithms (such as SHA1, MD5, CRC32). The computed digest can be
1934 saved to memory or to an environment variable. It is also possible
1935 to verify a hash against data in memory.
1936
Michalis Pappasd382d222018-04-13 10:40:57 +03001937config CMD_HVC
1938 bool "Support the 'hvc' command"
1939 depends on ARM_SMCCC
1940 help
1941 Allows issuing Hypervisor Calls (HVCs). Mostly useful for
1942 development and testing.
1943
1944config CMD_SMC
1945 bool "Support the 'smc' command"
1946 depends on ARM_SMCCC
1947 help
1948 Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
1949 development and testing.
1950
Daniel Thompsona9e2c672017-05-19 17:26:58 +01001951config HASH_VERIFY
1952 bool "hash -v"
1953 depends on CMD_HASH
1954 help
1955 Add -v option to verify data against a hash.
1956
Miquel Raynal294f82a2018-05-15 11:57:05 +02001957config CMD_TPM_V1
1958 bool
1959
1960config CMD_TPM_V2
1961 bool
Tom Rini124a7ac2018-07-28 09:20:12 -04001962 select CMD_LOG
Miquel Raynal294f82a2018-05-15 11:57:05 +02001963
Simon Glass29499a02016-01-17 20:53:51 -07001964config CMD_TPM
1965 bool "Enable the 'tpm' command"
Miquel Raynal294f82a2018-05-15 11:57:05 +02001966 depends on TPM_V1 || TPM_V2
1967 select CMD_TPM_V1 if TPM_V1
1968 select CMD_TPM_V2 if TPM_V2
Simon Glass29499a02016-01-17 20:53:51 -07001969 help
1970 This provides a means to talk to a TPM from the command line. A wide
1971 range of commands if provided - see 'tpm help' for details. The
1972 command requires a suitable TPM on your board and the correct driver
1973 must be enabled.
1974
Miquel Raynal294f82a2018-05-15 11:57:05 +02001975if CMD_TPM
1976
Simon Glass29499a02016-01-17 20:53:51 -07001977config CMD_TPM_TEST
1978 bool "Enable the 'tpm test' command"
Miquel Raynal294f82a2018-05-15 11:57:05 +02001979 depends on TPM_V1
Simon Glass29499a02016-01-17 20:53:51 -07001980 help
Miquel Raynal294f82a2018-05-15 11:57:05 +02001981 This provides a a series of tests to confirm that the TPMv1.x is
1982 working correctly. The tests cover initialisation, non-volatile RAM,
1983 extend, global lock and checking that timing is within expectations.
1984 The tests pass correctly on Infineon TPMs but may need to be adjusted
Simon Glass29499a02016-01-17 20:53:51 -07001985 for other devices.
1986
Miquel Raynal294f82a2018-05-15 11:57:05 +02001987endif
1988
Simon Glass29499a02016-01-17 20:53:51 -07001989endmenu
1990
Moritz Fischer62b30272016-10-04 17:08:08 -07001991menu "Firmware commands"
1992config CMD_CROS_EC
1993 bool "Enable crosec command"
1994 depends on CROS_EC
1995 default y
1996 help
1997 Enable command-line access to the Chrome OS EC (Embedded
1998 Controller). This provides the 'crosec' command which has
1999 a number of sub-commands for performing EC tasks such as
2000 updating its flash, accessing a small saved context area
2001 and talking to the I2C bus behind the EC (if there is one).
2002endmenu
2003
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002004menu "Filesystem commands"
Marek Behún27cec792017-09-03 17:00:30 +02002005config CMD_BTRFS
2006 bool "Enable the 'btrsubvol' command"
2007 select FS_BTRFS
2008 help
2009 This enables the 'btrsubvol' command to list subvolumes
2010 of a BTRFS filesystem. There are no special commands for
2011 listing BTRFS directories or loading BTRFS files - this
2012 can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
2013 when BTRFS is enabled (see FS_BTRFS).
2014
Simon Glass0501e3e2017-04-26 22:27:58 -06002015config CMD_CBFS
2016 bool "Enable the 'cbfs' command"
Simon Glass579b51a2017-04-26 22:27:59 -06002017 depends on FS_CBFS
Simon Glass0501e3e2017-04-26 22:27:58 -06002018 help
2019 Define this to enable support for reading from a Coreboot
2020 filesystem. This is a ROM-based filesystem used for accessing files
2021 on systems that use coreboot as the first boot-loader and then load
2022 U-Boot to actually boot the Operating System. Available commands are
2023 cbfsinit, cbfsinfo, cbfsls and cbfsload.
2024
Simon Glass519805e2017-04-26 22:28:03 -06002025config CMD_CRAMFS
2026 bool "Enable the 'cramfs' command"
Simon Glass690f5092017-04-26 22:28:04 -06002027 depends on FS_CRAMFS
Simon Glass519805e2017-04-26 22:28:03 -06002028 help
2029 This provides commands for dealing with CRAMFS (Compressed ROM
2030 filesystem). CRAMFS is useful when space is tight since files are
2031 compressed. Two commands are provided:
2032
2033 cramfsls - lists files in a cramfs image
2034 cramfsload - loads a file from a cramfs image
2035
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002036config CMD_EXT2
2037 bool "ext2 command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02002038 select FS_EXT4
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002039 help
2040 Enables EXT2 FS command
2041
2042config CMD_EXT4
2043 bool "ext4 command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02002044 select FS_EXT4
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002045 help
2046 Enables EXT4 FS command
2047
2048config CMD_EXT4_WRITE
2049 depends on CMD_EXT4
2050 bool "ext4 write command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02002051 select EXT4_WRITE
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002052 help
2053 Enables EXT4 FS write command
2054
2055config CMD_FAT
2056 bool "FAT command support"
Sekhar Nori1909a7b2017-06-02 17:53:59 +05302057 select FS_FAT
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002058 help
2059 Support for the FAT fs
2060
2061config CMD_FS_GENERIC
2062 bool "filesystem commands"
2063 help
2064 Enables filesystem commands (e.g. load, ls) that work for multiple
2065 fs types.
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002066
Josua Mayerf5ebfe72017-04-24 10:10:45 +02002067config CMD_FS_UUID
2068 bool "fsuuid command"
2069 help
2070 Enables fsuuid command for filesystem UUID.
2071
Simon Glassc4abb4b2017-05-17 03:25:37 -06002072config CMD_JFFS2
2073 bool "jffs2 command"
Simon Glass8c6c7c22017-05-17 03:25:38 -06002074 select FS_JFFS2
Simon Glassc4abb4b2017-05-17 03:25:37 -06002075 help
2076 Enables commands to support the JFFS2 (Journalling Flash File System
2077 version 2) filesystem. This enables fsload, ls and fsinfo which
2078 provide the ability to load files, list directories and obtain
2079 filesystem information.
2080
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002081config CMD_MTDPARTS
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002082 bool "MTD partition support"
Miquel Raynald2418202019-10-25 19:39:30 +02002083 depends on MTD
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002084 help
Miquel Raynal007dddc2018-09-29 12:58:30 +02002085 MTD partitioning tool support.
2086 It is strongly encouraged to avoid using this command
2087 anymore along with 'sf', 'nand', 'onenand'. One can still
2088 declare the partitions in the mtdparts environment variable
2089 but better use the MTD stack and the 'mtd' command instead.
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002090
Simon Glass66d7db02017-08-04 16:34:30 -06002091config CMD_MTDPARTS_SPREAD
2092 bool "Padd partition size to take account of bad blocks"
2093 depends on CMD_MTDPARTS
2094 help
2095 This enables the 'spread' sub-command of the mtdparts command.
2096 This command will modify the existing mtdparts variable by increasing
2097 the size of the partitions such that 1) each partition's net size is
2098 at least as large as the size specified in the mtdparts variable and
2099 2) each partition starts on a good block.
2100
Alexander Dahl6cae4f42019-10-30 16:53:55 +01002101config CMD_MTDPARTS_SHOW_NET_SIZES
2102 bool "Show net size (w/o bad blocks) of partitions"
2103 depends on CMD_MTDPARTS
2104 help
2105 Adds two columns to the printed partition table showing the
2106 effective usable size of a partition, if bad blocks are taken
2107 into account.
2108
Miquel Raynalf21322f2019-10-03 19:50:25 +02002109config MTDIDS_DEFAULT
2110 string "Default MTD IDs"
Miquel Raynald2418202019-10-25 19:39:30 +02002111 depends on MTD || SPI_FLASH
Miquel Raynalf21322f2019-10-03 19:50:25 +02002112 help
2113 Defines a default MTD IDs list for use with MTD partitions in the
2114 Linux MTD command line partitions format.
2115
2116config MTDPARTS_DEFAULT
2117 string "Default MTD partition scheme"
Miquel Raynald2418202019-10-25 19:39:30 +02002118 depends on MTD || SPI_FLASH
Miquel Raynalf21322f2019-10-03 19:50:25 +02002119 help
2120 Defines a default MTD partitioning scheme in the Linux MTD command
2121 line partitions format
2122
Simon Glassed4ee312017-08-04 16:34:41 -06002123config CMD_REISER
2124 bool "reiser - Access to reiserfs filesystems"
2125 help
2126 This provides two commands which operate on a resierfs filesystem,
2127 commonly used some years ago:
2128
2129 reiserls - list files
2130 reiserload - load a file
2131
Simon Glass19c5caf2017-08-04 16:34:58 -06002132config CMD_YAFFS2
2133 bool "yaffs2 - Access of YAFFS2 filesystem"
2134 depends on YAFFS2
2135 default y
2136 help
2137 This provides commands for accessing a YAFFS2 filesystem. Yet
2138 Another Flash Filesystem 2 is a filesystem designed specifically
2139 for NAND flash. It incorporates bad-block management and ensures
2140 that device writes are sequential regardless of filesystem
2141 activity.
2142
Simon Glassdc82dee2017-08-04 16:35:04 -06002143config CMD_ZFS
2144 bool "zfs - Access of ZFS filesystem"
2145 help
2146 This provides commands to accessing a ZFS filesystem, commonly used
2147 on Solaris systems. Two sub-commands are provided:
2148
2149 zfsls - list files in a directory
2150 zfsload - load a file
2151
2152 See doc/README.zfs for more details.
2153
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002154endmenu
2155
Simon Glass3423f212017-04-26 22:27:52 -06002156menu "Debug commands"
2157
2158config CMD_BEDBUG
2159 bool "bedbug"
2160 help
2161 The bedbug (emBEDded deBUGger) command provides debugging features
2162 for some PowerPC processors. For details please see the
Heinrich Schuchardt3ade1b52020-02-25 21:44:05 +01002163 documentation in doc/README.bedbug.
Simon Glass3423f212017-04-26 22:27:52 -06002164
Simon Glass20ea5632017-04-26 22:28:08 -06002165config CMD_DIAG
2166 bool "diag - Board diagnostics"
2167 help
2168 This command provides access to board diagnostic tests. These are
2169 called Power-on Self Tests (POST). The command allows listing of
2170 available tests and running either all the tests, or specific tests
2171 identified by name.
2172
Simon Glass4c3a6202017-05-17 03:25:39 -06002173config CMD_IRQ
2174 bool "irq - Show information about interrupts"
Heiko Schocher6f90e582017-06-14 05:49:40 +02002175 depends on !ARM && !MIPS && !SH
Simon Glass4c3a6202017-05-17 03:25:39 -06002176 help
2177 This enables two commands:
2178
2179 interrupts - enable or disable interrupts
2180 irqinfo - print device-specific interrupt information
Simon Glassfd9948c2017-05-17 03:25:40 -06002181
2182config CMD_KGDB
2183 bool "kgdb - Allow debugging of U-Boot with gdb"
Michal Simek9d364412018-10-04 14:26:13 +02002184 depends on PPC
Simon Glassfd9948c2017-05-17 03:25:40 -06002185 help
2186 This enables a 'kgdb' command which allows gdb to connect to U-Boot
2187 over a serial link for debugging purposes. This allows
2188 single-stepping, inspecting variables, etc. This is supported only
2189 on PowerPC at present.
2190
Simon Glass5684f8f2017-12-04 13:48:26 -07002191config CMD_LOG
2192 bool "log - Generation, control and access to logging"
Heinrich Schuchardt74bad682018-04-19 22:02:46 +02002193 select LOG
Simon Glass5684f8f2017-12-04 13:48:26 -07002194 help
2195 This provides access to logging features. It allows the output of
2196 log data to be controlled to a limited extent (setting up the default
Simon Glass14c8a062017-12-04 13:48:27 -07002197 maximum log level for emitting of records). It also provides access
2198 to a command used for testing the log system.
Simon Glass5684f8f2017-12-04 13:48:26 -07002199
Simon Glass126cb792017-08-04 16:34:59 -06002200config CMD_TRACE
2201 bool "trace - Support tracing of function calls and timing"
2202 help
2203 Enables a command to control using of function tracing within
2204 U-Boot. This allows recording of call traces including timing
2205 information. The command can write data to memory for exporting
Simon Glassbfce7fc2019-04-08 13:20:51 -06002206 for analysis (e.g. using bootchart). See doc/README.trace for full
Simon Glass126cb792017-08-04 16:34:59 -06002207 details.
2208
Igor Opaniuk60291192018-06-03 21:56:39 +03002209config CMD_AVB
2210 bool "avb - Android Verified Boot 2.0 operations"
Igor Opaniuke0df0352018-07-17 14:33:25 +03002211 depends on AVB_VERIFY
Igor Opaniuk60291192018-06-03 21:56:39 +03002212 default n
2213 help
2214 Enables a "avb" command to perform verification of partitions using
2215 Android Verified Boot 2.0 functionality. It includes such subcommands:
2216 avb init - initialize avb2 subsystem
2217 avb read_rb - read rollback index
2218 avb write_rb - write rollback index
2219 avb is_unlocked - check device lock state
2220 avb get_uuid - read and print uuid of a partition
2221 avb read_part - read data from partition
2222 avb read_part_hex - read data from partition and output to stdout
2223 avb write_part - write data to partition
2224 avb verify - run full verification chain
Simon Glass3423f212017-04-26 22:27:52 -06002225endmenu
2226
Heiko Schocher09dbb852016-09-21 07:58:19 +02002227config CMD_UBI
2228 tristate "Enable UBI - Unsorted block images commands"
Heiko Schocher09dbb852016-09-21 07:58:19 +02002229 select MTD_UBI
2230 help
2231 UBI is a software layer above MTD layer which admits use of LVM-like
2232 logical volumes on top of MTD devices, hides some complexities of
2233 flash chips like wear and bad blocks and provides some other useful
2234 capabilities. Please, consult the MTD web site for more details
2235 (www.linux-mtd.infradead.org). Activate this option if you want
2236 to use U-Boot UBI commands.
Miquel Raynal12f1ff12018-09-29 12:58:29 +02002237 It is also strongly encouraged to also enable CONFIG_MTD to get full
2238 partition support.
Heiko Schocher09dbb852016-09-21 07:58:19 +02002239
Philippe Reynes10d53222020-03-23 19:20:47 +01002240config CMD_UBI_RENAME
2241 bool "Enable rename"
2242 depends on CMD_UBI
2243 default n
2244 help
2245 Enable a "ubi" command to rename ubi volume:
2246 ubi rename <oldname> <newname>
2247
Boris Brezillonaa57d0f2017-02-27 18:22:06 +01002248config CMD_UBIFS
2249 tristate "Enable UBIFS - Unsorted block images filesystem commands"
Maxime Ripard1e6a0962017-03-03 14:53:22 +01002250 depends on CMD_UBI
Michal Simek84f3dec2018-07-23 15:55:13 +02002251 default y if CMD_UBI
Karl Beldan3418eeb2017-07-12 16:11:47 +00002252 select LZO
Boris Brezillonaa57d0f2017-02-27 18:22:06 +01002253 help
2254 UBIFS is a file system for flash devices which works on top of UBI.
2255
Simon Glass29499a02016-01-17 20:53:51 -07002256endmenu