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