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