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