bootstd: Add a bootflow command
[platform/kernel/u-boot.git] / cmd / Kconfig
1 menu "Command line interface"
2
3 config 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
14 config HUSH_PARSER
15         bool "Use hush shell"
16         depends on CMDLINE
17         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
26 config 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
34 config CMDLINE_PS_SUPPORT
35         bool "Enable support for changing the command prompt string at run-time"
36         depends on HUSH_PARSER
37         help
38           Only static string in the prompt is supported so far.  The string is
39           obtained from environment variables PS1 and PS2.
40
41 config AUTO_COMPLETE
42         bool "Enable auto complete using TAB"
43         depends on CMDLINE
44         default y
45         help
46           Enable auto completion of commands using TAB.
47
48 config SYS_LONGHELP
49         bool "Enable long help messages"
50         depends on CMDLINE
51         default y if CMDLINE
52         help
53           Defined when you want long help messages included
54           Do not set this option when short of memory.
55
56 config SYS_PROMPT
57         string "Shell prompt"
58         default "Zynq> " if ARCH_ZYNQ
59         default "ZynqMP> " if ARCH_ZYNQMP
60         default "=> "
61         help
62           This string is displayed in the command line to the left of the
63           cursor.
64
65 config SYS_PROMPT_HUSH_PS2
66         string "Hush shell secondary prompt"
67         depends on HUSH_PARSER
68         default "> "
69         help
70           This defines the secondary prompt string, which is
71           printed when the command interpreter needs more input
72           to complete a command. Usually "> ".
73
74 config SYS_XTRACE
75         bool "Command execution tracer"
76         depends on CMDLINE
77         default y if CMDLINE
78         help
79           This option enables the possiblity to print all commands before
80           executing them and after all variables are evaluated (similar
81           to Bash's xtrace/'set -x' feature).
82           To enable the tracer a variable "xtrace" needs to be defined in
83           the environment.
84
85 config BUILD_BIN2C
86         bool
87
88 comment "Commands"
89
90 menu "Info commands"
91
92 config CMD_ACPI
93         bool "acpi"
94         depends on ACPIGEN
95         default y
96         help
97           List and dump ACPI tables. ACPI (Advanced Configuration and Power
98           Interface) is used mostly on x86 for providing information to the
99           Operating System about devices in the system. The tables are set up
100           by the firmware, typically U-Boot but possibly an earlier firmware
101           module, if U-Boot is chain-loaded from something else. ACPI tables
102           can also include code, to perform hardware-specific tasks required
103           by the Operating Systems. This allows some amount of separation
104           between the firmware and OS, and is particularly useful when you
105           want to make hardware changes without the OS needing to be adjusted.
106
107 config CMD_ADDRMAP
108         bool "addrmap"
109         depends on ADDR_MAP
110         default y
111         help
112           List non-identity virtual-physical memory mappings for 32-bit CPUs.
113
114 config CMD_BDI
115         bool "bdinfo"
116         default y
117         help
118           Print board info
119
120 config CMD_CONFIG
121         bool "config"
122         default SANDBOX
123         select BUILD_BIN2C
124         help
125           Print ".config" contents.
126
127           If this option is enabled, the ".config" file contents are embedded
128           in the U-Boot image and can be printed on the console by the "config"
129           command.  This provides information of which options are enabled on
130           the running U-Boot.
131
132 config CMD_CONSOLE
133         bool "coninfo"
134         default y
135         help
136           Print console devices and information.
137
138 config CMD_CPU
139         bool "cpu"
140         depends on CPU
141         help
142           Print information about available CPUs. This normally shows the
143           number of CPUs, type (e.g. manufacturer, architecture, product or
144           internal name) and clock frequency. Other information may be
145           available depending on the CPU driver.
146
147 config CMD_LICENSE
148         bool "license"
149         select BUILD_BIN2C
150         help
151           Print GPL license text
152
153 config CMD_PMC
154         bool "pmc"
155         help
156           Provides access to the Intel Power-Management Controller (PMC) so
157           that its state can be examined. This does not currently support
158           changing the state but it is still useful for debugging and seeing
159           what is going on.
160
161 config CMD_REGINFO
162         bool "reginfo"
163         depends on PPC
164         help
165           Register dump
166
167 config CMD_TLV_EEPROM
168         bool "tlv_eeprom"
169         depends on I2C_EEPROM
170         help
171           Display and program the system EEPROM data block in ONIE Tlvinfo
172           format. TLV stands for Type-Length-Value.
173
174 config SPL_CMD_TLV_EEPROM
175         bool "tlv_eeprom for SPL"
176         depends on SPL_I2C_EEPROM
177         select SPL_DRIVERS_MISC
178         help
179           Read system EEPROM data block in ONIE Tlvinfo format from SPL.
180
181 config CMD_SBI
182         bool "sbi"
183         depends on RISCV_SMODE && SBI_V02
184         help
185           Display information about the SBI implementation.
186
187 endmenu
188
189 menu "Boot commands"
190
191 config CMD_BOOTD
192         bool "bootd"
193         default y
194         help
195           Run the command stored in the environment "bootcmd", i.e.
196           "bootd" does the same thing as "run bootcmd".
197
198 config CMD_BOOTM
199         bool "bootm"
200         default y
201         help
202           Boot an application image from the memory.
203
204 config CMD_BOOTM_PRE_LOAD
205        bool "enable pre-load on bootm"
206        depends on CMD_BOOTM
207        depends on IMAGE_PRE_LOAD
208        default n
209        help
210          Enable support of stage pre-load for the bootm command.
211          This stage allow to check or modify the image provided
212          to the bootm command.
213
214 config CMD_BOOTDEV
215         bool "bootdev"
216         depends on BOOTSTD
217         default y if BOOTSTD_FULL
218         help
219           Support listing available bootdevs (boot devices) which can provide an
220           OS to boot, as well as showing information about a particular one.
221
222           This command is not necessary for bootstd to work.
223
224 config CMD_BOOTFLOW
225         bool "bootflow"
226         depends on BOOTSTD
227         default y
228         help
229           Support scanning for bootflows available with the bootdevs. The
230           bootflows can optionally be booted.
231
232 config CMD_BOOTFLOW_FULL
233         bool "bootflow - extract subcommands"
234         depends on BOOTSTD_FULL
235         default y if BOOTSTD_FULL
236         help
237           Add the ability to list the available bootflows, select one and obtain
238           information about it.
239
240           This command is not necessary for bootstd to work.
241
242 config BOOTM_EFI
243         bool "Support booting UEFI FIT images"
244         depends on CMD_BOOTEFI && CMD_BOOTM && FIT
245         default y
246         help
247           Support booting UEFI FIT images via the bootm command.
248
249 config CMD_BOOTZ
250         bool "bootz"
251         help
252           Boot the Linux zImage
253
254 config CMD_BOOTI
255         bool "booti"
256         depends on ARM64 || RISCV
257         default y
258         help
259           Boot an AArch64 Linux Kernel image from memory.
260
261 config BOOTM_LINUX
262         bool "Support booting Linux OS images"
263         depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI
264         default y
265         help
266           Support booting the Linux kernel directly via a command such as bootm
267           or booti or bootz.
268
269 config BOOTM_NETBSD
270         bool "Support booting NetBSD (non-EFI) loader images"
271         depends on CMD_BOOTM
272         default y
273         help
274           Support booting NetBSD via the bootm command.
275
276 config BOOTM_OPENRTOS
277         bool "Support booting OPENRTOS / FreeRTOS images"
278         depends on CMD_BOOTM
279         help
280           Support booting OPENRTOS / FreeRTOS via the bootm command.
281
282 config BOOTM_OSE
283         bool "Support booting Enea OSE images"
284         depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86)
285         depends on CMD_BOOTM
286         help
287           Support booting Enea OSE images via the bootm command.
288
289 config BOOTM_PLAN9
290         bool "Support booting Plan9 OS images"
291         depends on CMD_BOOTM
292         default y
293         help
294           Support booting Plan9 images via the bootm command.
295
296 config BOOTM_RTEMS
297         bool "Support booting RTEMS OS images"
298         depends on CMD_BOOTM
299         default y
300         help
301           Support booting RTEMS images via the bootm command.
302
303 config BOOTM_VXWORKS
304         bool "Support booting VxWorks OS images"
305         depends on CMD_BOOTM
306         default y
307         help
308           Support booting VxWorks images via the bootm command.
309
310 config CMD_BOOTEFI
311         bool "bootefi"
312         depends on EFI_LOADER
313         default y
314         help
315           Boot an EFI image from memory.
316
317 config CMD_BOOTEFI_HELLO_COMPILE
318         bool "Compile a standard EFI hello world binary for testing"
319         depends on CMD_BOOTEFI && !CPU_V7M
320         default y
321         help
322           This compiles a standard EFI hello world application with U-Boot so
323           that it can be used with the test/py testing framework. This is useful
324           for testing that EFI is working at a basic level, and for bringing
325           up EFI support on a new architecture.
326
327           No additional space will be required in the resulting U-Boot binary
328           when this option is enabled.
329
330 config CMD_BOOTEFI_HELLO
331         bool "Allow booting a standard EFI hello world for testing"
332         depends on CMD_BOOTEFI_HELLO_COMPILE
333         default y if CMD_BOOTEFI_SELFTEST
334         help
335           This adds a standard EFI hello world application to U-Boot so that
336           it can be used with the 'bootefi hello' command. This is useful
337           for testing that EFI is working at a basic level, and for bringing
338           up EFI support on a new architecture.
339
340 source lib/efi_selftest/Kconfig
341
342 config CMD_BOOTMENU
343         bool "bootmenu"
344         select MENU
345         help
346           Add an ANSI terminal boot menu command.
347
348 config CMD_ADTIMG
349         bool "adtimg"
350         help
351           Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
352           image into RAM, dump image structure information, etc. Those dtb/dtbo
353           files should be merged in one dtb further, which needs to be passed to
354           the kernel, as part of a boot process.
355
356 config CMD_ABOOTIMG
357         bool "abootimg"
358         depends on ANDROID_BOOT_IMAGE
359         help
360           Android Boot Image manipulation commands. Allows one to extract
361           images contained in boot.img, like kernel, ramdisk, dtb, etc, and
362           obtain corresponding meta-information from boot.img.
363
364           See doc/android/boot-image.rst for details.
365
366 config CMD_ELF
367         bool "bootelf, bootvx"
368         default y
369         select LIB_ELF
370         help
371           Boot an ELF/vxWorks image from the memory.
372
373 config CMD_FDT
374         bool "Flattened Device Tree utility commands"
375         default y
376         depends on OF_LIBFDT
377         help
378           Do FDT related setup before booting into the Operating System.
379
380 config SUPPORT_EXTENSION_SCAN
381         bool
382
383 config CMD_EXTENSION
384         bool "Extension board management command"
385         select CMD_FDT
386         depends on SUPPORT_EXTENSION_SCAN
387         help
388           Enables the "extension" command, which allows to detect
389           extension boards connected to the system, and apply
390           corresponding Device Tree overlays.
391
392 config CMD_GO
393         bool "go"
394         default y
395         help
396           Start an application at a given address.
397
398 config CMD_RUN
399         bool "run"
400         default y
401         help
402           Run the command in the given environment variable.
403
404 config CMD_IMI
405         bool "iminfo"
406         default y
407         help
408           Print header information for application image.
409
410 config CMD_IMLS
411         bool "imls"
412         help
413           List all images found in flash
414
415 config CMD_XIMG
416         bool "imxtract"
417         default y
418         help
419           Extract a part of a multi-image.
420
421 config CMD_SPL
422         bool "spl export - Export boot information for Falcon boot"
423         depends on SPL
424         help
425           Falcon mode allows booting directly from SPL into an Operating
426           System such as Linux, thus skipping U-Boot proper. See
427           doc/README.falcon for full information about how to use this
428           command.
429
430 config CMD_SPL_NAND_OFS
431         hex "Offset of OS args or dtb for Falcon-mode NAND boot"
432         depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
433         default 0
434         help
435           This provides the offset of the command line arguments for Linux
436           when booting from NAND in Falcon mode.  See doc/README.falcon
437           for full information about how to use this option (and also see
438           board/gateworks/gw_ventana/README for an example).
439
440 config CMD_SPL_NOR_OFS
441         hex "Offset of OS args or dtb for Falcon-mode NOR boot"
442         depends on CMD_SPL && SPL_NOR_SUPPORT
443         default 0
444         help
445           This provides the offset of the command line arguments or dtb for
446           Linux when booting from NOR in Falcon mode.
447
448 config CMD_SPL_WRITE_SIZE
449         hex "Size of argument area"
450         depends on CMD_SPL
451         default 0x2000
452         help
453           This provides the size of the command-line argument area in NAND
454           flash used by Falcon-mode boot. See the documentation until CMD_SPL
455           for detail.
456
457 config CMD_THOR_DOWNLOAD
458         bool "thor - TIZEN 'thor' download"
459         select DFU
460         help
461           Implements the 'thor' download protocol. This is a way of
462           downloading a software update over USB from an attached host.
463           There is no documentation about this within the U-Boot source code
464           but you should be able to find something on the interwebs.
465
466 config CMD_ZBOOT
467         bool "zboot - x86 boot command"
468         help
469           With x86 machines it is common to boot a bzImage file which
470           contains both a kernel and a setup.bin file. The latter includes
471           configuration information from the dark ages which x86 boards still
472           need to pick things out of.
473
474           Consider using FIT in preference to this since it supports directly
475           booting both 32- and 64-bit kernels, as well as secure boot.
476           Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
477
478 endmenu
479
480 menu "Environment commands"
481
482 config CMD_ASKENV
483         bool "ask for env variable"
484         help
485           Ask for environment variable
486
487 config CMD_EXPORTENV
488         bool "env export"
489         default y
490         help
491           Export environments.
492
493 config CMD_IMPORTENV
494         bool "env import"
495         default y
496         help
497           Import environments.
498
499 config CMD_EDITENV
500         bool "editenv"
501         default y
502         help
503           Edit environment variable.
504
505 config CMD_GREPENV
506         bool "search env"
507         help
508           Allow for searching environment variables
509
510 config CMD_SAVEENV
511         bool "saveenv"
512         default y
513         help
514           Save all environment variables into the compiled-in persistent
515           storage.
516
517 config CMD_ERASEENV
518         bool "eraseenv"
519         depends on CMD_SAVEENV
520         help
521           Erase environment variables from the compiled-in persistent
522           storage.
523
524 config CMD_ENV_EXISTS
525         bool "env exists"
526         default y
527         help
528           Check if a variable is defined in the environment for use in
529           shell scripting.
530
531 config CMD_ENV_CALLBACK
532         bool "env callbacks - print callbacks and their associated variables"
533         help
534           Some environment variable have callbacks defined by
535           U_BOOT_ENV_CALLBACK. These are called when the variable changes.
536           For example changing "baudrate" adjust the serial baud rate. This
537           command lists the currently defined callbacks.
538
539 config CMD_ENV_FLAGS
540         bool "env flags -print variables that have non-default flags"
541         help
542           Some environment variables have special flags that control their
543           behaviour. For example, serial# can only be written once and cannot
544           be deleted. This command shows the variables that have special
545           flags.
546
547 config CMD_NVEDIT_EFI
548         bool "env [set|print] -e - set/print UEFI variables"
549         depends on EFI_LOADER
550         imply HEXDUMP
551         help
552           UEFI variables are encoded as some form of U-Boot variables.
553           If enabled, we are allowed to set/print UEFI variables using
554           "env" command with "-e" option without knowing details.
555
556 config CMD_NVEDIT_INDIRECT
557         bool "env indirect - Sets environment value from another"
558
559 config CMD_NVEDIT_INFO
560         bool "env info - print or evaluate environment information"
561         help
562           Print environment information:
563           - env_valid : is environment valid
564           - env_ready : is environment imported into hash table
565           - env_use_default : is default environment used
566
567           This command can be optionally used for evaluation in scripts:
568           [-d] : evaluate whether default environment is used
569           [-p] : evaluate whether environment can be persisted
570           [-q] : quiet output
571           The result of multiple evaluations will be combined with AND.
572
573 config CMD_NVEDIT_LOAD
574         bool "env load"
575         help
576           Load all environment variables from the compiled-in persistent
577           storage.
578
579 config CMD_NVEDIT_SELECT
580         bool "env select"
581         help
582           Select the compiled-in persistent storage of environment variables.
583
584 endmenu
585
586 menu "Memory commands"
587
588 config CMD_BINOP
589         bool "binop"
590         help
591           Compute binary operations (xor, or, and) of byte arrays of arbitrary
592           size from memory and store the result in memory or the environment.
593
594 config CMD_BLOBLIST
595         bool "bloblist"
596         default y if BLOBLIST
597         help
598           Show information about the bloblist, a collection of binary blobs
599           held in memory that persist between SPL and U-Boot. In the case of
600           x86 devices the bloblist can be used to hold ACPI tables so that they
601           remain available in memory.
602
603 config CMD_CRC32
604         bool "crc32"
605         default y
606         select HASH
607         help
608           Compute CRC32.
609
610 config CRC32_VERIFY
611         bool "crc32 -v"
612         depends on CMD_CRC32
613         help
614           Add -v option to verify data against a crc32 checksum.
615
616 config CMD_EEPROM
617         bool "eeprom - EEPROM subsystem"
618         help
619           (deprecated, needs conversion to driver model)
620           Provides commands to read and write EEPROM (Electrically Erasable
621           Programmable Read Only Memory) chips that are connected over an
622           I2C bus.
623
624 config CMD_EEPROM_LAYOUT
625         bool "Enable layout-aware eeprom commands"
626         depends on CMD_EEPROM
627         help
628           (deprecated, needs conversion to driver model)
629           When enabled, additional eeprom sub-commands become available.
630
631           eeprom print - prints the contents of the eeprom in a human-readable
632           way (eeprom layout fields, and data formatted to be fit for human
633           consumption).
634
635           eeprom update - allows user to update eeprom fields by specifying
636           the field name, and providing the new data in a human readable format
637           (same format as displayed by the eeprom print command).
638
639           Both commands can either auto detect the layout, or be told which
640           layout to use.
641
642           Feature API:
643           __weak int parse_layout_version(char *str)
644                 - override to provide your own layout name parsing
645           __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
646                         int layout_version);
647                 - override to setup the layout metadata based on the version
648           __weak int eeprom_layout_detect(unsigned char *data)
649                 - override to provide your own algorithm for detecting layout
650                         version
651           eeprom_field.c
652                 - contains various printing and updating functions for common
653                         types of eeprom fields. Can be used for defining
654                         custom layouts.
655
656 config EEPROM_LAYOUT_HELP_STRING
657           string "Tells user what layout names are supported"
658           depends on CMD_EEPROM_LAYOUT
659           default "<not defined>"
660           help
661             Help printed with the LAYOUT VERSIONS part of the 'eeprom'
662             command's help.
663
664 config SYS_I2C_EEPROM_BUS
665         int "I2C bus of the EEPROM device."
666         depends on CMD_EEPROM
667         default 0
668
669 config SYS_I2C_EEPROM_ADDR_LEN
670         int "Length in bytes of the EEPROM memory array address"
671         depends on CMD_EEPROM || ID_EEPROM
672         default 1
673         range 1 2
674         help
675           Note: This is NOT the chip address length!
676
677 config SYS_EEPROM_SIZE
678         depends on CMD_EEPROM
679         int "Size in bytes of the EEPROM device"
680         default 256
681
682 config SYS_EEPROM_PAGE_WRITE_BITS
683         int "Number of bits used to address bytes in a single page"
684         depends on CMD_EEPROM
685         default 8
686         help
687           The EEPROM page size is 2^SYS_EEPROM_PAGE_WRITE_BITS.
688           A 64 byte page, for example would require six bits.
689
690 config SYS_EEPROM_PAGE_WRITE_DELAY_MS
691         int "Number of milliseconds to delay between page writes"
692         depends on CMD_EEPROM || CMD_I2C
693         default 0
694
695 config LOOPW
696         bool "loopw"
697         help
698           Infinite write loop on address range
699
700 config CMD_MD5SUM
701         bool "md5sum"
702         select MD5
703         help
704           Compute MD5 checksum.
705
706 config MD5SUM_VERIFY
707         bool "md5sum -v"
708         depends on CMD_MD5SUM
709         help
710           Add -v option to verify data against an MD5 checksum.
711
712 config CMD_MEMINFO
713         bool "meminfo"
714         help
715           Display memory information.
716
717 config CMD_MEMORY
718         bool "md, mm, nm, mw, cp, cmp, base, loop"
719         default y
720         help
721           Memory commands.
722             md - memory display
723             mm - memory modify (auto-incrementing address)
724             nm - memory modify (constant address)
725             mw - memory write (fill)
726             cp - memory copy
727             cmp - memory compare
728             base - print or set address offset
729             loop - initialize loop on address range
730
731 config CMD_MEM_SEARCH
732         bool "ms - Memory search"
733         help
734           Memory-search command
735
736           This allows searching through a region of memory looking for hex
737           data (byte, 16-bit word, 32-bit long, also 64-bit on machines that
738           support it). It is also possible to search for a string. The
739           command accepts a memory range and a list of values to search for.
740           The values need to appear in memory in the same order they are given
741           in the command. At most 10 matches can be returned at a time, but
742           pressing return will show the next 10 matches. Environment variables
743           are set for use with scripting (memmatches, memaddr, mempos).
744
745 config CMD_MX_CYCLIC
746         bool "Enable cyclic md/mw commands"
747         depends on CMD_MEMORY
748         help
749           Add the "mdc" and "mwc" memory commands. These are cyclic
750           "md/mw" commands.
751           Examples:
752
753           => mdc.b 10 4 500
754           This command will print 4 bytes (10,11,12,13) each 500 ms.
755
756           => mwc.l 100 12345678 10
757           This command will write 12345678 to address 100 all 10 ms.
758
759 config CMD_RANDOM
760         bool "random"
761         default y
762         depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
763         help
764           random - fill memory with random data
765
766 config CMD_MEMTEST
767         bool "memtest"
768         help
769           Simple RAM read/write test.
770
771 if CMD_MEMTEST
772
773 config SYS_ALT_MEMTEST
774         bool "Alternative test"
775         help
776           Use a more complete alternative memory test.
777
778 if SYS_ALT_MEMTEST
779
780 config SYS_ALT_MEMTEST_BITFLIP
781         bool "Bitflip test"
782         default y
783         help
784           The alternative memory test includes bitflip test since 2020.07.
785           The bitflip test significantly increases the overall test time.
786           Bitflip test can optionally be disabled here.
787
788 endif
789
790 config SYS_MEMTEST_START
791         hex "default start address for mtest"
792         default 0x0
793         help
794           This is the default start address for mtest for simple read/write
795           test. If no arguments are given to mtest, default address is used
796           as start address.
797
798 config SYS_MEMTEST_END
799         hex "default end address for mtest"
800         default 0x1000
801         help
802           This is the default end address for mtest for simple read/write
803           test. If no arguments are given to mtest, default address is used
804           as end address.
805
806 endif
807
808 config CMD_SHA1SUM
809         bool "sha1sum"
810         select SHA1
811         help
812           Compute SHA1 checksum.
813
814 config SHA1SUM_VERIFY
815         bool "sha1sum -v"
816         depends on CMD_SHA1SUM
817         help
818           Add -v option to verify data against a SHA1 checksum.
819
820 config CMD_STRINGS
821         bool "strings - display strings in memory"
822         help
823           This works similarly to the Unix 'strings' command except that it
824           works with a memory range. String of printable characters found
825           within the range are displayed. The minimum number of characters
826           for a sequence to be considered a string can be provided.
827
828 endmenu
829
830 menu "Compression commands"
831
832 config CMD_LZMADEC
833         bool "lzmadec"
834         default y if CMD_BOOTI
835         select LZMA
836         help
837           Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
838           image from memory.
839
840 config CMD_UNLZ4
841         bool "unlz4"
842         default y if CMD_BOOTI
843         select LZ4
844         help
845           Support decompressing an LZ4 image from memory region.
846
847 config CMD_UNZIP
848         bool "unzip"
849         default y if CMD_BOOTI
850         select GZIP
851         help
852           Uncompress a zip-compressed memory region.
853
854 config CMD_ZIP
855         bool "zip"
856         select GZIP_COMPRESSED
857         help
858           Compress a memory region with zlib deflate method.
859
860 endmenu
861
862 menu "Device access commands"
863
864 config CMD_ARMFLASH
865         #depends on FLASH_CFI_DRIVER
866         bool "armflash"
867         help
868           ARM Ltd reference designs flash partition access
869
870 config CMD_ADC
871         bool "adc - Access Analog to Digital Converters info and data"
872         select ADC
873         depends on DM_REGULATOR
874         help
875           Shows ADC device info and permit printing one-shot analog converted
876           data from a named Analog to Digital Converter.
877
878 config CMD_BCB
879         bool "bcb"
880         depends on MMC
881         depends on PARTITIONS
882         help
883           Read/modify/write the fields of Bootloader Control Block, usually
884           stored on the flash "misc" partition with its structure defined in:
885           https://android.googlesource.com/platform/bootable/recovery/+/master/
886           bootloader_message/include/bootloader_message/bootloader_message.h
887
888           Some real-life use-cases include (but are not limited to):
889           - Determine the "boot reason" (and act accordingly):
890             https://source.android.com/devices/bootloader/boot-reason
891           - Get/pass a list of commands from/to recovery:
892             https://android.googlesource.com/platform/bootable/recovery
893           - Inspect/dump the contents of the BCB fields
894
895 config CMD_BIND
896         bool "bind/unbind - Bind or unbind a device to/from a driver"
897         depends on DM
898         help
899           Bind or unbind a device to/from a driver from the command line.
900           This is useful in situations where a device may be handled by several
901           drivers. For example, this can be used to bind a UDC to the usb ether
902           gadget driver from the command line.
903
904 config CMD_CLK
905         bool "clk - Show clock frequencies"
906         help
907           (deprecated)
908           Shows clock frequences by calling a sock_clk_dump() hook function.
909           This is depreated in favour of using the CLK uclass and accessing
910           clock values from associated drivers. However currently no command
911           exists for this.
912
913 config CMD_DEMO
914         bool "demo - Demonstration commands for driver model"
915         depends on DM
916         help
917           Provides a 'demo' command which can be used to play around with
918           driver model. To use this properly you will need to enable one or
919           both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
920           Otherwise you will always get an empty list of devices. The demo
921           devices are defined in the sandbox device tree, so the easiest
922           option is to use sandbox and pass the -d point to sandbox's
923           u-boot.dtb file.
924
925 config CMD_DFU
926         bool "dfu"
927         select DFU
928         help
929           Enables the command "dfu" which is used to have U-Boot create a DFU
930           class device via USB. This command requires that the "dfu_alt_info"
931           environment variable be set and define the alt settings to expose to
932           the host.
933
934 config CMD_DM
935         bool "dm - Access to driver model information"
936         depends on DM
937         help
938           Provides access to driver model data structures and information,
939           such as a list of devices, list of uclasses and the state of each
940           device (e.g. activated). This is not required for operation, but
941           can be useful to see the state of driver model for debugging or
942           interest.
943
944 config CMD_FASTBOOT
945         bool "fastboot - Android fastboot support"
946         depends on FASTBOOT
947         help
948           This enables the command "fastboot" which enables the Android
949           fastboot mode for the platform. Fastboot is a protocol for
950           downloading images, flashing and device control used on
951           Android devices. Fastboot requires either the network stack
952           enabled or support for acting as a USB device.
953
954           See doc/android/fastboot.rst for more information.
955
956 config CMD_FLASH
957         bool "flinfo, erase, protect"
958         default y
959         depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH
960         help
961           NOR flash support.
962             flinfo - print FLASH memory information
963             erase - FLASH memory
964             protect - enable or disable FLASH write protection
965
966 config CMD_FPGA
967         bool "fpga"
968         depends on FPGA
969         default y
970         help
971           FPGA support.
972
973 config CMD_FPGA_LOADBP
974         bool "fpga loadbp - load partial bitstream (Xilinx only)"
975         depends on CMD_FPGA
976         help
977           Supports loading an FPGA device from a bitstream buffer containing
978           a partial bitstream.
979
980 config CMD_FPGA_LOADFS
981         bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
982         depends on CMD_FPGA
983         help
984           Supports loading an FPGA device from a FAT filesystem.
985
986 config CMD_FPGA_LOADMK
987         bool "fpga loadmk - load bitstream from image"
988         depends on CMD_FPGA
989         help
990           Supports loading an FPGA device from a image generated by mkimage.
991
992 config CMD_FPGA_LOADP
993         bool "fpga loadp - load partial bitstream"
994         depends on CMD_FPGA
995         help
996           Supports loading an FPGA device from a bitstream buffer containing
997           a partial bitstream.
998
999 config CMD_FPGA_LOAD_SECURE
1000         bool "fpga loads - loads secure bitstreams (Xilinx only)"
1001         depends on CMD_FPGA
1002         help
1003           Enables the fpga loads command which is used to load secure
1004           (authenticated or encrypted or both) bitstreams on to FPGA.
1005
1006 config CMD_FPGAD
1007         bool "fpgad - dump FPGA registers"
1008         help
1009           (legacy, needs conversion to driver model)
1010           Provides a way to dump FPGA registers by calling the board-specific
1011           fpga_get_reg() function. This functions similarly to the 'md'
1012           command.
1013
1014 config CMD_FUSE
1015         bool "fuse - support for the fuse subssystem"
1016         help
1017           (deprecated - needs conversion to driver model)
1018           This allows reading, sensing, programming or overriding fuses
1019           which control the behaviour of the device. The command uses the
1020           fuse_...() API.
1021
1022 config CMD_GPIO
1023         bool "gpio"
1024         help
1025           GPIO support.
1026
1027 config CMD_GPIO_READ
1028         bool "gpio read - save GPIO value to variable"
1029         depends on CMD_GPIO
1030         help
1031           Enables the 'gpio read' command that saves the value
1032           of a GPIO pin to a variable.
1033
1034 config CMD_PWM
1035         bool "pwm"
1036         depends on DM_PWM
1037         help
1038           Control PWM channels, this allows invert/config/enable/disable PWM channels.
1039
1040 config CMD_GPT
1041         bool "GPT (GUID Partition Table) command"
1042         select EFI_PARTITION
1043         select HAVE_BLOCK_DEVICE
1044         select PARTITION_UUIDS
1045         imply RANDOM_UUID
1046         help
1047           Enable the 'gpt' command to ready and write GPT style partition
1048           tables.
1049
1050 config RANDOM_UUID
1051         bool "GPT Random UUID generation"
1052         select LIB_UUID
1053         help
1054           Enable the generation of partitions with random UUIDs if none
1055           are provided.
1056
1057 config CMD_GPT_RENAME
1058         bool "GPT partition renaming commands"
1059         depends on CMD_GPT
1060         help
1061           Enables the 'gpt' command to interchange names on two GPT
1062           partitions via the 'gpt swap' command or to rename single
1063           partitions via the 'rename' command.
1064
1065 config CMD_IDE
1066         bool "ide - Support for IDE drivers"
1067         select IDE
1068         help
1069           Provides an 'ide' command which allows accessing the IDE drive,
1070           resetting the IDE interface, printing the partition table and
1071           geting device info. It also enables the 'diskboot' command which
1072           permits booting from an IDE drive.
1073
1074 config CMD_IO
1075         bool "io - Support for performing I/O accesses"
1076         help
1077           Provides an 'iod' command to display I/O space and an 'iow' command
1078           to write values to the I/O space. This can be useful for manually
1079           checking the state of devices during boot when debugging device
1080           drivers, etc.
1081
1082 config CMD_IOTRACE
1083         bool "iotrace - Support for tracing I/O activity"
1084         help
1085           Provides an 'iotrace' command which supports recording I/O reads and
1086           writes in a trace buffer in memory . It also maintains a checksum
1087           of the trace records (even if space is exhausted) so that the
1088           sequence of I/O accesses can be verified.
1089
1090           When debugging drivers it is useful to see what I/O accesses were
1091           done and in what order.
1092
1093           Even if the individual accesses are of little interest it can be
1094           useful to verify that the access pattern is consistent each time
1095           an operation is performed. In this case a checksum can be used to
1096           characterise the operation of a driver. The checksum can be compared
1097           across different runs of the operation to verify that the driver is
1098           working properly.
1099
1100           In particular, when performing major refactoring of the driver, where
1101           the access pattern should not change, the checksum provides assurance
1102           that the refactoring work has not broken the driver.
1103
1104           This works by sneaking into the io.h heder for an architecture and
1105           redirecting I/O accesses through iotrace's tracing mechanism.
1106
1107           For now no commands are provided to examine the trace buffer. The
1108           format is fairly simple, so 'md' is a reasonable substitute.
1109
1110           Note: The checksum feature is only useful for I/O regions where the
1111           contents do not change outside of software control. Where this is not
1112           suitable you can fall back to manually comparing the addresses. It
1113           might be useful to enhance tracing to only checksum the accesses and
1114           not the data read/written.
1115
1116 config CMD_I2C
1117         bool "i2c"
1118         help
1119           I2C support.
1120
1121 config CMD_W1
1122         depends on W1
1123         default y if W1
1124         bool "w1 - Support for Dallas 1-Wire protocol"
1125         help
1126           Dallas 1-wire protocol support
1127
1128 config CMD_LOADB
1129         bool "loadb"
1130         default y
1131         help
1132           Load a binary file over serial line.
1133
1134 config CMD_LOADS
1135         bool "loads"
1136         default y
1137         help
1138           Load an S-Record file over serial line
1139
1140 config CMD_LSBLK
1141         depends on BLK
1142         bool "lsblk - list block drivers and devices"
1143         help
1144           Print list of available block device drivers, and for each, the list
1145           of known block devices.
1146
1147 config CMD_MBR
1148         bool "MBR (Master Boot Record) command"
1149         select DOS_PARTITION
1150         select HAVE_BLOCK_DEVICE
1151         help
1152           Enable the 'mbr' command to ready and write MBR (Master Boot Record)
1153           style partition tables.
1154
1155 config CMD_MISC
1156         bool "misc"
1157         depends on MISC
1158         help
1159           Enable the command "misc" for accessing miscellaneous devices with
1160           a MISC uclass driver. The command provides listing all MISC devices
1161           as well as read and write functionalities via their drivers.
1162
1163 config CMD_MMC
1164         bool "mmc"
1165         depends on MMC
1166         help
1167           MMC memory mapped support.
1168
1169 if CMD_MMC
1170
1171 config CMD_BKOPS_ENABLE
1172         bool "mmc bkops enable"
1173         depends on CMD_MMC
1174         help
1175           Enable command for setting manual background operations handshake
1176           on a eMMC device. The feature is optionally available on eMMC devices
1177           conforming to standard >= 4.41.
1178
1179 config CMD_MMC_RPMB
1180         bool "Enable support for RPMB in the mmc command"
1181         depends on SUPPORT_EMMC_RPMB
1182         help
1183           Enable the commands for reading, writing and programming the
1184           key for the Replay Protection Memory Block partition in eMMC.
1185
1186 config CMD_MMC_SWRITE
1187         bool "mmc swrite"
1188         depends on MMC_WRITE
1189         select IMAGE_SPARSE
1190         help
1191           Enable support for the "mmc swrite" command to write Android sparse
1192           images to eMMC.
1193
1194 endif
1195
1196 config CMD_CLONE
1197         bool "clone"
1198         depends on BLK
1199         help
1200           Enable storage cloning over block devices, useful for
1201           initial flashing by external block device without network
1202           or usb support.
1203
1204 config CMD_OPTEE_RPMB
1205         bool "Enable read/write support on RPMB via OPTEE"
1206         depends on SUPPORT_EMMC_RPMB && OPTEE
1207         help
1208           Enable the commands for reading, writing persistent named values
1209           in the Replay Protection Memory Block partition in eMMC by
1210           using Persistent Objects in OPTEE
1211
1212 config CMD_MTD
1213         bool "mtd"
1214         depends on MTD
1215         select MTD_PARTITIONS
1216         help
1217           MTD commands support.
1218
1219 config CMD_MUX
1220         bool "mux"
1221         depends on MULTIPLEXER
1222         help
1223          List, select, and deselect mux controllers on the fly.
1224
1225 config CMD_NAND
1226         bool "nand"
1227         default y if NAND_SUNXI
1228         depends on MTD_RAW_NAND
1229         help
1230           NAND support.
1231
1232 if CMD_NAND
1233 config CMD_NAND_TRIMFFS
1234         bool "nand write.trimffs"
1235         default y if ARCH_SUNXI
1236         help
1237           Allows one to skip empty pages when flashing something on a NAND.
1238
1239 config CMD_NAND_LOCK_UNLOCK
1240         bool "nand lock/unlock"
1241         help
1242           NAND locking support.
1243
1244 config CMD_NAND_TORTURE
1245         bool "nand torture"
1246         help
1247           NAND torture support.
1248
1249 endif # CMD_NAND
1250
1251 config CMD_NVME
1252         bool "nvme"
1253         depends on NVME
1254         default y if NVME
1255         help
1256           NVM Express device support
1257
1258 config CMD_ONENAND
1259         bool "onenand - access to onenand device"
1260         depends on MTD
1261         help
1262           OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1263           various useful features. This command allows reading, writing,
1264           and erasing blocks. It allso provides a way to show and change
1265           bad blocks, and test the device.
1266
1267 config CMD_OSD
1268         bool "osd"
1269         help
1270           Enable the 'osd' command which allows to query information from and
1271           write text data to a on-screen display (OSD) device; a virtual device
1272           associated with a display capable of displaying a text overlay on the
1273           display it's associated with..
1274
1275 config CMD_PART
1276         bool "part"
1277         select HAVE_BLOCK_DEVICE
1278         select PARTITION_UUIDS
1279         help
1280           Read and display information about the partition table on
1281           various media.
1282
1283 config CMD_PCI
1284         bool "pci - Access PCI devices"
1285         help
1286           Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1287           used on some devices to allow the CPU to communicate with its
1288           peripherals. Sub-commands allow bus enumeration, displaying and
1289           changing configuration space and a few other features.
1290
1291 config CMD_PINMUX
1292         bool "pinmux - show pins muxing"
1293         depends on PINCTRL
1294         default y if PINCTRL
1295         help
1296           Parse all available pin-controllers and show pins muxing. This
1297           is useful for debug purpoer to check the pin muxing and to know if
1298           a pin is configured as a GPIO or as an alternate function.
1299
1300 config CMD_POWEROFF
1301         bool "poweroff"
1302         help
1303           Poweroff/Shutdown the system
1304
1305 config CMD_READ
1306         bool "read - Read binary data from a partition"
1307         help
1308           Provides low-level access to the data in a partition.
1309
1310 config CMD_REMOTEPROC
1311         bool "remoteproc"
1312         depends on REMOTEPROC
1313         help
1314           Support for Remote Processor control
1315
1316 config CMD_SATA
1317         bool "sata - Access SATA subsystem"
1318         select SATA
1319         help
1320           SATA (Serial Advanced Technology Attachment) is a serial bus
1321           standard for connecting to hard drives and other storage devices.
1322           This command provides information about attached devices and allows
1323           reading, writing and other operations.
1324
1325           SATA replaces PATA (originally just ATA), which stands for Parallel AT
1326           Attachment, where AT refers to an IBM AT (Advanced Technology)
1327           computer released in 1984.
1328
1329 config CMD_SAVES
1330         bool "saves - Save a file over serial in S-Record format"
1331         help
1332           Provides a way to save a binary file using the Motorola S-Record
1333           format over the serial line.
1334
1335 config CMD_SCSI
1336         bool "scsi - Access to SCSI devices"
1337         default y if SCSI
1338         help
1339           This provides a 'scsi' command which provides access to SCSI (Small
1340           Computer System Interface) devices. The command provides a way to
1341           scan the bus, reset the bus, read and write data and get information
1342           about devices.
1343
1344 config CMD_SDRAM
1345         bool "sdram - Print SDRAM configuration information"
1346         help
1347           Provides information about attached SDRAM. This assumed that the
1348           SDRAM has an EEPROM with information that can be read using the
1349           I2C bus. This is only available on some boards.
1350
1351 config CMD_SF
1352         bool "sf"
1353         depends on DM_SPI_FLASH || SPI_FLASH
1354         default y if DM_SPI_FLASH
1355         help
1356           SPI Flash support
1357
1358 config CMD_SF_TEST
1359         bool "sf test - Allow testing of SPI flash"
1360         depends on CMD_SF
1361         help
1362           Provides a way to test that SPI flash is working correctly. The
1363           test is destructive, in that an area of SPI flash must be provided
1364           for the test to use. Performance information is also provided,
1365           measuring the performance of reading, writing and erasing in
1366           Mbps (Million Bits Per Second). This value should approximately
1367           equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1368           everything is working properly.
1369
1370 config CMD_SPI
1371         bool "sspi - Command to access spi device"
1372         depends on SPI
1373         help
1374           SPI utility command.
1375
1376 config DEFAULT_SPI_BUS
1377         int "default spi bus used by sspi command"
1378         depends on CMD_SPI
1379         default 0
1380
1381 config DEFAULT_SPI_MODE
1382         hex "default spi mode used by sspi command (see include/spi.h)"
1383         depends on CMD_SPI
1384         default 0
1385
1386 config CMD_TSI148
1387         bool "tsi148 - Command to access tsi148 device"
1388         help
1389           This provides various sub-commands to initialise and configure the
1390           Turndra tsi148 device. See the command help for full details.
1391
1392 config CMD_UFS
1393         bool "Enable UFS - Universal Flash Subsystem commands"
1394         depends on UFS
1395         help
1396           "This provides commands to initialise and configure universal flash
1397            subsystem devices"
1398
1399 config CMD_UNIVERSE
1400         bool "universe - Command to set up the Turndra Universe controller"
1401         help
1402           This allows setting up the VMEbus provided by this controller.
1403           See the command help for full details.
1404
1405 config CMD_USB
1406         bool "usb"
1407         depends on USB_HOST
1408         select HAVE_BLOCK_DEVICE
1409         help
1410           USB support.
1411
1412 config CMD_USB_SDP
1413         bool "sdp"
1414         select USB_FUNCTION_SDP
1415         help
1416           Enables the command "sdp" which is used to have U-Boot emulating the
1417           Serial Download Protocol (SDP) via USB.
1418
1419 config CMD_ROCKUSB
1420         bool "rockusb"
1421         depends on USB_FUNCTION_ROCKUSB
1422         help
1423           Rockusb protocol is widely used by Rockchip SoC based devices. It can
1424           read/write info, image to/from devices. This enable rockusb command
1425           support to communication with rockusb device. for more detail about
1426           this command, please read doc/README.rockusb.
1427
1428 config CMD_USB_MASS_STORAGE
1429         bool "UMS usb mass storage"
1430         depends on USB_GADGET_DOWNLOAD
1431         select USB_FUNCTION_MASS_STORAGE
1432         depends on BLK && USB_GADGET
1433         help
1434           Enables the command "ums" and the USB mass storage support to the
1435           export a block device: U-Boot, the USB device, acts as a simple
1436           external hard drive plugged on the host USB port.
1437
1438 config CMD_PVBLOCK
1439         bool "Xen para-virtualized block device"
1440         depends on XEN
1441         select PVBLOCK
1442         help
1443           Xen para-virtualized block device support
1444
1445 config CMD_VIRTIO
1446         bool "virtio"
1447         depends on VIRTIO
1448         depends on HAVE_BLOCK_DEVICE
1449         default y if VIRTIO
1450         help
1451           VirtIO block device support
1452
1453 config CMD_WDT
1454         bool "wdt"
1455         depends on WDT
1456         help
1457           This provides commands to control the watchdog timer devices.
1458
1459 config CMD_AXI
1460         bool "axi"
1461         depends on AXI
1462         help
1463           Enable the command "axi" for accessing AXI (Advanced eXtensible
1464           Interface) busses, a on-chip interconnect specification for managing
1465           functional blocks in SoC designs, which is also often used in designs
1466           involving FPGAs (e.g.  communication with IP cores in Xilinx FPGAs).
1467 endmenu
1468
1469
1470 menu "Shell scripting commands"
1471
1472 config CMD_ECHO
1473         bool "echo"
1474         default y
1475         help
1476           Echo args to console
1477
1478 config CMD_ITEST
1479         bool "itest"
1480         default y
1481         help
1482           Return true/false on integer compare.
1483
1484 config CMD_SOURCE
1485         bool "source"
1486         default y
1487         help
1488           Run script from memory
1489
1490 config CMD_SETEXPR
1491         bool "setexpr"
1492         default y
1493         help
1494           Evaluate boolean and math expressions and store the result in an env
1495             variable.
1496           Also supports loading the value at a memory location into a variable.
1497           If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1498
1499 config CMD_SETEXPR_FMT
1500         bool "setexpr_fmt"
1501         depends on CMD_SETEXPR
1502         help
1503           Evaluate format string expression and store result in an environment
1504             variable.
1505
1506 endmenu
1507
1508 menu "Android support commands"
1509
1510 config CMD_AB_SELECT
1511         bool "ab_select"
1512         depends on ANDROID_AB
1513         help
1514           On Android devices with more than one boot slot (multiple copies of
1515           the kernel and system images) this provides a command to select which
1516           slot should be used to boot from and register the boot attempt. This
1517           is used by the new A/B update model where one slot is updated in the
1518           background while running from the other slot.
1519
1520 endmenu
1521
1522 if NET
1523
1524 menuconfig CMD_NET
1525         bool "Network commands"
1526         default y
1527         imply NETDEVICES
1528
1529 if CMD_NET
1530
1531 config CMD_BOOTP
1532         bool "bootp"
1533         default y
1534         help
1535           bootp - boot image via network using BOOTP/TFTP protocol
1536
1537 config CMD_DHCP
1538         bool "dhcp"
1539         depends on CMD_BOOTP
1540         help
1541           Boot image via network using DHCP/TFTP protocol
1542
1543 config BOOTP_MAY_FAIL
1544         bool "Allow for the BOOTP/DHCP server to not be found"
1545         depends on CMD_BOOTP
1546         help
1547           If the DHCP server is not found after the configured retry count, the
1548           call will fail instead of starting over.  This can be used to fail
1549           over to Link-local IP address configuration if the DHCP server is not
1550           available.
1551
1552 config BOOTP_BOOTPATH
1553         bool "Request & store 'rootpath' from BOOTP/DHCP server"
1554         default y
1555         depends on CMD_BOOTP
1556         help
1557           Even though the config is called BOOTP_BOOTPATH, it stores the
1558           path in the variable 'rootpath'.
1559
1560 config BOOTP_VENDOREX
1561         bool "Support vendor extensions from BOOTP/DHCP server"
1562         depends on CMD_BOOTP
1563
1564 config BOOTP_BOOTFILESIZE
1565         bool "Request & store 'bootfilesize' from BOOTP/DHCP server"
1566         depends on CMD_BOOTP
1567
1568 config BOOTP_DNS
1569         bool "Request & store 'dnsip' from BOOTP/DHCP server"
1570         default y
1571         depends on CMD_BOOTP
1572         help
1573           The primary DNS server is stored as 'dnsip'. If two servers are
1574           returned, you must set BOOTP_DNS2 to store that second server IP
1575           also.
1576
1577 config BOOTP_DNS2
1578         bool "Store 'dnsip2' from BOOTP/DHCP server"
1579         depends on BOOTP_DNS
1580         help
1581           If a DHCP client requests the DNS server IP from a DHCP server,
1582           it is possible that more than one DNS serverip is offered to the
1583           client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1584           server IP will be stored in the additional environment
1585           variable "dnsip2". The first DNS serverip is always
1586           stored in the variable "dnsip", when BOOTP_DNS is defined.
1587
1588 config BOOTP_GATEWAY
1589         bool "Request & store 'gatewayip' from BOOTP/DHCP server"
1590         default y
1591         depends on CMD_BOOTP
1592
1593 config BOOTP_HOSTNAME
1594         bool "Request & store 'hostname' from BOOTP/DHCP server"
1595         default y
1596         depends on CMD_BOOTP
1597         help
1598           The name may or may not be qualified with the local domain name.
1599
1600 config BOOTP_PREFER_SERVERIP
1601         bool "serverip variable takes precedent over DHCP server IP."
1602         depends on CMD_BOOTP
1603         help
1604           By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1605
1606           With this option enabled, the 'serverip' variable in the environment
1607           takes precedence over DHCP server IP and will only be set by the DHCP
1608           server if not already set in the environment.
1609
1610 config BOOTP_SUBNETMASK
1611         bool "Request & store 'netmask' from BOOTP/DHCP server"
1612         default y
1613         depends on CMD_BOOTP
1614
1615 config BOOTP_NISDOMAIN
1616         bool "Request & store 'nisdomain' from BOOTP/DHCP server"
1617         depends on CMD_BOOTP
1618
1619 config BOOTP_NTPSERVER
1620         bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1621         depends on CMD_BOOTP
1622
1623 config BOOTP_TIMEOFFSET
1624         bool "Request & store 'timeoffset' from BOOTP/DHCP server"
1625         depends on CMD_BOOTP && CMD_SNTP
1626
1627 config CMD_PCAP
1628         bool "pcap capture"
1629         help
1630           Selecting this will allow capturing all Ethernet packets and store
1631           them in physical memory in a PCAP formated file,
1632           later to be analyzed by PCAP reader application (IE. WireShark).
1633
1634 config BOOTP_PXE
1635         bool "Send PXE client arch to BOOTP/DHCP server"
1636         default y
1637         depends on CMD_BOOTP && CMD_PXE
1638         help
1639           Supported for ARM, ARM64, and x86 for now.
1640
1641 config BOOTP_PXE_CLIENTARCH
1642         hex
1643         depends on BOOTP_PXE
1644         default 0x16 if ARM64
1645         default 0x15 if ARM
1646         default 0 if X86
1647
1648 config BOOTP_VCI_STRING
1649         string
1650         depends on CMD_BOOTP
1651         default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
1652         default "U-Boot.armv8" if ARM64
1653         default "U-Boot.arm" if ARM
1654         default "U-Boot"
1655
1656 config CMD_TFTPBOOT
1657         bool "tftpboot"
1658         default y
1659         help
1660           tftpboot - boot image via network using TFTP protocol
1661
1662 config CMD_TFTPPUT
1663         bool "tftp put"
1664         depends on CMD_TFTPBOOT
1665         help
1666           TFTP put command, for uploading files to a server
1667
1668 config CMD_TFTPSRV
1669         bool "tftpsrv"
1670         depends on CMD_TFTPBOOT
1671         help
1672           Act as a TFTP server and boot the first received file
1673
1674 config NET_TFTP_VARS
1675         bool "Control TFTP timeout and count through environment"
1676         depends on CMD_TFTPBOOT
1677         default y
1678         help
1679           If set, allows controlling the TFTP timeout through the
1680           environment variable tftptimeout, and the TFTP maximum
1681           timeout count through the variable tftptimeoutcountmax.
1682           If unset, timeout and maximum are hard-defined as 1 second
1683           and 10 timouts per TFTP transfer.
1684
1685 config CMD_RARP
1686         bool "rarpboot"
1687         help
1688           Boot image via network using RARP/TFTP protocol
1689
1690 config CMD_NFS
1691         bool "nfs"
1692         default y
1693         help
1694           Boot image via network using NFS protocol.
1695
1696 config NFS_TIMEOUT
1697         int "Timeout in milliseconds for NFS mounts"
1698         depends on CMD_NFS
1699         default 2000
1700         help
1701           Timeout in milliseconds used in NFS protocol.  If you encounter
1702           "ERROR: Cannot umount" in nfs command, try longer timeout such as
1703           10000.
1704
1705 config CMD_MII
1706         bool "mii"
1707         imply CMD_MDIO
1708         help
1709           If set, allows 802.3(clause 22) MII Management functions interface access
1710           The management interface specified in Clause 22 provides
1711           a simple, two signal, serial interface to connect a
1712           Station Management entity and a managed PHY for providing access
1713           to management parameters and services.
1714           The interface is referred to as the MII management interface.
1715
1716 config MII_INIT
1717         bool "Call mii_init() in the mii command"
1718         depends on CMD_MII && (MPC8XX_FEC || FSLDMAFE || MCFFEC)
1719
1720 config CMD_MDIO
1721         bool "mdio"
1722         depends on PHYLIB
1723         help
1724           If set, allows Enable 802.3(clause 45) MDIO interface registers access
1725           The MDIO interface is orthogonal to the MII interface and extends
1726           it by adding access to more registers through indirect addressing.
1727
1728 config CMD_PING
1729         bool "ping"
1730         help
1731           Send ICMP ECHO_REQUEST to network host
1732
1733 config CMD_CDP
1734         bool "cdp"
1735         help
1736           Perform CDP network configuration
1737
1738 config CMD_SNTP
1739         bool "sntp"
1740         select PROT_UDP
1741         help
1742           Synchronize RTC via network
1743
1744 config CMD_DNS
1745         bool "dns"
1746         help
1747           Lookup the IP of a hostname
1748
1749 config CMD_LINK_LOCAL
1750         bool "linklocal"
1751         select LIB_RAND
1752         help
1753           Acquire a network IP address using the link-local protocol
1754
1755 endif
1756
1757 config CMD_ETHSW
1758         bool "ethsw"
1759         help
1760           Allow control of L2 Ethernet switch commands. These are supported
1761           by the vsc9953 Ethernet driver at present. Sub-commands allow
1762           operations such as enabling / disabling a port and
1763           viewing/maintaining the filtering database (FDB)
1764
1765 config CMD_PXE
1766         bool "pxe"
1767         select MENU
1768         help
1769           Boot image via network using PXE protocol
1770
1771 config CMD_WOL
1772         bool "wol"
1773         help
1774           Wait for wake-on-lan Magic Packet
1775
1776 endif
1777
1778 menu "Misc commands"
1779
1780 config CMD_BMP
1781         bool "Enable 'bmp' command"
1782         depends on LCD || DM_VIDEO || VIDEO
1783         help
1784           This provides a way to obtain information about a BMP-format image
1785           and to display it. BMP (which presumably stands for BitMaP) is a
1786           file format defined by Microsoft which supports images of various
1787           depths, formats and compression methods. Headers on the file
1788           determine the formats used. This command can be used by first loading
1789           the image into RAM, then using this command to look at it or display
1790           it.
1791
1792 config CMD_BOOTCOUNT
1793         bool "bootcount"
1794         depends on BOOTCOUNT_LIMIT
1795         help
1796           Enable the bootcount command, which allows interrogation and
1797           reset of the bootcounter.
1798
1799 config CMD_BSP
1800         bool "Enable board-specific commands"
1801         help
1802           (deprecated: instead, please define a Kconfig option for each command)
1803
1804           Some boards have board-specific commands which are only enabled
1805           during developemnt and need to be turned off for production. This
1806           option provides a way to control this. The commands that are enabled
1807           vary depending on the board.
1808
1809 config CMD_BLOCK_CACHE
1810         bool "blkcache - control and stats for block cache"
1811         depends on BLOCK_CACHE
1812         default y if BLOCK_CACHE
1813         help
1814           Enable the blkcache command, which can be used to control the
1815           operation of the cache functions.
1816           This is most useful when fine-tuning the operation of the cache
1817           during development, but also allows the cache to be disabled when
1818           it might hurt performance (e.g. when using the ums command).
1819
1820 config CMD_BUTTON
1821         bool "button"
1822         depends on BUTTON
1823         default y if BUTTON
1824         help
1825           Enable the 'button' command which allows to get the status of
1826           buttons supported by the board. The buttonss can be listed with
1827           'button list' and state can be known with 'button <label>'.
1828           Any button drivers can be controlled with this command, e.g.
1829           button_gpio.
1830
1831 config CMD_CACHE
1832         bool "icache or dcache"
1833         help
1834           Enable the "icache" and "dcache" commands
1835
1836 config CMD_CONITRACE
1837         bool "conitrace - trace console input codes"
1838         help
1839           Enable the 'conitrace' command which displays the codes received
1840           from the console input as hexadecimal numbers.
1841
1842 config CMD_CLS
1843         bool "Enable clear screen command 'cls'"
1844         depends on DM_VIDEO || LCD || VIDEO
1845         default y if LCD
1846         help
1847           Enable the 'cls' command which clears the screen contents
1848           on video frame buffer.
1849
1850 config CMD_EFIDEBUG
1851         bool "efidebug - display/configure UEFI environment"
1852         depends on EFI_LOADER
1853         select EFI_DEVICE_PATH_TO_TEXT
1854         help
1855           Enable the 'efidebug' command which provides a subset of UEFI
1856           shell utility with simplified functionality. It will be useful
1857           particularly for managing boot parameters as  well as examining
1858           various EFI status for debugging.
1859
1860 config CMD_EXCEPTION
1861         bool "exception - raise exception"
1862         depends on ARM || RISCV || SANDBOX || X86
1863         help
1864           Enable the 'exception' command which allows to raise an exception.
1865
1866 config CMD_LED
1867         bool "led"
1868         depends on LED
1869         default y if LED
1870         help
1871           Enable the 'led' command which allows for control of LEDs supported
1872           by the board. The LEDs can be listed with 'led list' and controlled
1873           with led on/off/togle/blink. Any LED drivers can be controlled with
1874           this command, e.g. led_gpio.
1875
1876 config CMD_DATE
1877         bool "date"
1878         default y if DM_RTC
1879         select LIB_DATE
1880         help
1881           Enable the 'date' command for getting/setting the time/date in RTC
1882           devices.
1883
1884 config CMD_RTC
1885         bool "rtc"
1886         depends on DM_RTC
1887         help
1888           Enable the 'rtc' command for low-level access to RTC devices.
1889
1890 config CMD_TIME
1891         bool "time"
1892         help
1893           Run commands and summarize execution time.
1894
1895 config CMD_GETTIME
1896         bool "gettime - read elapsed time"
1897         help
1898           Enable the 'gettime' command which reads the elapsed time since
1899           U-Boot started running. This shows the time in seconds and
1900           milliseconds. See also the 'bootstage' command which provides more
1901           flexibility for boot timing.
1902
1903 config CMD_RNG
1904         bool "rng command"
1905         depends on DM_RNG
1906         select HEXDUMP
1907         help
1908           Print bytes from the hardware random number generator.
1909
1910 config CMD_KASLRSEED
1911         bool "kaslrseed"
1912         depends on DM_RNG
1913         help
1914           Set the kaslr-seed in the chosen node with entropy provided by a
1915           hardware random number generator.
1916
1917 config CMD_SLEEP
1918         bool "sleep"
1919         default y
1920         help
1921           Delay execution for some time
1922
1923 config CMD_MP
1924         bool "support for multiprocessor commands"
1925         depends on MP
1926         default y
1927         help
1928           This enables commands to bringup different processors
1929           in multiprocessor cases.
1930
1931 config CMD_TIMER
1932         bool "timer"
1933         help
1934           Access the system timer.
1935
1936 config CMD_SOUND
1937         bool "sound"
1938         depends on SOUND
1939         help
1940           This provides basic access to the U-Boot's sound support. The main
1941           feature is to play a beep.
1942
1943              sound init   - set up sound system
1944              sound play   - play a sound
1945
1946 config CMD_SYSBOOT
1947         bool "sysboot"
1948         select MENU
1949         help
1950           Boot image via local extlinux.conf file
1951
1952 config CMD_QFW
1953         bool "qfw"
1954         select QFW
1955         help
1956           This provides access to the QEMU firmware interface.  The main
1957           feature is to allow easy loading of files passed to qemu-system
1958           via -kernel / -initrd
1959
1960 config CMD_PSTORE
1961         bool "pstore"
1962         help
1963           This provides access to Linux PStore with Rammoops backend. The main
1964           feature is to allow to display or save PStore records.
1965
1966           See doc/pstore.rst for more information.
1967
1968 if CMD_PSTORE
1969
1970 config CMD_PSTORE_MEM_ADDR
1971         hex "Memory Address"
1972         depends on CMD_PSTORE
1973         help
1974           Base addr used for PStore ramoops memory, should be identical to
1975           ramoops.mem_address parameter used by kernel
1976
1977 config CMD_PSTORE_MEM_SIZE
1978         hex "Memory size"
1979         depends on CMD_PSTORE
1980         default "0x10000"
1981         help
1982           Size of PStore ramoops memory, should be identical to ramoops.mem_size
1983           parameter used by kernel, a power of 2 and larger than the sum of the
1984           record sizes
1985
1986 config CMD_PSTORE_RECORD_SIZE
1987         hex "Dump record size"
1988         depends on CMD_PSTORE
1989         default "0x1000"
1990         help
1991           Size of each dump done on oops/panic, should be identical to
1992           ramoops.record_size parameter used by kernel and a power of 2
1993           Must be non-zero
1994
1995 config CMD_PSTORE_CONSOLE_SIZE
1996         hex "Kernel console log size"
1997         depends on CMD_PSTORE
1998         default "0x1000"
1999         help
2000           Size of kernel console log, should be identical to
2001           ramoops.console_size parameter used by kernel and a power of 2
2002           Must be non-zero
2003
2004 config CMD_PSTORE_FTRACE_SIZE
2005         hex "FTrace log size"
2006         depends on CMD_PSTORE
2007         default "0x1000"
2008         help
2009           Size of ftrace log, should be identical to ramoops.ftrace_size
2010           parameter used by kernel and a power of 2
2011
2012 config CMD_PSTORE_PMSG_SIZE
2013         hex "User space message log size"
2014         depends on CMD_PSTORE
2015         default "0x1000"
2016         help
2017           Size of user space message log, should be identical to
2018           ramoops.pmsg_size parameter used by kernel and a power of 2
2019
2020 config CMD_PSTORE_ECC_SIZE
2021         int "ECC size"
2022         depends on CMD_PSTORE
2023         default "0"
2024         help
2025         if non-zero, the option enables ECC support and specifies ECC buffer
2026         size in bytes (1 is a special value, means 16 bytes ECC), should be
2027         identical to ramoops.ramoops_ecc parameter used by kernel
2028
2029 endif
2030
2031 source "cmd/mvebu/Kconfig"
2032
2033 config CMD_TERMINAL
2034         bool "terminal - provides a way to attach a serial terminal"
2035         help
2036           Provides a 'cu'-like serial terminal command. This can be used to
2037           access other serial ports from the system console. The terminal
2038           is very simple with no special processing of characters. As with
2039           cu, you can press ~. (tilde followed by period) to exit.
2040
2041 config CMD_UUID
2042         bool "uuid, guid - generation of unique IDs"
2043         select LIB_UUID
2044         help
2045           This enables two commands:
2046
2047              uuid - generate random Universally Unique Identifier
2048              guid - generate Globally Unique Identifier based on random UUID
2049
2050           The two commands are very similar except for the endianness of the
2051           output.
2052
2053 endmenu
2054
2055 source "cmd/ti/Kconfig"
2056
2057 config CMD_BOOTSTAGE
2058         bool "Enable the 'bootstage' command"
2059         depends on BOOTSTAGE
2060         help
2061           Add a 'bootstage' command which supports printing a report
2062           and un/stashing of bootstage data.
2063
2064 menu "Power commands"
2065 config CMD_PMIC
2066         bool "Enable Driver Model PMIC command"
2067         depends on DM_PMIC
2068         help
2069           This is the pmic command, based on a driver model pmic's API.
2070           Command features are unchanged:
2071           - list               - list pmic devices
2072           - pmic dev <id>      - show or [set] operating pmic device (NEW)
2073           - pmic dump          - dump registers
2074           - pmic read address  - read byte of register at address
2075           - pmic write address - write byte to register at address
2076           The only one change for this command is 'dev' subcommand.
2077
2078 config CMD_REGULATOR
2079         bool "Enable Driver Model REGULATOR command"
2080         depends on DM_REGULATOR
2081         help
2082           This command is based on driver model regulator's API.
2083           User interface features:
2084           - list               - list regulator devices
2085           - regulator dev <id> - show or [set] operating regulator device
2086           - regulator info     - print constraints info
2087           - regulator status   - print operating status
2088           - regulator value <val] <-f> - print/[set] voltage value [uV]
2089           - regulator current <val>    - print/[set] current value [uA]
2090           - regulator mode <id>        - print/[set] operating mode id
2091           - regulator enable           - enable the regulator output
2092           - regulator disable          - disable the regulator output
2093
2094           The '-f' (force) option can be used for set the value which exceeds
2095           the limits, which are found in device-tree and are kept in regulator's
2096           uclass plat structure.
2097
2098 endmenu
2099
2100 menu "Security commands"
2101 config CMD_AES
2102         bool "Enable the 'aes' command"
2103         select AES
2104         help
2105           This provides a means to encrypt and decrypt data using the AES
2106           (Advanced Encryption Standard). This algorithm uses a symetric key
2107           and is widely used as a streaming cipher. Different key lengths are
2108           supported by the algorithm but this command only supports 128 bits
2109           at present.
2110
2111 config CMD_BLOB
2112         bool "Enable the 'blob' command"
2113         depends on !MX6ULL && !MX6SLL && !MX6SL
2114         select IMX_HAB if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
2115         help
2116           This is used with the Freescale secure boot mechanism.
2117
2118           Freescale's SEC block has built-in Blob Protocol which provides
2119           a method for protecting user-defined data across system power
2120           cycles. SEC block protects data in a data structure called a Blob,
2121           which provides both confidentiality and integrity protection.
2122
2123           Encapsulating data as a blob
2124           Each time that the Blob Protocol is used to protect data, a
2125           different randomly generated key is used to encrypt the data.
2126           This random key is itself encrypted using a key which is derived
2127           from SoC's non-volatile secret key and a 16 bit Key identifier.
2128           The resulting encrypted key along with encrypted data is called a
2129           blob. The non-volatile secure key is available for use only during
2130           secure boot.
2131
2132           During decapsulation, the reverse process is performed to get back
2133           the original data.
2134
2135           Sub-commands:
2136             blob enc - encapsulating data as a cryptgraphic blob
2137             blob dec - decapsulating cryptgraphic blob to get the data
2138
2139           Syntax:
2140
2141           blob enc src dst len km
2142
2143           Encapsulate and create blob of data $len bytes long
2144           at address $src and store the result at address $dst.
2145           $km is the 16 byte key modifier is also required for
2146           generation/use as key for cryptographic operation. Key
2147           modifier should be 16 byte long.
2148
2149           blob dec src dst len km
2150
2151           Decapsulate the  blob of data at address $src and
2152           store result of $len byte at addr $dst.
2153           $km is the 16 byte key modifier is also required for
2154           generation/use as key for cryptographic operation. Key
2155           modifier should be 16 byte long.
2156
2157 config CMD_HASH
2158         bool "Support 'hash' command"
2159         select HASH
2160         help
2161           This provides a way to hash data in memory using various supported
2162           algorithms (such as SHA1, MD5, CRC32). The computed digest can be
2163           saved to memory or to an environment variable. It is also possible
2164           to verify a hash against data in memory.
2165
2166 config CMD_HVC
2167         bool "Support the 'hvc' command"
2168         depends on ARM_SMCCC
2169         help
2170           Allows issuing Hypervisor Calls (HVCs). Mostly useful for
2171           development and testing.
2172
2173 config CMD_SMC
2174         bool "Support the 'smc' command"
2175         depends on ARM_SMCCC
2176         help
2177           Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
2178           development and testing.
2179
2180 config HASH_VERIFY
2181         bool "hash -v"
2182         depends on CMD_HASH
2183         help
2184           Add -v option to verify data against a hash.
2185
2186 config CMD_SCP03
2187         bool "scp03 - SCP03 enable and rotate/provision operations"
2188         depends on SCP03
2189         help
2190           This command provides access to a Trusted Application
2191           running in a TEE to request Secure Channel Protocol 03
2192           (SCP03) enablement and/or rotation of its SCP03 keys.
2193
2194 config CMD_TPM_V1
2195         bool
2196
2197 config CMD_TPM_V2
2198         bool
2199
2200 config CMD_TPM
2201         bool "Enable the 'tpm' command"
2202         depends on TPM_V1 || TPM_V2
2203         select CMD_TPM_V1 if TPM_V1
2204         select CMD_TPM_V2 if TPM_V2
2205         help
2206           This provides a means to talk to a TPM from the command line. A wide
2207           range of commands if provided - see 'tpm help' for details. The
2208           command requires a suitable TPM on your board and the correct driver
2209           must be enabled.
2210
2211 if CMD_TPM
2212
2213 config CMD_TPM_TEST
2214         bool "Enable the 'tpm test' command"
2215         depends on TPM_V1
2216         help
2217           This provides a a series of tests to confirm that the TPMv1.x is
2218           working correctly. The tests cover initialisation, non-volatile RAM,
2219           extend, global lock and checking that timing is within expectations.
2220           The tests pass correctly on Infineon TPMs but may need to be adjusted
2221           for other devices.
2222
2223 endif
2224
2225 endmenu
2226
2227 menu "Firmware commands"
2228 config CMD_CROS_EC
2229         bool "Enable crosec command"
2230         depends on CROS_EC
2231         default y
2232         help
2233           Enable command-line access to the Chrome OS EC (Embedded
2234           Controller). This provides the 'crosec' command which has
2235           a number of sub-commands for performing EC tasks such as
2236           updating its flash, accessing a small saved context area
2237           and talking to the I2C bus behind the EC (if there is one).
2238 endmenu
2239
2240 menu "Filesystem commands"
2241 config CMD_BTRFS
2242         bool "Enable the 'btrsubvol' command"
2243         select FS_BTRFS
2244         help
2245           This enables the 'btrsubvol' command to list subvolumes
2246           of a BTRFS filesystem. There are no special commands for
2247           listing BTRFS directories or loading BTRFS files - this
2248           can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
2249           when BTRFS is enabled (see FS_BTRFS).
2250
2251 config CMD_CBFS
2252         bool "Enable the 'cbfs' command"
2253         depends on FS_CBFS
2254         help
2255           Define this to enable support for reading from a Coreboot
2256           filesystem. This is a ROM-based filesystem used for accessing files
2257           on systems that use coreboot as the first boot-loader and then load
2258           U-Boot to actually boot the Operating System. Available commands are
2259           cbfsinit, cbfsinfo, cbfsls and cbfsload.
2260
2261 config CMD_CRAMFS
2262         bool "Enable the 'cramfs' command"
2263         depends on FS_CRAMFS
2264         help
2265           This provides commands for dealing with CRAMFS (Compressed ROM
2266           filesystem). CRAMFS is useful when space is tight since files are
2267           compressed. Two commands are provided:
2268
2269              cramfsls   - lists files in a cramfs image
2270              cramfsload - loads a file from a cramfs image
2271
2272 config CMD_EROFS
2273         bool "EROFS command support"
2274         select FS_EROFS
2275         help
2276           Support for the EROFS fs
2277
2278 config CMD_EXT2
2279         bool "ext2 command support"
2280         select FS_EXT4
2281         help
2282           Enables EXT2 FS command
2283
2284 config CMD_EXT4
2285         bool "ext4 command support"
2286         select FS_EXT4
2287         help
2288           Enables EXT4 FS command
2289
2290 config CMD_EXT4_WRITE
2291         depends on CMD_EXT4
2292         bool "ext4 write command support"
2293         select EXT4_WRITE
2294         help
2295           Enables EXT4 FS write command
2296
2297 config CMD_FAT
2298         bool "FAT command support"
2299         select FS_FAT
2300         help
2301           Support for the FAT fs
2302
2303 config CMD_SQUASHFS
2304         bool "SquashFS command support"
2305         select FS_SQUASHFS
2306         help
2307           Enables SquashFS filesystem commands (e.g. load, ls).
2308
2309 config CMD_FS_GENERIC
2310         bool "filesystem commands"
2311         help
2312           Enables filesystem commands (e.g. load, ls) that work for multiple
2313           fs types.
2314
2315 config CMD_FS_UUID
2316         bool "fsuuid command"
2317         help
2318           Enables fsuuid command for filesystem UUID.
2319
2320 config CMD_JFFS2
2321         bool "jffs2 command"
2322         select FS_JFFS2
2323         help
2324           Enables commands to support the JFFS2 (Journalling Flash File System
2325           version 2) filesystem. This enables fsload, ls and fsinfo which
2326           provide the ability to load files, list directories and obtain
2327           filesystem information.
2328
2329 config JFFS2_DEV
2330         string "Default device for JFFS2"
2331         depends on CMD_JFFS2
2332         default "nor0"
2333         help
2334           The default device to use with the jffs2 command.
2335
2336 config JFFS2_PART_OFFSET
2337         hex "Default offset within flash to locate the JFFS2 image"
2338         depends on CMD_JFFS2
2339         default 0x0
2340         help
2341           The default offset within flash to locate the JFFS2 image.
2342
2343 config JFFS2_PART_SIZE
2344         hex "Default size of JFFS2 partition"
2345         depends on CMD_JFFS2
2346         default 0xFFFFFFFF
2347         help
2348           The default size of the JFFS2 partition
2349
2350 config CMD_MTDPARTS
2351         bool "MTD partition support"
2352         depends on MTD
2353         help
2354           MTD partitioning tool support.
2355           It is strongly encouraged to avoid using this command
2356           anymore along with 'sf', 'nand', 'onenand'. One can still
2357           declare the partitions in the mtdparts environment variable
2358           but better use the MTD stack and the 'mtd' command instead.
2359
2360 config CMD_MTDPARTS_SPREAD
2361         bool "Padd partition size to take account of bad blocks"
2362         depends on CMD_MTDPARTS
2363         help
2364           This enables the 'spread' sub-command of the mtdparts command.
2365           This command will modify the existing mtdparts variable by increasing
2366           the size of the partitions such that 1) each partition's net size is
2367           at least as large as the size specified in the mtdparts variable and
2368           2) each partition starts on a good block.
2369
2370 config CMD_MTDPARTS_SHOW_NET_SIZES
2371         bool "Show net size (w/o bad blocks) of partitions"
2372         depends on CMD_MTDPARTS
2373         help
2374           Adds two columns to the printed partition table showing the
2375           effective usable size of a partition, if bad blocks are taken
2376           into account.
2377
2378 config MTDIDS_DEFAULT
2379         string "Default MTD IDs"
2380         depends on MTD || SPI_FLASH
2381         help
2382           Defines a default MTD IDs list for use with MTD partitions in the
2383           Linux MTD command line partitions format.
2384
2385 config MTDPARTS_DEFAULT
2386         string "Default MTD partition scheme"
2387         depends on MTD || SPI_FLASH
2388         help
2389           Defines a default MTD partitioning scheme in the Linux MTD command
2390           line partitions format
2391
2392 config CMD_REISER
2393         bool "reiser - Access to reiserfs filesystems"
2394         help
2395           This provides two commands which operate on a resierfs filesystem,
2396           commonly used some years ago:
2397
2398             reiserls - list files
2399             reiserload - load a file
2400
2401 config CMD_YAFFS2
2402         bool "yaffs2 - Access of YAFFS2 filesystem"
2403         depends on YAFFS2
2404         default y
2405         help
2406           This provides commands for accessing a YAFFS2 filesystem. Yet
2407           Another Flash Filesystem 2 is a filesystem designed specifically
2408           for NAND flash. It incorporates bad-block management and ensures
2409           that device writes are sequential regardless of filesystem
2410           activity.
2411
2412 config CMD_ZFS
2413         bool "zfs - Access of ZFS filesystem"
2414         help
2415           This provides commands to accessing a ZFS filesystem, commonly used
2416           on Solaris systems. Two sub-commands are provided:
2417
2418             zfsls - list files in a directory
2419             zfsload - load a file
2420
2421           See doc/README.zfs for more details.
2422
2423 endmenu
2424
2425 menu "Debug commands"
2426
2427 config CMD_CBSYSINFO
2428         bool "cbsysinfo"
2429         depends on X86
2430         default y if SYS_COREBOOT
2431         help
2432           This provides information about the coreboot sysinfo table stored in
2433           memory by coreboot before jumping to U-Boot. It can be useful for
2434           debugging the beaaviour of coreboot or U-Boot.
2435
2436 config CMD_DIAG
2437         bool "diag - Board diagnostics"
2438         help
2439           This command provides access to board diagnostic tests. These are
2440           called Power-on Self Tests (POST). The command allows listing of
2441           available tests and running either all the tests, or specific tests
2442           identified by name.
2443
2444 config CMD_EVENT
2445         bool "event - Show information about events"
2446         default y if EVENT_DEBUG
2447         help
2448           This enables the 'event' command which provides information about
2449           events and event-handler routines. This can help to device event
2450           hadling.
2451
2452 config CMD_IRQ
2453         bool "irq - Show information about interrupts"
2454         depends on !ARM && !MIPS && !RISCV && !SH
2455         help
2456           This enables two commands:
2457
2458              interrupts - enable or disable interrupts
2459              irqinfo - print device-specific interrupt information
2460
2461 config CMD_KGDB
2462         bool "kgdb - Allow debugging of U-Boot with gdb"
2463         depends on PPC
2464         help
2465           This enables a 'kgdb' command which allows gdb to connect to U-Boot
2466           over a serial link for debugging purposes. This allows
2467           single-stepping, inspecting variables, etc. This is supported only
2468           on PowerPC at present.
2469
2470 config CMD_LOG
2471         bool "log - Generation, control and access to logging"
2472         select LOG
2473         select GETOPT
2474         help
2475           This provides access to logging features. It allows the output of
2476           log data to be controlled to a limited extent (setting up the default
2477           maximum log level for emitting of records). It also provides access
2478           to a command used for testing the log system.
2479
2480 config CMD_TRACE
2481         bool "trace - Support tracing of function calls and timing"
2482         depends on TRACE
2483         default y
2484         help
2485           Enables a command to control using of function tracing within
2486           U-Boot. This allows recording of call traces including timing
2487           information. The command can write data to memory for exporting
2488           for analysis (e.g. using bootchart). See doc/README.trace for full
2489           details.
2490
2491 config CMD_AVB
2492         bool "avb - Android Verified Boot 2.0 operations"
2493         depends on AVB_VERIFY
2494         help
2495           Enables a "avb" command to perform verification of partitions using
2496           Android Verified Boot 2.0 functionality. It includes such subcommands:
2497             avb init - initialize avb2 subsystem
2498             avb read_rb - read rollback index
2499             avb write_rb - write rollback index
2500             avb is_unlocked - check device lock state
2501             avb get_uuid - read and print uuid of a partition
2502             avb read_part - read data from partition
2503             avb read_part_hex - read data from partition and output to stdout
2504             avb write_part - write data to partition
2505             avb verify - run full verification chain
2506
2507 config CMD_STACKPROTECTOR_TEST
2508         bool "Test command for stack protector"
2509         depends on STACKPROTECTOR
2510         help
2511           Enable stackprot_test command
2512           The stackprot_test command will force a stack overrun to test
2513           the stack smashing detection mechanisms.
2514
2515 endmenu
2516
2517 config CMD_UBI
2518         tristate "Enable UBI - Unsorted block images commands"
2519         select MTD_UBI
2520         help
2521           UBI is a software layer above MTD layer which admits use of LVM-like
2522           logical volumes on top of MTD devices, hides some complexities of
2523           flash chips like wear and bad blocks and provides some other useful
2524           capabilities. Please, consult the MTD web site for more details
2525           (www.linux-mtd.infradead.org). Activate this option if you want
2526           to use U-Boot UBI commands.
2527           It is also strongly encouraged to also enable CONFIG_MTD to get full
2528           partition support.
2529
2530 config CMD_UBI_RENAME
2531        bool "Enable rename"
2532        depends on CMD_UBI
2533        help
2534          Enable a "ubi" command to rename ubi volume:
2535            ubi rename <oldname> <newname>
2536
2537 config CMD_UBIFS
2538         tristate "Enable UBIFS - Unsorted block images filesystem commands"
2539         depends on CMD_UBI
2540         default y if CMD_UBI
2541         select LZO
2542         help
2543           UBIFS is a file system for flash devices which works on top of UBI.
2544
2545 config MMC_SPEED_MODE_SET
2546         bool "set speed mode using mmc command"
2547         depends on CMD_MMC
2548         default n
2549         help
2550           Enable setting speed mode using mmc rescan and mmc dev commands.
2551           The speed mode is provided as the last argument in these commands
2552           and is indicated using the index from enum bus_mode in
2553           include/mmc.h. A speed mode can be set only if it has already
2554           been enabled in the device tree.
2555 endmenu