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