blob: 205df2f1fb65dbe2a0959e655834d1ccdea47c18 [file] [log] [blame]
Simon Glass29499a02016-01-17 20:53:51 -07001menu "Command line interface"
2
Simon Glassaa34ef22016-03-13 19:07:28 -06003config 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
Simon Glass29499a02016-01-17 20:53:51 -070014config HUSH_PARSER
15 bool "Use hush shell"
Simon Glassaa34ef22016-03-13 19:07:28 -060016 depends on CMDLINE
Simon Glass29499a02016-01-17 20:53:51 -070017 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
Adam Ford58dbf862018-02-06 07:58:59 -060026config 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
Tom Rini24d32042022-03-30 18:07:14 -040034config CMDLINE_PS_SUPPORT
35 bool "Enable support for changing the command prompt string at run-time"
36 depends on HUSH_PARSER
37 help
38 Only static string in the prompt is supported so far. The string is
39 obtained from environment variables PS1 and PS2.
40
Adam Ford58dbf862018-02-06 07:58:59 -060041config AUTO_COMPLETE
42 bool "Enable auto complete using TAB"
43 depends on CMDLINE
44 default y
45 help
46 Enable auto completion of commands using TAB.
47
48config SYS_LONGHELP
49 bool "Enable long help messages"
50 depends on CMDLINE
51 default y if CMDLINE
52 help
53 Defined when you want long help messages included
54 Do not set this option when short of memory.
55
Simon Glass29499a02016-01-17 20:53:51 -070056config SYS_PROMPT
57 string "Shell prompt"
Michal Simekf048cae2019-09-25 12:32:41 +020058 default "Zynq> " if ARCH_ZYNQ
Michal Simek4f107432019-09-25 12:37:15 +020059 default "ZynqMP> " if ARCH_ZYNQMP
Simon Glass29499a02016-01-17 20:53:51 -070060 default "=> "
61 help
62 This string is displayed in the command line to the left of the
63 cursor.
64
Patrick Delaunaya81e9dc2020-10-26 09:31:42 +010065config SYS_PROMPT_HUSH_PS2
66 string "Hush shell secondary prompt"
67 depends on HUSH_PARSER
68 default "> "
69 help
70 This defines the secondary prompt string, which is
71 printed when the command interpreter needs more input
72 to complete a command. Usually "> ".
73
Tom Riniba5c2b02022-05-11 16:21:06 -040074config SYS_MAXARGS
75 int "Maximum number arguments accepted by commands"
76 default 16
77
Tom Riniae17fa32022-05-11 18:01:06 -040078config SYS_CBSIZE
79 int "Console input buffer size"
80 default 2048 if ARCH_TEGRA || ARCH_VERSAL || ARCH_ZYNQ || ARCH_ZYNQMP || \
81 RCAR_GEN3 || TARGET_SOCFPGA_SOC64
82 default 512 if ARCH_MX5 || ARCH_MX6 || ARCH_MX7 || FSL_LSCH2 || \
83 FSL_LSCH3 || X86
84 default 256 if M68K || PPC
85 default 1024
86
Tom Rinicbfa1392022-05-11 17:38:09 -040087config SYS_PBSIZE
88 int "Buffer size for console output"
Andre Przywara3f5873f2022-09-13 01:23:58 +010089 default 1024 if ARCH_SUNXI
Tom Rinicbfa1392022-05-11 17:38:09 -040090 default 1044
91
Christoph Muellner388b1452019-04-05 13:03:46 +020092config SYS_XTRACE
Sean Anderson1f863052021-03-04 11:34:23 -050093 bool "Command execution tracer"
Christoph Muellner388b1452019-04-05 13:03:46 +020094 depends on CMDLINE
95 default y if CMDLINE
96 help
97 This option enables the possiblity to print all commands before
98 executing them and after all variables are evaluated (similar
99 to Bash's xtrace/'set -x' feature).
100 To enable the tracer a variable "xtrace" needs to be defined in
101 the environment.
102
Sam Protsenko13c1f3a2017-09-28 12:33:45 -0700103config BUILD_BIN2C
104 bool
105
Simon Glass29499a02016-01-17 20:53:51 -0700106comment "Commands"
107
108menu "Info commands"
109
Simon Glassfaf08c72020-04-26 09:19:53 -0600110config CMD_ACPI
111 bool "acpi"
Simon Glasse264be42023-05-04 16:54:57 -0600112 depends on ACPI
Heinrich Schuchardt97430462021-01-20 21:37:56 +0100113 default y
Simon Glassfaf08c72020-04-26 09:19:53 -0600114 help
115 List and dump ACPI tables. ACPI (Advanced Configuration and Power
116 Interface) is used mostly on x86 for providing information to the
117 Operating System about devices in the system. The tables are set up
118 by the firmware, typically U-Boot but possibly an earlier firmware
119 module, if U-Boot is chain-loaded from something else. ACPI tables
120 can also include code, to perform hardware-specific tasks required
121 by the Operating Systems. This allows some amount of separation
122 between the firmware and OS, and is particularly useful when you
123 want to make hardware changes without the OS needing to be adjusted.
124
Bin Meng70b22cf2021-02-25 17:22:34 +0800125config CMD_ADDRMAP
126 bool "addrmap"
127 depends on ADDR_MAP
128 default y
129 help
130 List non-identity virtual-physical memory mappings for 32-bit CPUs.
131
Simon Glass29499a02016-01-17 20:53:51 -0700132config CMD_BDI
133 bool "bdinfo"
134 default y
135 help
136 Print board info
137
Simon Glass5087c772023-07-15 21:38:46 -0600138config CMD_BDINFO_EXTRA
139 bool "bdinfo extra features"
140 default y if SANDBOX || X86
141 help
142 Show additional information about the board. This uses a little more
143 code space but provides more options, particularly those useful for
144 bringup, development and debugging.
145
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900146config CMD_CONFIG
147 bool "config"
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900148 default SANDBOX
Michal Simek84f3dec2018-07-23 15:55:13 +0200149 select BUILD_BIN2C
Masahiro Yamadabb92b422017-01-30 11:12:07 +0900150 help
151 Print ".config" contents.
152
153 If this option is enabled, the ".config" file contents are embedded
154 in the U-Boot image and can be printed on the console by the "config"
155 command. This provides information of which options are enabled on
156 the running U-Boot.
157
Simon Glass29499a02016-01-17 20:53:51 -0700158config CMD_CONSOLE
159 bool "coninfo"
160 default y
161 help
162 Print console devices and information.
163
164config CMD_CPU
165 bool "cpu"
Heinrich Schuchardt1cdcd0c2020-11-05 00:29:11 +0100166 depends on CPU
Simon Glass29499a02016-01-17 20:53:51 -0700167 help
168 Print information about available CPUs. This normally shows the
169 number of CPUs, type (e.g. manufacturer, architecture, product or
170 internal name) and clock frequency. Other information may be
171 available depending on the CPU driver.
172
Sughosh Ganu0f951fd2022-10-21 18:16:04 +0530173config CMD_FWU_METADATA
174 bool "fwu metadata read"
175 depends on FWU_MULTI_BANK_UPDATE
176 help
177 Command to read the metadata and dump it's contents
178
Simon Glass4c0bf972023-10-01 19:13:06 -0600179config CMD_HISTORY
180 bool "history"
181 depends on CMDLINE_EDITING
182 help
183 Show the command-line history, i.e. a list of commands that are in
184 the history buffer.
185
Simon Glass29499a02016-01-17 20:53:51 -0700186config CMD_LICENSE
187 bool "license"
Masahiro Yamada81680332017-01-30 11:12:08 +0900188 select BUILD_BIN2C
Simon Glass29499a02016-01-17 20:53:51 -0700189 help
190 Print GPL license text
191
Simon Glass8c501022019-12-06 21:41:54 -0700192config CMD_PMC
193 bool "pmc"
194 help
195 Provides access to the Intel Power-Management Controller (PMC) so
196 that its state can be examined. This does not currently support
197 changing the state but it is still useful for debugging and seeing
198 what is going on.
199
Christophe Leroye538bbc2017-08-04 16:34:40 -0600200config CMD_REGINFO
201 bool "reginfo"
202 depends on PPC
203 help
204 Register dump
205
Baruch Siachfad48982020-01-21 15:44:54 +0200206config CMD_TLV_EEPROM
207 bool "tlv_eeprom"
208 depends on I2C_EEPROM
Pali Rohár2bbf40b2022-05-30 10:42:35 +0200209 select CRC32
Baruch Siachfad48982020-01-21 15:44:54 +0200210 help
211 Display and program the system EEPROM data block in ONIE Tlvinfo
212 format. TLV stands for Type-Length-Value.
213
214config SPL_CMD_TLV_EEPROM
215 bool "tlv_eeprom for SPL"
216 depends on SPL_I2C_EEPROM
Simon Glass284cb9c2021-07-10 21:14:31 -0600217 select SPL_DRIVERS_MISC
Pali Rohár2bbf40b2022-05-30 10:42:35 +0200218 select SPL_CRC32
Baruch Siachfad48982020-01-21 15:44:54 +0200219 help
220 Read system EEPROM data block in ONIE Tlvinfo format from SPL.
221
Heinrich Schuchardt95492ae2020-08-20 19:43:39 +0200222config CMD_SBI
223 bool "sbi"
224 depends on RISCV_SMODE && SBI_V02
225 help
226 Display information about the SBI implementation.
227
Simon Glass29499a02016-01-17 20:53:51 -0700228endmenu
229
230menu "Boot commands"
231
232config CMD_BOOTD
233 bool "bootd"
234 default y
235 help
236 Run the command stored in the environment "bootcmd", i.e.
237 "bootd" does the same thing as "run bootcmd".
238
239config CMD_BOOTM
240 bool "bootm"
241 default y
242 help
243 Boot an application image from the memory.
244
Philippe Reynesae1f2ca2022-03-28 22:57:00 +0200245config CMD_BOOTM_PRE_LOAD
246 bool "enable pre-load on bootm"
247 depends on CMD_BOOTM
248 depends on IMAGE_PRE_LOAD
249 default n
250 help
251 Enable support of stage pre-load for the bootm command.
252 This stage allow to check or modify the image provided
253 to the bootm command.
254
Simon Glass379f4382022-04-24 23:31:10 -0600255config CMD_BOOTDEV
256 bool "bootdev"
257 depends on BOOTSTD
258 default y if BOOTSTD_FULL
259 help
260 Support listing available bootdevs (boot devices) which can provide an
261 OS to boot, as well as showing information about a particular one.
262
263 This command is not necessary for bootstd to work.
264
Simon Glass7617f492022-04-24 23:31:11 -0600265config CMD_BOOTFLOW
266 bool "bootflow"
267 depends on BOOTSTD
268 default y
269 help
270 Support scanning for bootflows available with the bootdevs. The
271 bootflows can optionally be booted.
272
273config CMD_BOOTFLOW_FULL
274 bool "bootflow - extract subcommands"
275 depends on BOOTSTD_FULL
Simon Glass2d5a8e12023-05-06 08:27:09 -0600276 default y
Simon Glass7617f492022-04-24 23:31:11 -0600277 help
278 Add the ability to list the available bootflows, select one and obtain
279 information about it.
280
281 This command is not necessary for bootstd to work.
282
Simon Glassc49fd722022-04-24 23:31:12 -0600283config CMD_BOOTMETH
284 bool "bootmeth"
285 depends on BOOTSTD
286 default y if BOOTSTD_FULL
287 help
288 Support listing available bootmethds (methods used to boot an
289 Operating System), as well as selecting the order that the bootmeths
290 are used.
291
292 This command is not necessary for bootstd to work.
293
Cristian Ciocaltea6aca5982019-12-24 18:05:39 +0200294config BOOTM_EFI
295 bool "Support booting UEFI FIT images"
296 depends on CMD_BOOTEFI && CMD_BOOTM && FIT
297 default y
298 help
299 Support booting UEFI FIT images via the bootm command.
300
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500301config CMD_BOOTZ
302 bool "bootz"
303 help
304 Boot the Linux zImage
305
Masahiro Yamada04cf1552016-08-12 08:31:16 -0400306config CMD_BOOTI
307 bool "booti"
Atish Patra583b4092019-05-06 17:49:39 -0700308 depends on ARM64 || RISCV
Masahiro Yamada04cf1552016-08-12 08:31:16 -0400309 default y
310 help
311 Boot an AArch64 Linux Kernel image from memory.
312
Tom Rini9a102072019-09-20 17:36:50 -0400313config BOOTM_LINUX
314 bool "Support booting Linux OS images"
315 depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI
316 default y
317 help
318 Support booting the Linux kernel directly via a command such as bootm
319 or booti or bootz.
320
321config BOOTM_NETBSD
322 bool "Support booting NetBSD (non-EFI) loader images"
323 depends on CMD_BOOTM
324 default y
325 help
326 Support booting NetBSD via the bootm command.
327
328config BOOTM_OPENRTOS
329 bool "Support booting OPENRTOS / FreeRTOS images"
330 depends on CMD_BOOTM
331 help
332 Support booting OPENRTOS / FreeRTOS via the bootm command.
333
334config BOOTM_OSE
335 bool "Support booting Enea OSE images"
Tom Rini1d0b1fc2019-12-05 18:46:11 -0500336 depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86)
Tom Rini9a102072019-09-20 17:36:50 -0400337 depends on CMD_BOOTM
338 help
339 Support booting Enea OSE images via the bootm command.
340
341config BOOTM_PLAN9
342 bool "Support booting Plan9 OS images"
343 depends on CMD_BOOTM
344 default y
345 help
346 Support booting Plan9 images via the bootm command.
347
348config BOOTM_RTEMS
349 bool "Support booting RTEMS OS images"
350 depends on CMD_BOOTM
351 default y
352 help
353 Support booting RTEMS images via the bootm command.
354
Linus Walleijbef39252023-02-01 00:16:13 +0100355config CMD_SEAMA
356 bool "Support read SEAMA NAND images"
357 depends on MTD_RAW_NAND
358 help
359 Support reading NAND Seattle Image (SEAMA) images.
360
Simon Glasse5a7b772022-07-30 15:52:37 -0600361config CMD_VBE
362 bool "vbe - Verified Boot for Embedded"
363 depends on BOOTMETH_VBE
Simon Glassd39d5b22022-08-23 10:14:05 -0700364 default y if BOOTSTD_FULL
Simon Glasse5a7b772022-07-30 15:52:37 -0600365 help
366 Provides various subcommands related to VBE, such as listing the
367 available methods, looking at the state and changing which method
368 is used to boot. Updating the parameters is not currently
369 supported.
370
Tom Rini9a102072019-09-20 17:36:50 -0400371config BOOTM_VXWORKS
372 bool "Support booting VxWorks OS images"
373 depends on CMD_BOOTM
374 default y
375 help
376 Support booting VxWorks images via the bootm command.
377
Tom Rinif3c2f992022-06-25 19:29:46 -0400378config SYS_BOOTM_LEN
379 hex "Maximum size of a decompresed OS image"
Marek Vasut5be531b2023-05-29 14:04:06 +0200380 depends on CMD_BOOTM || CMD_BOOTI || CMD_BOOTZ || \
381 LEGACY_IMAGE_FORMAT || SPL_LEGACY_IMAGE_FORMAT
Tom Rinif3c2f992022-06-25 19:29:46 -0400382 default 0x4000000 if PPC || ARM64
383 default 0x1000000 if X86 || ARCH_MX6 || ARCH_MX7
384 default 0x800000
385 help
386 This is the maximum size of the buffer that is used to decompress the OS
387 image in to, if passing a compressed image to bootm/booti/bootz.
388
AKASHI Takahiro8d95b6e2019-11-08 10:32:15 +0900389config CMD_BOOTEFI
390 bool "bootefi"
391 depends on EFI_LOADER
392 default y
393 help
394 Boot an EFI image from memory.
395
Alexander Grafb5483512016-11-17 22:40:10 +0100396config CMD_BOOTEFI_HELLO_COMPILE
397 bool "Compile a standard EFI hello world binary for testing"
Heinrich Schuchardt0f675d92019-11-07 08:05:17 +0100398 depends on CMD_BOOTEFI && !CPU_V7M
Alexander Grafb5483512016-11-17 22:40:10 +0100399 default y
400 help
401 This compiles a standard EFI hello world application with U-Boot so
402 that it can be used with the test/py testing framework. This is useful
403 for testing that EFI is working at a basic level, and for bringing
404 up EFI support on a new architecture.
405
406 No additional space will be required in the resulting U-Boot binary
407 when this option is enabled.
408
Simon Glassfac4ced2016-11-07 08:47:08 -0700409config CMD_BOOTEFI_HELLO
410 bool "Allow booting a standard EFI hello world for testing"
Alexander Grafb5483512016-11-17 22:40:10 +0100411 depends on CMD_BOOTEFI_HELLO_COMPILE
Heinrich Schuchardt9ad6e1e2020-07-13 07:33:40 +0200412 default y if CMD_BOOTEFI_SELFTEST
Simon Glassfac4ced2016-11-07 08:47:08 -0700413 help
414 This adds a standard EFI hello world application to U-Boot so that
415 it can be used with the 'bootefi hello' command. This is useful
416 for testing that EFI is working at a basic level, and for bringing
417 up EFI support on a new architecture.
418
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200419source lib/efi_selftest/Kconfig
420
Tom Rini697f4732016-11-29 09:14:56 -0500421config CMD_BOOTMENU
422 bool "bootmenu"
423 select MENU
Masahisa Kojima015405a2022-04-28 17:09:41 +0900424 select CHARSET
Tom Rini697f4732016-11-29 09:14:56 -0500425 help
426 Add an ANSI terminal boot menu command.
427
Eugeniu Roscaee98dac2019-12-24 17:51:06 +0100428config CMD_ADTIMG
429 bool "adtimg"
Sam Protsenko92f95bb2018-08-16 23:34:13 +0300430 help
431 Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from
432 image into RAM, dump image structure information, etc. Those dtb/dtbo
433 files should be merged in one dtb further, which needs to be passed to
434 the kernel, as part of a boot process.
435
Sam Protsenko035502e2020-01-24 17:53:42 +0200436config CMD_ABOOTIMG
437 bool "abootimg"
438 depends on ANDROID_BOOT_IMAGE
439 help
440 Android Boot Image manipulation commands. Allows one to extract
441 images contained in boot.img, like kernel, ramdisk, dtb, etc, and
442 obtain corresponding meta-information from boot.img.
443
Sam Protsenkod8efc7c2020-01-24 17:53:43 +0200444 See doc/android/boot-image.rst for details.
445
Simon Glassc8925112023-06-01 10:23:02 -0600446config CMD_CEDIT
447 bool "cedit - Configuration editor"
448 depends on CEDIT
449 default y
450 help
451 Provides a command to allow editing of board configuration and
452 providing a UI for the user to adjust settings. Subcommands allow
453 loading and saving of configuration as well as showing an editor.
454
Simon Glass29499a02016-01-17 20:53:51 -0700455config CMD_ELF
456 bool "bootelf, bootvx"
457 default y
Keerthy76f361a2020-02-12 13:55:03 +0530458 select LIB_ELF
Simon Glass29499a02016-01-17 20:53:51 -0700459 help
460 Boot an ELF/vxWorks image from the memory.
461
Michal Simekf168c652016-04-06 20:28:04 +0200462config CMD_FDT
463 bool "Flattened Device Tree utility commands"
464 default y
465 depends on OF_LIBFDT
466 help
467 Do FDT related setup before booting into the Operating System.
468
Kory Maincent7444a7d2021-05-04 19:31:22 +0200469config SUPPORT_EXTENSION_SCAN
470 bool
471
472config CMD_EXTENSION
473 bool "Extension board management command"
474 select CMD_FDT
475 depends on SUPPORT_EXTENSION_SCAN
476 help
477 Enables the "extension" command, which allows to detect
478 extension boards connected to the system, and apply
479 corresponding Device Tree overlays.
480
Simon Glass29499a02016-01-17 20:53:51 -0700481config CMD_GO
482 bool "go"
483 default y
484 help
485 Start an application at a given address.
486
487config CMD_RUN
488 bool "run"
489 default y
490 help
491 Run the command in the given environment variable.
492
493config CMD_IMI
494 bool "iminfo"
495 default y
496 help
497 Print header information for application image.
498
499config CMD_IMLS
500 bool "imls"
Simon Glass29499a02016-01-17 20:53:51 -0700501 help
502 List all images found in flash
503
504config CMD_XIMG
505 bool "imxtract"
506 default y
507 help
508 Extract a part of a multi-image.
509
Simon Glassc6567fa2017-08-04 16:34:48 -0600510config CMD_SPL
511 bool "spl export - Export boot information for Falcon boot"
512 depends on SPL
513 help
514 Falcon mode allows booting directly from SPL into an Operating
515 System such as Linux, thus skipping U-Boot proper. See
516 doc/README.falcon for full information about how to use this
517 command.
518
Simon Glassc034e3d2017-08-04 16:34:49 -0600519config CMD_SPL_NAND_OFS
Lukasz Majewski10797442019-05-16 16:01:36 +0200520 hex "Offset of OS args or dtb for Falcon-mode NAND boot"
Lukasz Majewskie73ce322019-05-16 16:01:35 +0200521 depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT)
Tom Rinif18679c2023-08-02 11:09:43 -0400522 default 0x0
Simon Glassc034e3d2017-08-04 16:34:49 -0600523 help
524 This provides the offset of the command line arguments for Linux
525 when booting from NAND in Falcon mode. See doc/README.falcon
526 for full information about how to use this option (and also see
527 board/gateworks/gw_ventana/README for an example).
528
Lukasz Majewski06d92532019-05-16 16:01:37 +0200529config CMD_SPL_NOR_OFS
530 hex "Offset of OS args or dtb for Falcon-mode NOR boot"
531 depends on CMD_SPL && SPL_NOR_SUPPORT
Tom Rinif18679c2023-08-02 11:09:43 -0400532 default 0x0
Lukasz Majewski06d92532019-05-16 16:01:37 +0200533 help
534 This provides the offset of the command line arguments or dtb for
535 Linux when booting from NOR in Falcon mode.
536
Simon Glass51ef45a2017-08-04 16:34:50 -0600537config CMD_SPL_WRITE_SIZE
538 hex "Size of argument area"
539 depends on CMD_SPL
540 default 0x2000
541 help
542 This provides the size of the command-line argument area in NAND
543 flash used by Falcon-mode boot. See the documentation until CMD_SPL
544 for detail.
545
Simon Glassa18b9692017-08-04 16:34:57 -0600546config CMD_THOR_DOWNLOAD
547 bool "thor - TIZEN 'thor' download"
Marek Szyprowskide4752e2019-10-02 12:29:08 +0200548 select DFU
Venkatesh Yadav Abbarapu7143f2a2023-09-04 08:45:27 +0530549 select USB_FUNCTION_THOR
550 depends on USB_GADGET_DOWNLOAD
Simon Glassa18b9692017-08-04 16:34:57 -0600551 help
552 Implements the 'thor' download protocol. This is a way of
553 downloading a software update over USB from an attached host.
554 There is no documentation about this within the U-Boot source code
555 but you should be able to find something on the interwebs.
556
Tom Rini40791152022-12-02 16:42:46 -0500557config THOR_RESET_OFF
558 bool "thor: Disable reset on completion"
559 depends on CMD_THOR_DOWNLOAD
560
Simon Glass01d097d2017-08-04 16:35:03 -0600561config CMD_ZBOOT
562 bool "zboot - x86 boot command"
563 help
564 With x86 machines it is common to boot a bzImage file which
565 contains both a kernel and a setup.bin file. The latter includes
566 configuration information from the dark ages which x86 boards still
567 need to pick things out of.
568
569 Consider using FIT in preference to this since it supports directly
570 booting both 32- and 64-bit kernels, as well as secure boot.
571 Documentation is available in doc/uImage.FIT/x86-fit-boot.txt
572
Simon Glass29499a02016-01-17 20:53:51 -0700573endmenu
574
575menu "Environment commands"
576
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500577config CMD_ASKENV
578 bool "ask for env variable"
579 help
580 Ask for environment variable
581
Simon Glass29499a02016-01-17 20:53:51 -0700582config CMD_EXPORTENV
583 bool "env export"
584 default y
585 help
586 Export environments.
587
588config CMD_IMPORTENV
589 bool "env import"
590 default y
591 help
592 Import environments.
593
594config CMD_EDITENV
595 bool "editenv"
596 default y
597 help
598 Edit environment variable.
599
Dinh Nguyen0685bef2016-04-21 09:05:23 -0500600config CMD_GREPENV
601 bool "search env"
602 help
603 Allow for searching environment variables
604
Simon Glass29499a02016-01-17 20:53:51 -0700605config CMD_SAVEENV
606 bool "saveenv"
607 default y
608 help
609 Save all environment variables into the compiled-in persistent
610 storage.
611
Frank Wunderlich33afa932019-06-29 11:36:19 +0200612config CMD_ERASEENV
613 bool "eraseenv"
Frank Wunderlich33afa932019-06-29 11:36:19 +0200614 depends on CMD_SAVEENV
615 help
616 Erase environment variables from the compiled-in persistent
617 storage.
618
Simon Glass29499a02016-01-17 20:53:51 -0700619config CMD_ENV_EXISTS
620 bool "env exists"
621 default y
622 help
623 Check if a variable is defined in the environment for use in
624 shell scripting.
625
Simon Glass84d67c72017-05-17 03:25:13 -0600626config CMD_ENV_CALLBACK
627 bool "env callbacks - print callbacks and their associated variables"
628 help
629 Some environment variable have callbacks defined by
630 U_BOOT_ENV_CALLBACK. These are called when the variable changes.
631 For example changing "baudrate" adjust the serial baud rate. This
632 command lists the currently defined callbacks.
633
Simon Glassc31e2d82017-05-17 03:25:14 -0600634config CMD_ENV_FLAGS
635 bool "env flags -print variables that have non-default flags"
636 help
637 Some environment variables have special flags that control their
638 behaviour. For example, serial# can only be written once and cannot
639 be deleted. This command shows the variables that have special
640 flags.
641
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900642config CMD_NVEDIT_EFI
643 bool "env [set|print] -e - set/print UEFI variables"
644 depends on EFI_LOADER
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900645 imply HEXDUMP
646 help
647 UEFI variables are encoded as some form of U-Boot variables.
648 If enabled, we are allowed to set/print UEFI variables using
649 "env" command with "-e" option without knowing details.
650
Samuel Dionne-Riel46127db2021-12-20 18:31:56 -0500651config CMD_NVEDIT_INDIRECT
652 bool "env indirect - Sets environment value from another"
653
Leo Ruan7450b872019-05-24 17:20:19 +0200654config CMD_NVEDIT_INFO
655 bool "env info - print or evaluate environment information"
656 help
657 Print environment information:
658 - env_valid : is environment valid
659 - env_ready : is environment imported into hash table
660 - env_use_default : is default environment used
661
662 This command can be optionally used for evaluation in scripts:
663 [-d] : evaluate whether default environment is used
664 [-p] : evaluate whether environment can be persisted
Patrick Delaunay109ec8f2020-06-19 14:03:34 +0200665 [-q] : quiet output
Leo Ruan7450b872019-05-24 17:20:19 +0200666 The result of multiple evaluations will be combined with AND.
667
Patrick Delaunay748e42e2020-07-28 11:51:20 +0200668config CMD_NVEDIT_LOAD
669 bool "env load"
670 help
671 Load all environment variables from the compiled-in persistent
672 storage.
673
Patrick Delaunaya59f7ec2020-07-28 11:51:21 +0200674config CMD_NVEDIT_SELECT
675 bool "env select"
676 help
677 Select the compiled-in persistent storage of environment variables.
678
Simon Glass29499a02016-01-17 20:53:51 -0700679endmenu
680
681menu "Memory commands"
682
Mario Six8a4f6642018-03-28 14:39:18 +0200683config CMD_BINOP
684 bool "binop"
685 help
686 Compute binary operations (xor, or, and) of byte arrays of arbitrary
687 size from memory and store the result in memory or the environment.
688
Simon Glassb936a972020-09-19 18:49:26 -0600689config CMD_BLOBLIST
690 bool "bloblist"
691 default y if BLOBLIST
692 help
693 Show information about the bloblist, a collection of binary blobs
694 held in memory that persist between SPL and U-Boot. In the case of
695 x86 devices the bloblist can be used to hold ACPI tables so that they
696 remain available in memory.
697
Simon Glass29499a02016-01-17 20:53:51 -0700698config CMD_CRC32
699 bool "crc32"
700 default y
Michal Simek84f3dec2018-07-23 15:55:13 +0200701 select HASH
Simon Glass29499a02016-01-17 20:53:51 -0700702 help
703 Compute CRC32.
704
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100705config CRC32_VERIFY
706 bool "crc32 -v"
707 depends on CMD_CRC32
708 help
709 Add -v option to verify data against a crc32 checksum.
710
Simon Glass4590d4e2017-05-17 03:25:10 -0600711config CMD_EEPROM
712 bool "eeprom - EEPROM subsystem"
713 help
714 (deprecated, needs conversion to driver model)
715 Provides commands to read and write EEPROM (Electrically Erasable
716 Programmable Read Only Memory) chips that are connected over an
717 I2C bus.
718
719config CMD_EEPROM_LAYOUT
720 bool "Enable layout-aware eeprom commands"
721 depends on CMD_EEPROM
722 help
723 (deprecated, needs conversion to driver model)
724 When enabled, additional eeprom sub-commands become available.
725
726 eeprom print - prints the contents of the eeprom in a human-readable
727 way (eeprom layout fields, and data formatted to be fit for human
728 consumption).
729
730 eeprom update - allows user to update eeprom fields by specifying
731 the field name, and providing the new data in a human readable format
732 (same format as displayed by the eeprom print command).
733
734 Both commands can either auto detect the layout, or be told which
735 layout to use.
736
737 Feature API:
738 __weak int parse_layout_version(char *str)
739 - override to provide your own layout name parsing
740 __weak void __eeprom_layout_assign(struct eeprom_layout *layout,
741 int layout_version);
742 - override to setup the layout metadata based on the version
743 __weak int eeprom_layout_detect(unsigned char *data)
744 - override to provide your own algorithm for detecting layout
745 version
746 eeprom_field.c
747 - contains various printing and updating functions for common
748 types of eeprom fields. Can be used for defining
749 custom layouts.
750
751config EEPROM_LAYOUT_HELP_STRING
752 string "Tells user what layout names are supported"
753 depends on CMD_EEPROM_LAYOUT
754 default "<not defined>"
755 help
756 Help printed with the LAYOUT VERSIONS part of the 'eeprom'
757 command's help.
758
Tom Rinifaed5672021-08-17 17:59:45 -0400759config SYS_I2C_EEPROM_BUS
760 int "I2C bus of the EEPROM device."
761 depends on CMD_EEPROM
762 default 0
763
764config SYS_I2C_EEPROM_ADDR_LEN
765 int "Length in bytes of the EEPROM memory array address"
766 depends on CMD_EEPROM || ID_EEPROM
767 default 1
768 range 1 2
769 help
770 Note: This is NOT the chip address length!
771
772config SYS_EEPROM_SIZE
773 depends on CMD_EEPROM
774 int "Size in bytes of the EEPROM device"
775 default 256
776
777config SYS_EEPROM_PAGE_WRITE_BITS
778 int "Number of bits used to address bytes in a single page"
779 depends on CMD_EEPROM
780 default 8
781 help
782 The EEPROM page size is 2^SYS_EEPROM_PAGE_WRITE_BITS.
783 A 64 byte page, for example would require six bits.
784
785config SYS_EEPROM_PAGE_WRITE_DELAY_MS
786 int "Number of milliseconds to delay between page writes"
787 depends on CMD_EEPROM || CMD_I2C
788 default 0
789
Simon Glass26c20532017-08-04 16:34:51 -0600790config LOOPW
791 bool "loopw"
792 help
793 Infinite write loop on address range
794
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000795config CMD_MD5SUM
796 bool "md5sum"
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000797 select MD5
798 help
799 Compute MD5 checksum.
800
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100801config MD5SUM_VERIFY
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000802 bool "md5sum -v"
Andre Przywaraf0fa1132017-03-15 01:19:05 +0000803 depends on CMD_MD5SUM
804 help
805 Add -v option to verify data against an MD5 checksum.
806
Simon Glass26c20532017-08-04 16:34:51 -0600807config CMD_MEMINFO
808 bool "meminfo"
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100809 help
Simon Glass26c20532017-08-04 16:34:51 -0600810 Display memory information.
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100811
Simon Glass26c20532017-08-04 16:34:51 -0600812config CMD_MEMORY
813 bool "md, mm, nm, mw, cp, cmp, base, loop"
814 default y
Simon Glass29499a02016-01-17 20:53:51 -0700815 help
Simon Glass26c20532017-08-04 16:34:51 -0600816 Memory commands.
817 md - memory display
818 mm - memory modify (auto-incrementing address)
819 nm - memory modify (constant address)
820 mw - memory write (fill)
821 cp - memory copy
822 cmp - memory compare
823 base - print or set address offset
824 loop - initialize loop on address range
Simon Glass29499a02016-01-17 20:53:51 -0700825
Simon Glass573c0fa2020-07-28 19:41:14 -0600826config CMD_MEM_SEARCH
Simon Glass19038de2020-06-02 19:26:49 -0600827 bool "ms - Memory search"
828 help
829 Memory-search command
830
831 This allows searching through a region of memory looking for hex
832 data (byte, 16-bit word, 32-bit long, also 64-bit on machines that
833 support it). It is also possible to search for a string. The
834 command accepts a memory range and a list of values to search for.
835 The values need to appear in memory in the same order they are given
836 in the command. At most 10 matches can be returned at a time, but
837 pressing return will show the next 10 matches. Environment variables
838 are set for use with scripting (memmatches, memaddr, mempos).
839
Joel Johnsondb5a97e2020-01-29 09:17:18 -0700840config CMD_MX_CYCLIC
Adam Ford1ef0c492019-08-14 07:54:34 -0500841 bool "Enable cyclic md/mw commands"
842 depends on CMD_MEMORY
843 help
844 Add the "mdc" and "mwc" memory commands. These are cyclic
845 "md/mw" commands.
846 Examples:
847
848 => mdc.b 10 4 500
849 This command will print 4 bytes (10,11,12,13) each 500 ms.
850
851 => mwc.l 100 12345678 10
852 This command will write 12345678 to address 100 all 10 ms.
853
Jean-Jacques Hiblotd3f09372019-07-02 14:23:26 +0200854config CMD_RANDOM
855 bool "random"
856 default y
857 depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND)
858 help
859 random - fill memory with random data
860
Simon Glass29499a02016-01-17 20:53:51 -0700861config CMD_MEMTEST
862 bool "memtest"
863 help
864 Simple RAM read/write test.
865
Mario Six00518992018-03-28 14:38:14 +0200866if CMD_MEMTEST
867
868config SYS_ALT_MEMTEST
869 bool "Alternative test"
870 help
871 Use a more complete alternative memory test.
872
Ralph Siemsen1c39c102020-09-09 12:10:00 -0400873if SYS_ALT_MEMTEST
874
875config SYS_ALT_MEMTEST_BITFLIP
876 bool "Bitflip test"
877 default y
878 help
879 The alternative memory test includes bitflip test since 2020.07.
880 The bitflip test significantly increases the overall test time.
881 Bitflip test can optionally be disabled here.
882
883endif
884
Ashok Reddy Soma41e8edf2020-05-04 15:26:21 +0200885config SYS_MEMTEST_START
886 hex "default start address for mtest"
Tom Rinic2ac2f62021-12-12 22:12:29 -0500887 default 0x0
Ashok Reddy Soma41e8edf2020-05-04 15:26:21 +0200888 help
889 This is the default start address for mtest for simple read/write
890 test. If no arguments are given to mtest, default address is used
891 as start address.
892
893config SYS_MEMTEST_END
894 hex "default end address for mtest"
895 default 0x1000
896 help
897 This is the default end address for mtest for simple read/write
898 test. If no arguments are given to mtest, default address is used
899 as end address.
900
Mario Six00518992018-03-28 14:38:14 +0200901endif
902
Simon Glass26c20532017-08-04 16:34:51 -0600903config CMD_SHA1SUM
904 bool "sha1sum"
905 select SHA1
Simon Glass29499a02016-01-17 20:53:51 -0700906 help
Simon Glass26c20532017-08-04 16:34:51 -0600907 Compute SHA1 checksum.
908
909config SHA1SUM_VERIFY
910 bool "sha1sum -v"
911 depends on CMD_SHA1SUM
912 help
913 Add -v option to verify data against a SHA1 checksum.
Simon Glass29499a02016-01-17 20:53:51 -0700914
Simon Glass8e83ca82017-08-04 16:34:52 -0600915config CMD_STRINGS
916 bool "strings - display strings in memory"
917 help
918 This works similarly to the Unix 'strings' command except that it
919 works with a memory range. String of printable characters found
920 within the range are displayed. The minimum number of characters
921 for a sequence to be considered a string can be provided.
922
Simon Glassbecaa8f2017-05-17 03:25:43 -0600923endmenu
924
925menu "Compression commands"
926
927config CMD_LZMADEC
928 bool "lzmadec"
Tom Rini3237bc62017-09-29 14:32:44 -0400929 default y if CMD_BOOTI
Simon Glassbecaa8f2017-05-17 03:25:43 -0600930 select LZMA
931 help
932 Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
933 image from memory.
934
Yusuke Ashidukaa20545d2020-02-20 20:48:01 +0900935config CMD_UNLZ4
936 bool "unlz4"
937 default y if CMD_BOOTI
938 select LZ4
939 help
940 Support decompressing an LZ4 image from memory region.
941
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900942config CMD_UNZIP
943 bool "unzip"
Tom Rini3237bc62017-09-29 14:32:44 -0400944 default y if CMD_BOOTI
Michael Wallef253f2c2020-05-22 14:07:35 +0200945 select GZIP
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900946 help
947 Uncompress a zip-compressed memory region.
948
949config CMD_ZIP
950 bool "zip"
Michael Walle3a6e3512020-05-22 14:07:36 +0200951 select GZIP_COMPRESSED
Masahiro Yamada2737fd32017-02-05 10:42:56 +0900952 help
953 Compress a memory region with zlib deflate method.
954
Simon Glass29499a02016-01-17 20:53:51 -0700955endmenu
956
957menu "Device access commands"
958
Abdellatif El Khlifi5ad079f2023-08-04 14:33:43 +0100959config CMD_ARMFFA
960 bool "Arm FF-A test command"
961 depends on ARM_FFA_TRANSPORT
962 help
963 Provides a test command for the FF-A support
964 supported options:
965 - Listing the partition(s) info
966 - Sending a data pattern to the specified partition
967 - Displaying the arm_ffa device info
968
Simon Glass036bbb12017-08-04 16:34:28 -0600969config CMD_ARMFLASH
970 #depends on FLASH_CFI_DRIVER
971 bool "armflash"
972 help
973 ARM Ltd reference designs flash partition access
974
Neil Armstrong49261c72018-04-27 15:17:57 +0200975config CMD_ADC
976 bool "adc - Access Analog to Digital Converters info and data"
977 select ADC
Michal Simek463c3862020-08-19 10:44:17 +0200978 depends on DM_REGULATOR
Neil Armstrong49261c72018-04-27 15:17:57 +0200979 help
980 Shows ADC device info and permit printing one-shot analog converted
981 data from a named Analog to Digital Converter.
982
Eugeniu Rosca35c34be2019-05-23 17:32:22 +0200983config CMD_BCB
984 bool "bcb"
985 depends on MMC
986 depends on PARTITIONS
987 help
988 Read/modify/write the fields of Bootloader Control Block, usually
989 stored on the flash "misc" partition with its structure defined in:
990 https://android.googlesource.com/platform/bootable/recovery/+/master/
991 bootloader_message/include/bootloader_message/bootloader_message.h
992
993 Some real-life use-cases include (but are not limited to):
994 - Determine the "boot reason" (and act accordingly):
995 https://source.android.com/devices/bootloader/boot-reason
996 - Get/pass a list of commands from/to recovery:
997 https://android.googlesource.com/platform/bootable/recovery
998 - Inspect/dump the contents of the BCB fields
999
Jean-Jacques Hiblote83a31b2018-08-09 16:17:46 +02001000config CMD_BIND
1001 bool "bind/unbind - Bind or unbind a device to/from a driver"
1002 depends on DM
Tom Rini1f9c3d02023-08-04 12:06:21 -04001003 default y if USB_ETHER
Jean-Jacques Hiblote83a31b2018-08-09 16:17:46 +02001004 help
1005 Bind or unbind a device to/from a driver from the command line.
1006 This is useful in situations where a device may be handled by several
1007 drivers. For example, this can be used to bind a UDC to the usb ether
1008 gadget driver from the command line.
1009
Simon Glass04ac6f12017-04-26 22:28:02 -06001010config CMD_CLK
1011 bool "clk - Show clock frequencies"
1012 help
1013 (deprecated)
1014 Shows clock frequences by calling a sock_clk_dump() hook function.
1015 This is depreated in favour of using the CLK uclass and accessing
1016 clock values from associated drivers. However currently no command
1017 exists for this.
1018
Simon Glass036bbb12017-08-04 16:34:28 -06001019config CMD_DEMO
1020 bool "demo - Demonstration commands for driver model"
1021 depends on DM
1022 help
1023 Provides a 'demo' command which can be used to play around with
1024 driver model. To use this properly you will need to enable one or
1025 both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
1026 Otherwise you will always get an empty list of devices. The demo
1027 devices are defined in the sandbox device tree, so the easiest
1028 option is to use sandbox and pass the -d point to sandbox's
1029 u-boot.dtb file.
1030
1031config CMD_DFU
1032 bool "dfu"
Marek Vasutea84f802018-02-16 16:41:17 +01001033 select DFU
Simon Glass036bbb12017-08-04 16:34:28 -06001034 help
1035 Enables the command "dfu" which is used to have U-Boot create a DFU
Simon Glass663b0cc2017-08-04 16:35:06 -06001036 class device via USB. This command requires that the "dfu_alt_info"
1037 environment variable be set and define the alt settings to expose to
1038 the host.
Simon Glass036bbb12017-08-04 16:34:28 -06001039
Simon Glass29499a02016-01-17 20:53:51 -07001040config CMD_DM
1041 bool "dm - Access to driver model information"
1042 depends on DM
Simon Glass29499a02016-01-17 20:53:51 -07001043 help
1044 Provides access to driver model data structures and information,
1045 such as a list of devices, list of uclasses and the state of each
1046 device (e.g. activated). This is not required for operation, but
1047 can be useful to see the state of driver model for debugging or
1048 interest.
1049
Alex Kiernan65de9552018-05-29 15:30:39 +00001050config CMD_FASTBOOT
1051 bool "fastboot - Android fastboot support"
1052 depends on FASTBOOT
1053 help
1054 This enables the command "fastboot" which enables the Android
1055 fastboot mode for the platform. Fastboot is a protocol for
1056 downloading images, flashing and device control used on
Alex Kiernand5aa57c2018-05-29 15:30:53 +00001057 Android devices. Fastboot requires either the network stack
1058 enabled or support for acting as a USB device.
Alex Kiernan65de9552018-05-29 15:30:39 +00001059
Sam Protsenkocd43fa12020-01-24 17:53:44 +02001060 See doc/android/fastboot.rst for more information.
Alex Kiernan65de9552018-05-29 15:30:39 +00001061
Simon Glass036bbb12017-08-04 16:34:28 -06001062config CMD_FLASH
1063 bool "flinfo, erase, protect"
1064 default y
Miquel Raynald2418202019-10-25 19:39:30 +02001065 depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH
Simon Glass036bbb12017-08-04 16:34:28 -06001066 help
1067 NOR flash support.
1068 flinfo - print FLASH memory information
1069 erase - FLASH memory
1070 protect - enable or disable FLASH write protection
1071
1072config CMD_FPGA
1073 bool "fpga"
Tuomas Tynkkynen5ca16b32018-01-27 20:28:40 +02001074 depends on FPGA
Simon Glass036bbb12017-08-04 16:34:28 -06001075 default y
1076 help
1077 FPGA support.
1078
1079config CMD_FPGA_LOADBP
1080 bool "fpga loadbp - load partial bitstream (Xilinx only)"
1081 depends on CMD_FPGA
1082 help
1083 Supports loading an FPGA device from a bitstream buffer containing
1084 a partial bitstream.
1085
1086config CMD_FPGA_LOADFS
1087 bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
1088 depends on CMD_FPGA
1089 help
1090 Supports loading an FPGA device from a FAT filesystem.
1091
1092config CMD_FPGA_LOADMK
1093 bool "fpga loadmk - load bitstream from image"
1094 depends on CMD_FPGA
1095 help
1096 Supports loading an FPGA device from a image generated by mkimage.
1097
1098config CMD_FPGA_LOADP
1099 bool "fpga loadp - load partial bitstream"
1100 depends on CMD_FPGA
1101 help
1102 Supports loading an FPGA device from a bitstream buffer containing
1103 a partial bitstream.
1104
Siva Durga Prasad Paladugucce0cb02018-05-31 15:10:22 +05301105config CMD_FPGA_LOAD_SECURE
Oleksandr Suvorovfbe31bb2022-07-22 17:16:02 +03001106 bool "fpga loads - loads secure bitstreams"
Siva Durga Prasad Paladugucce0cb02018-05-31 15:10:22 +05301107 depends on CMD_FPGA
Oleksandr Suvorovfbe31bb2022-07-22 17:16:02 +03001108 select FPGA_LOAD_SECURE
Siva Durga Prasad Paladugucce0cb02018-05-31 15:10:22 +05301109 help
1110 Enables the fpga loads command which is used to load secure
1111 (authenticated or encrypted or both) bitstreams on to FPGA.
1112
Simon Glass036bbb12017-08-04 16:34:28 -06001113config CMD_FPGAD
1114 bool "fpgad - dump FPGA registers"
1115 help
1116 (legacy, needs conversion to driver model)
1117 Provides a way to dump FPGA registers by calling the board-specific
1118 fpga_get_reg() function. This functions similarly to the 'md'
1119 command.
1120
1121config CMD_FUSE
1122 bool "fuse - support for the fuse subssystem"
1123 help
1124 (deprecated - needs conversion to driver model)
1125 This allows reading, sensing, programming or overriding fuses
1126 which control the behaviour of the device. The command uses the
1127 fuse_...() API.
1128
1129config CMD_GPIO
1130 bool "gpio"
1131 help
1132 GPIO support.
1133
Diego Rondini5ffde632022-04-11 12:02:09 +02001134config CMD_GPIO_READ
1135 bool "gpio read - save GPIO value to variable"
1136 depends on CMD_GPIO
1137 help
1138 Enables the 'gpio read' command that saves the value
1139 of a GPIO pin to a variable.
1140
Pragnesh Patel1d5955f2020-12-22 11:30:05 +05301141config CMD_PWM
1142 bool "pwm"
1143 depends on DM_PWM
1144 help
1145 Control PWM channels, this allows invert/config/enable/disable PWM channels.
1146
Simon Glass036bbb12017-08-04 16:34:28 -06001147config CMD_GPT
1148 bool "GPT (GUID Partition Table) command"
Simon Glass036bbb12017-08-04 16:34:28 -06001149 select EFI_PARTITION
Michal Simek84f3dec2018-07-23 15:55:13 +02001150 select PARTITION_UUIDS
Maxime Ripard24336442017-08-24 11:52:32 +02001151 imply RANDOM_UUID
Simon Glass036bbb12017-08-04 16:34:28 -06001152 help
1153 Enable the 'gpt' command to ready and write GPT style partition
1154 tables.
1155
Maxime Ripard24336442017-08-24 11:52:32 +02001156config RANDOM_UUID
1157 bool "GPT Random UUID generation"
Adam Ford70c8f052018-02-06 12:14:28 -06001158 select LIB_UUID
Maxime Ripard24336442017-08-24 11:52:32 +02001159 help
1160 Enable the generation of partitions with random UUIDs if none
1161 are provided.
1162
Simon Glass036bbb12017-08-04 16:34:28 -06001163config CMD_GPT_RENAME
1164 bool "GPT partition renaming commands"
1165 depends on CMD_GPT
1166 help
1167 Enables the 'gpt' command to interchange names on two GPT
1168 partitions via the 'gpt swap' command or to rename single
1169 partitions via the 'rename' command.
Simon Glass29499a02016-01-17 20:53:51 -07001170
Simon Glassa831eca2017-05-17 03:25:29 -06001171config CMD_IDE
1172 bool "ide - Support for IDE drivers"
Simon Glassb569a012017-05-17 03:25:30 -06001173 select IDE
Simon Glassa831eca2017-05-17 03:25:29 -06001174 help
1175 Provides an 'ide' command which allows accessing the IDE drive,
Vagrant Cascadian33203c32021-12-21 13:06:56 -08001176 resetting the IDE interface, printing the partition table and
Simon Glassa831eca2017-05-17 03:25:29 -06001177 geting device info. It also enables the 'diskboot' command which
1178 permits booting from an IDE drive.
1179
Simon Glass3bebbe62017-05-17 03:25:34 -06001180config CMD_IO
1181 bool "io - Support for performing I/O accesses"
1182 help
1183 Provides an 'iod' command to display I/O space and an 'iow' command
1184 to write values to the I/O space. This can be useful for manually
1185 checking the state of devices during boot when debugging device
1186 drivers, etc.
1187
Simon Glass30daabc2017-05-17 03:25:36 -06001188config CMD_IOTRACE
1189 bool "iotrace - Support for tracing I/O activity"
1190 help
1191 Provides an 'iotrace' command which supports recording I/O reads and
1192 writes in a trace buffer in memory . It also maintains a checksum
1193 of the trace records (even if space is exhausted) so that the
1194 sequence of I/O accesses can be verified.
1195
1196 When debugging drivers it is useful to see what I/O accesses were
1197 done and in what order.
1198
1199 Even if the individual accesses are of little interest it can be
1200 useful to verify that the access pattern is consistent each time
1201 an operation is performed. In this case a checksum can be used to
1202 characterise the operation of a driver. The checksum can be compared
1203 across different runs of the operation to verify that the driver is
1204 working properly.
1205
1206 In particular, when performing major refactoring of the driver, where
1207 the access pattern should not change, the checksum provides assurance
1208 that the refactoring work has not broken the driver.
1209
1210 This works by sneaking into the io.h heder for an architecture and
1211 redirecting I/O accesses through iotrace's tracing mechanism.
1212
1213 For now no commands are provided to examine the trace buffer. The
1214 format is fairly simple, so 'md' is a reasonable substitute.
1215
1216 Note: The checksum feature is only useful for I/O regions where the
1217 contents do not change outside of software control. Where this is not
1218 suitable you can fall back to manually comparing the addresses. It
1219 might be useful to enhance tracing to only checksum the accesses and
1220 not the data read/written.
1221
Simon Glass036bbb12017-08-04 16:34:28 -06001222config CMD_I2C
1223 bool "i2c"
1224 help
1225 I2C support.
1226
Eugen Hristevb879c842018-09-18 10:35:33 +03001227config CMD_W1
1228 depends on W1
1229 default y if W1
1230 bool "w1 - Support for Dallas 1-Wire protocol"
1231 help
1232 Dallas 1-wire protocol support
1233
Simon Glass29499a02016-01-17 20:53:51 -07001234config CMD_LOADB
1235 bool "loadb"
1236 default y
1237 help
1238 Load a binary file over serial line.
1239
Rui Miguel Silva433f15a2022-05-11 10:55:40 +01001240config CMD_LOADM
1241 bool "loadm"
1242 help
1243 Load a binary over memory mapped.
1244
Simon Glass29499a02016-01-17 20:53:51 -07001245config CMD_LOADS
Tom Rini5a70f172022-10-28 20:27:02 -04001246 bool "loads - Load a file over serial in S-Record format"
Simon Glass29499a02016-01-17 20:53:51 -07001247 default y
1248 help
1249 Load an S-Record file over serial line
1250
Tom Rini5a70f172022-10-28 20:27:02 -04001251config LOADS_ECHO
1252 bool "Echo all characters received during a loads back to console"
1253 depends on CMD_LOADS
1254 help
1255 If enabled, all characters received during a serial download (using
1256 the "loads" command) are echoed back. This might be needed by some
1257 terminal emulations (like "cu"), but may as well just take time on
1258 others. This sets the initial value of the "loads_echo" environment
1259 variable to 1.
1260
1261config CMD_SAVES
1262 bool "saves - Save a file over serial in S-Record format"
Ying Sun86dff472023-06-25 16:24:47 +08001263 depends on CMD_LOADS
Tom Rini5a70f172022-10-28 20:27:02 -04001264 help
1265 Provides a way to save a binary file using the Motorola S-Record
1266 format over the serial line.
1267
1268config SYS_LOADS_BAUD_CHANGE
1269 bool "Enable a temporary baudrate change during loads/saves command"
1270 depends on CMD_LOADS || CMD_SAVES
1271
Pali Rohár5dc80cc2022-08-27 16:37:55 +02001272config CMD_LOADXY_TIMEOUT
1273 int "loadxy_timeout"
1274 range 0 2000
1275 default 90
1276 help
1277 Initial timeout for loadx and loady commands. Zero means infinity.
1278
Niel Fourie09262bb2020-03-30 17:22:58 +02001279config CMD_LSBLK
1280 depends on BLK
1281 bool "lsblk - list block drivers and devices"
1282 help
1283 Print list of available block device drivers, and for each, the list
1284 of known block devices.
1285
Marek Szyprowski6427b5b2020-12-23 13:55:15 +01001286config CMD_MBR
1287 bool "MBR (Master Boot Record) command"
1288 select DOS_PARTITION
Marek Szyprowski6427b5b2020-12-23 13:55:15 +01001289 help
1290 Enable the 'mbr' command to ready and write MBR (Master Boot Record)
1291 style partition tables.
1292
Bin Menge1dae502020-10-14 14:34:52 +08001293config CMD_MISC
1294 bool "misc"
1295 depends on MISC
1296 help
1297 Enable the command "misc" for accessing miscellaneous devices with
1298 a MISC uclass driver. The command provides listing all MISC devices
1299 as well as read and write functionalities via their drivers.
1300
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001301config CMD_MMC
1302 bool "mmc"
Heinrich Schuchardt3ae9e6a2021-03-27 11:43:54 +01001303 depends on MMC
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001304 help
1305 MMC memory mapped support.
1306
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001307if CMD_MMC
1308
1309config CMD_BKOPS_ENABLE
1310 bool "mmc bkops enable"
1311 depends on CMD_MMC
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001312 help
1313 Enable command for setting manual background operations handshake
1314 on a eMMC device. The feature is optionally available on eMMC devices
1315 conforming to standard >= 4.41.
1316
Alex Kiernan60e0f612018-05-08 04:43:31 +00001317config CMD_MMC_RPMB
1318 bool "Enable support for RPMB in the mmc command"
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001319 depends on SUPPORT_EMMC_RPMB
Alex Kiernan60e0f612018-05-08 04:43:31 +00001320 help
1321 Enable the commands for reading, writing and programming the
1322 key for the Replay Protection Memory Block partition in eMMC.
1323
Alex Kiernanc568bcb2018-05-29 15:30:52 +00001324config CMD_MMC_SWRITE
1325 bool "mmc swrite"
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001326 depends on MMC_WRITE
Alex Kiernanc568bcb2018-05-29 15:30:52 +00001327 select IMAGE_SPARSE
1328 help
1329 Enable support for the "mmc swrite" command to write Android sparse
1330 images to eMMC.
1331
Heinrich Schuchardt039df1a2020-03-31 17:39:28 +00001332endif
1333
John Chaufce6f982020-07-02 12:01:21 +08001334config CMD_CLONE
1335 bool "clone"
1336 depends on BLK
1337 help
1338 Enable storage cloning over block devices, useful for
1339 initial flashing by external block device without network
1340 or usb support.
1341
Ruchika Gupta1a994352020-10-23 13:39:33 +05301342config CMD_OPTEE_RPMB
1343 bool "Enable read/write support on RPMB via OPTEE"
1344 depends on SUPPORT_EMMC_RPMB && OPTEE
1345 help
1346 Enable the commands for reading, writing persistent named values
1347 in the Replay Protection Memory Block partition in eMMC by
1348 using Persistent Objects in OPTEE
1349
Miquel Raynal741f4c72018-09-29 12:58:28 +02001350config CMD_MTD
1351 bool "mtd"
Miquel Raynald2418202019-10-25 19:39:30 +02001352 depends on MTD
Miquel Raynal741f4c72018-09-29 12:58:28 +02001353 select MTD_PARTITIONS
1354 help
1355 MTD commands support.
1356
Pratyush Yadavbecd9b72020-10-16 16:16:35 +05301357config CMD_MUX
1358 bool "mux"
1359 depends on MULTIPLEXER
1360 help
1361 List, select, and deselect mux controllers on the fly.
1362
Simon Glass29499a02016-01-17 20:53:51 -07001363config CMD_NAND
1364 bool "nand"
Maxime Ripard5a5d71f2017-03-03 15:13:30 +01001365 default y if NAND_SUNXI
Miquel Raynald2418202019-10-25 19:39:30 +02001366 depends on MTD_RAW_NAND
Simon Glass29499a02016-01-17 20:53:51 -07001367 help
1368 NAND support.
1369
Boris Brezillon19907782017-02-27 18:22:07 +01001370if CMD_NAND
1371config CMD_NAND_TRIMFFS
1372 bool "nand write.trimffs"
Hans de Goedefd42c052017-02-27 18:22:10 +01001373 default y if ARCH_SUNXI
Boris Brezillon19907782017-02-27 18:22:07 +01001374 help
1375 Allows one to skip empty pages when flashing something on a NAND.
1376
1377config CMD_NAND_LOCK_UNLOCK
1378 bool "nand lock/unlock"
1379 help
1380 NAND locking support.
1381
1382config CMD_NAND_TORTURE
1383 bool "nand torture"
1384 help
1385 NAND torture support.
1386
1387endif # CMD_NAND
1388
Zhikang Zhang49455652017-08-03 02:30:59 -07001389config CMD_NVME
1390 bool "nvme"
1391 depends on NVME
1392 default y if NVME
1393 help
1394 NVM Express device support
1395
Simon Glassa2a82072017-08-04 16:34:31 -06001396config CMD_ONENAND
1397 bool "onenand - access to onenand device"
Miquel Raynald2418202019-10-25 19:39:30 +02001398 depends on MTD
Simon Glassa2a82072017-08-04 16:34:31 -06001399 help
1400 OneNAND is a brand of NAND ('Not AND' gate) flash which provides
1401 various useful features. This command allows reading, writing,
1402 and erasing blocks. It allso provides a way to show and change
1403 bad blocks, and test the device.
1404
Tom Rinie7751242022-06-15 12:03:51 -04001405config USE_ONENAND_BOARD_INIT
1406 bool "Call onenand_board_init() in the onenand command"
1407 depends on CMD_ONENAND
1408
Mario Sixf8395902018-09-27 09:19:34 +02001409config CMD_OSD
1410 bool "osd"
1411 help
1412 Enable the 'osd' command which allows to query information from and
1413 write text data to a on-screen display (OSD) device; a virtual device
1414 associated with a display capable of displaying a text overlay on the
1415 display it's associated with..
1416
Patrick Delaunay73287092017-01-27 11:00:42 +01001417config CMD_PART
1418 bool "part"
AKASHI Takahiro783bc122022-04-22 10:44:30 +09001419 depends on PARTITIONS
Michal Simek84f3dec2018-07-23 15:55:13 +02001420 select PARTITION_UUIDS
Patrick Delaunay73287092017-01-27 11:00:42 +01001421 help
1422 Read and display information about the partition table on
1423 various media.
1424
Simon Glassc88a09a2017-08-04 16:34:34 -06001425config CMD_PCI
1426 bool "pci - Access PCI devices"
1427 help
1428 Provide access to PCI (Peripheral Interconnect Bus), a type of bus
1429 used on some devices to allow the CPU to communicate with its
1430 peripherals. Sub-commands allow bus enumeration, displaying and
1431 changing configuration space and a few other features.
1432
Stephen Carlson3d876c42023-03-10 11:07:13 -08001433config CMD_PCI_MPS
1434 bool "pci_mps - Configure PCI device MPS"
1435 depends on PCI
1436 help
1437 Enables PCI Express Maximum Packet Size (MPS) tuning. This
1438 command configures the PCI Express MPS of each endpoint to the
1439 largest value supported by all devices below the root complex.
1440 The Maximum Read Request Size will not be altered. This method is
1441 the same algorithm as used by Linux pci=pcie_bus_safe.
1442
Patrice Chotardc4b4ef02018-10-24 14:10:17 +02001443config CMD_PINMUX
1444 bool "pinmux - show pins muxing"
Marek Behún9ff24b62021-02-09 21:23:47 +01001445 depends on PINCTRL
Patrice Chotardc4b4ef02018-10-24 14:10:17 +02001446 default y if PINCTRL
1447 help
1448 Parse all available pin-controllers and show pins muxing. This
1449 is useful for debug purpoer to check the pin muxing and to know if
1450 a pin is configured as a GPIO or as an alternate function.
1451
Adam Fordc4f16322018-09-09 07:05:57 -05001452config CMD_POWEROFF
1453 bool "poweroff"
1454 help
1455 Poweroff/Shutdown the system
1456
Simon Glassc05459b2017-08-04 16:34:39 -06001457config CMD_READ
1458 bool "read - Read binary data from a partition"
1459 help
1460 Provides low-level access to the data in a partition.
1461
Simon Glass036bbb12017-08-04 16:34:28 -06001462config CMD_REMOTEPROC
1463 bool "remoteproc"
1464 depends on REMOTEPROC
1465 help
1466 Support for Remote Processor control
1467
1468config CMD_SATA
1469 bool "sata - Access SATA subsystem"
1470 select SATA
1471 help
1472 SATA (Serial Advanced Technology Attachment) is a serial bus
1473 standard for connecting to hard drives and other storage devices.
1474 This command provides information about attached devices and allows
1475 reading, writing and other operations.
1476
1477 SATA replaces PATA (originally just ATA), which stands for Parallel AT
1478 Attachment, where AT refers to an IBM AT (Advanced Technology)
1479 computer released in 1984.
1480
Heinrich Schuchardta0f52832018-02-14 08:05:44 +01001481config CMD_SCSI
1482 bool "scsi - Access to SCSI devices"
Heinrich Schuchardtb9a76c72023-03-26 19:10:38 +02001483 depends on SCSI
1484 default y
Heinrich Schuchardta0f52832018-02-14 08:05:44 +01001485 help
1486 This provides a 'scsi' command which provides access to SCSI (Small
1487 Computer System Interface) devices. The command provides a way to
1488 scan the bus, reset the bus, read and write data and get information
1489 about devices.
1490
Simon Glass6870d2e2017-08-04 16:34:45 -06001491config CMD_SDRAM
1492 bool "sdram - Print SDRAM configuration information"
1493 help
1494 Provides information about attached SDRAM. This assumed that the
1495 SDRAM has an EEPROM with information that can be read using the
1496 I2C bus. This is only available on some boards.
1497
Simon Glass29499a02016-01-17 20:53:51 -07001498config CMD_SF
1499 bool "sf"
Tom Rinie5289a72019-05-29 17:01:28 -04001500 depends on DM_SPI_FLASH || SPI_FLASH
Jagan Teki132e81f2019-10-16 17:59:42 +05301501 default y if DM_SPI_FLASH
Simon Glass29499a02016-01-17 20:53:51 -07001502 help
1503 SPI Flash support
1504
Simon Glass86b1b652017-08-04 16:34:46 -06001505config CMD_SF_TEST
1506 bool "sf test - Allow testing of SPI flash"
Tom Rinie5289a72019-05-29 17:01:28 -04001507 depends on CMD_SF
Simon Glass86b1b652017-08-04 16:34:46 -06001508 help
1509 Provides a way to test that SPI flash is working correctly. The
1510 test is destructive, in that an area of SPI flash must be provided
1511 for the test to use. Performance information is also provided,
1512 measuring the performance of reading, writing and erasing in
1513 Mbps (Million Bits Per Second). This value should approximately
1514 equal the SPI bus speed for a single-bit-wide SPI bus, assuming
1515 everything is working properly.
1516
Simon Glass29499a02016-01-17 20:53:51 -07001517config CMD_SPI
Patrick Delaunay5a6b52b2019-02-27 15:20:37 +01001518 bool "sspi - Command to access spi device"
Tom Rinie5289a72019-05-29 17:01:28 -04001519 depends on SPI
Simon Glass29499a02016-01-17 20:53:51 -07001520 help
1521 SPI utility command.
1522
Patrick Delaunay5a6b52b2019-02-27 15:20:37 +01001523config DEFAULT_SPI_BUS
1524 int "default spi bus used by sspi command"
1525 depends on CMD_SPI
1526 default 0
1527
1528config DEFAULT_SPI_MODE
1529 hex "default spi mode used by sspi command (see include/spi.h)"
1530 depends on CMD_SPI
Tom Rinif18679c2023-08-02 11:09:43 -04001531 default 0x0
Patrick Delaunay5a6b52b2019-02-27 15:20:37 +01001532
Robert Marko99e6fde2022-09-06 13:30:33 +02001533config CMD_TEMPERATURE
1534 bool "temperature - display the temperature from thermal sensors"
1535 depends on DM_THERMAL
1536 help
1537 Provides a way to list thermal sensors and to get their readings.
1538
Simon Glass80a56cd2017-08-04 16:35:00 -06001539config CMD_TSI148
1540 bool "tsi148 - Command to access tsi148 device"
1541 help
1542 This provides various sub-commands to initialise and configure the
1543 Turndra tsi148 device. See the command help for full details.
1544
Faiz Abbas61e9fbb2019-10-15 18:24:40 +05301545config CMD_UFS
1546 bool "Enable UFS - Universal Flash Subsystem commands"
1547 depends on UFS
1548 help
1549 "This provides commands to initialise and configure universal flash
1550 subsystem devices"
1551
Simon Glass0c03c1a2017-08-04 16:35:01 -06001552config CMD_UNIVERSE
1553 bool "universe - Command to set up the Turndra Universe controller"
1554 help
1555 This allows setting up the VMEbus provided by this controller.
1556 See the command help for full details.
1557
Simon Glass29499a02016-01-17 20:53:51 -07001558config CMD_USB
1559 bool "usb"
Tom Rini8a091622021-07-09 10:11:55 -04001560 depends on USB_HOST
Simon Glass29499a02016-01-17 20:53:51 -07001561 help
1562 USB support.
1563
Stefan Agnerd9d661c2017-08-16 11:00:53 -07001564config CMD_USB_SDP
1565 bool "sdp"
1566 select USB_FUNCTION_SDP
1567 help
1568 Enables the command "sdp" which is used to have U-Boot emulating the
1569 Serial Download Protocol (SDP) via USB.
Michal Simekf751ff52018-07-23 15:55:12 +02001570
Johan Jonkerff1d73f2023-10-18 16:01:40 +02001571config CMD_RKMTD
1572 bool "rkmtd"
1573 select RKMTD
1574 help
1575 Enable the command "rkmtd" to create a virtual block device to transfer
1576 Rockchip boot block data to and from NAND with block orientated tools
1577 like "ums" and "rockusb".
1578
Eddie Cai5e3020b2017-12-15 08:17:11 +08001579config CMD_ROCKUSB
1580 bool "rockusb"
1581 depends on USB_FUNCTION_ROCKUSB
1582 help
Michal Simekf751ff52018-07-23 15:55:12 +02001583 Rockusb protocol is widely used by Rockchip SoC based devices. It can
Eddie Cai5e3020b2017-12-15 08:17:11 +08001584 read/write info, image to/from devices. This enable rockusb command
1585 support to communication with rockusb device. for more detail about
1586 this command, please read doc/README.rockusb.
Stefan Agnerd9d661c2017-08-16 11:00:53 -07001587
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001588config CMD_USB_MASS_STORAGE
1589 bool "UMS usb mass storage"
Tom Rini4b783d92021-05-22 08:47:16 -04001590 depends on USB_GADGET_DOWNLOAD
Lukasz Majewski6e782742018-01-29 19:28:02 +01001591 select USB_FUNCTION_MASS_STORAGE
Patrick Delaunaye1dc2532021-06-04 18:51:46 +02001592 depends on BLK && USB_GADGET
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001593 help
Patrick Delaunaye1dc2532021-06-04 18:51:46 +02001594 Enables the command "ums" and the USB mass storage support to the
1595 export a block device: U-Boot, the USB device, acts as a simple
1596 external hard drive plugged on the host USB port.
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001597
Svyatoslav Ryhelbb8068d2023-03-20 21:01:43 +02001598config CMD_UMS_ABORT_KEYED
1599 bool "UMS abort with any key"
1600 depends on CMD_USB_MASS_STORAGE
1601 help
1602 Allow interruption of usb mass storage run with any key pressed.
1603
Anastasiia Lukianenko4fec7f82020-08-06 12:42:55 +03001604config CMD_PVBLOCK
1605 bool "Xen para-virtualized block device"
1606 depends on XEN
1607 select PVBLOCK
1608 help
1609 Xen para-virtualized block device support
1610
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -07001611config CMD_VIRTIO
1612 bool "virtio"
1613 depends on VIRTIO
1614 default y if VIRTIO
1615 help
1616 VirtIO block device support
1617
Michael Walle23964a82019-04-06 02:24:02 +02001618config CMD_WDT
1619 bool "wdt"
1620 depends on WDT
1621 help
1622 This provides commands to control the watchdog timer devices.
1623
Rasmus Villemoesc614b832023-03-02 09:12:22 +01001624config CMD_WRITE
1625 bool "write - Write binary data to a partition"
1626 help
1627 Provides low-level write access to a partition.
1628
Mario Sixfd1cc422018-08-09 14:51:21 +02001629config CMD_AXI
1630 bool "axi"
1631 depends on AXI
1632 help
1633 Enable the command "axi" for accessing AXI (Advanced eXtensible
1634 Interface) busses, a on-chip interconnect specification for managing
1635 functional blocks in SoC designs, which is also often used in designs
1636 involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs).
Simon Glass29499a02016-01-17 20:53:51 -07001637endmenu
1638
1639
1640menu "Shell scripting commands"
1641
Roger Knecht11827c42022-09-03 11:34:53 +00001642config CMD_CAT
1643 bool "cat"
1644 help
1645 Print file to standard output
1646
Simon Glass29499a02016-01-17 20:53:51 -07001647config CMD_ECHO
1648 bool "echo"
1649 default y
1650 help
1651 Echo args to console
1652
1653config CMD_ITEST
1654 bool "itest"
1655 default y
1656 help
1657 Return true/false on integer compare.
1658
1659config CMD_SOURCE
1660 bool "source"
1661 default y
1662 help
1663 Run script from memory
1664
1665config CMD_SETEXPR
1666 bool "setexpr"
1667 default y
1668 help
1669 Evaluate boolean and math expressions and store the result in an env
1670 variable.
1671 Also supports loading the value at a memory location into a variable.
1672 If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
1673
Roland Gaudig2c9e7c22021-07-23 12:29:21 +00001674config CMD_SETEXPR_FMT
1675 bool "setexpr_fmt"
Roland Gaudig2c9e7c22021-07-23 12:29:21 +00001676 depends on CMD_SETEXPR
1677 help
1678 Evaluate format string expression and store result in an environment
1679 variable.
1680
Roger Knecht4c29c2b2023-09-07 14:51:43 +00001681config CMD_XXD
1682 bool "xxd"
1683 help
1684 Print file as hexdump to standard output
1685
Simon Glass29499a02016-01-17 20:53:51 -07001686endmenu
1687
Ruslan Trofymenkoa24f9b42019-07-05 15:37:33 +03001688menu "Android support commands"
1689
1690config CMD_AB_SELECT
1691 bool "ab_select"
Ruslan Trofymenkoa24f9b42019-07-05 15:37:33 +03001692 depends on ANDROID_AB
1693 help
1694 On Android devices with more than one boot slot (multiple copies of
1695 the kernel and system images) this provides a command to select which
1696 slot should be used to boot from and register the boot attempt. This
1697 is used by the new A/B update model where one slot is updated in the
1698 background while running from the other slot.
1699
1700endmenu
1701
Michal Simek2f785a12018-02-26 16:01:02 +01001702if NET
1703
Joe Hershbergerb0429462018-04-13 15:26:30 -05001704menuconfig CMD_NET
1705 bool "Network commands"
1706 default y
Adam Ford53705472018-07-20 23:03:57 -05001707 imply NETDEVICES
Joe Hershbergerb0429462018-04-13 15:26:30 -05001708
1709if CMD_NET
1710
1711config CMD_BOOTP
1712 bool "bootp"
Simon Glass29499a02016-01-17 20:53:51 -07001713 default y
1714 help
Simon Glass29499a02016-01-17 20:53:51 -07001715 bootp - boot image via network using BOOTP/TFTP protocol
Joe Hershbergerb0429462018-04-13 15:26:30 -05001716
Joe Hershberger01261792018-04-13 15:26:33 -05001717config CMD_DHCP
1718 bool "dhcp"
1719 depends on CMD_BOOTP
1720 help
1721 Boot image via network using DHCP/TFTP protocol
1722
Sean Edmondba802862023-04-11 10:48:47 -07001723config CMD_DHCP6
1724 bool "dhcp6"
1725 depends on IPV6
1726 help
1727 Boot image via network using DHCPv6/TFTP protocol using IPv6.
1728
1729 Will perform 4-message exchange with DHCPv6 server, requesting
1730 the minimum required options to TFTP boot. Complies with RFC 8415.
1731
Tom Rini1c47c4a2022-02-25 11:19:50 -05001732config BOOTP_MAY_FAIL
1733 bool "Allow for the BOOTP/DHCP server to not be found"
1734 depends on CMD_BOOTP
1735 help
1736 If the DHCP server is not found after the configured retry count, the
1737 call will fail instead of starting over. This can be used to fail
1738 over to Link-local IP address configuration if the DHCP server is not
1739 available.
1740
Joe Hershberger0824ad92018-04-13 15:26:32 -05001741config BOOTP_BOOTPATH
Joe Hershberger06661e12018-04-13 15:26:34 -05001742 bool "Request & store 'rootpath' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001743 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001744 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001745 help
1746 Even though the config is called BOOTP_BOOTPATH, it stores the
1747 path in the variable 'rootpath'.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001748
Tom Rini1c47c4a2022-02-25 11:19:50 -05001749config BOOTP_VENDOREX
1750 bool "Support vendor extensions from BOOTP/DHCP server"
1751 depends on CMD_BOOTP
1752
1753config BOOTP_BOOTFILESIZE
1754 bool "Request & store 'bootfilesize' from BOOTP/DHCP server"
1755 depends on CMD_BOOTP
1756
Joe Hershberger0824ad92018-04-13 15:26:32 -05001757config BOOTP_DNS
Joe Hershberger06661e12018-04-13 15:26:34 -05001758 bool "Request & store 'dnsip' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001759 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001760 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001761 help
1762 The primary DNS server is stored as 'dnsip'. If two servers are
1763 returned, you must set BOOTP_DNS2 to store that second server IP
1764 also.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001765
Joe Hershberger63e70712018-04-13 15:26:35 -05001766config BOOTP_DNS2
1767 bool "Store 'dnsip2' from BOOTP/DHCP server"
1768 depends on BOOTP_DNS
1769 help
1770 If a DHCP client requests the DNS server IP from a DHCP server,
1771 it is possible that more than one DNS serverip is offered to the
1772 client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS
1773 server IP will be stored in the additional environment
1774 variable "dnsip2". The first DNS serverip is always
1775 stored in the variable "dnsip", when BOOTP_DNS is defined.
1776
Joe Hershberger0824ad92018-04-13 15:26:32 -05001777config BOOTP_GATEWAY
Joe Hershberger06661e12018-04-13 15:26:34 -05001778 bool "Request & store 'gatewayip' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001779 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001780 depends on CMD_BOOTP
1781
1782config BOOTP_HOSTNAME
Joe Hershberger06661e12018-04-13 15:26:34 -05001783 bool "Request & store 'hostname' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001784 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001785 depends on CMD_BOOTP
Joe Hershberger06661e12018-04-13 15:26:34 -05001786 help
1787 The name may or may not be qualified with the local domain name.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001788
Alexander Graf427e6952018-06-15 10:29:28 +02001789config BOOTP_PREFER_SERVERIP
1790 bool "serverip variable takes precedent over DHCP server IP."
1791 depends on CMD_BOOTP
1792 help
1793 By default a BOOTP/DHCP reply will overwrite the 'serverip' variable.
1794
1795 With this option enabled, the 'serverip' variable in the environment
1796 takes precedence over DHCP server IP and will only be set by the DHCP
1797 server if not already set in the environment.
1798
Joe Hershberger0824ad92018-04-13 15:26:32 -05001799config BOOTP_SUBNETMASK
Joe Hershberger06661e12018-04-13 15:26:34 -05001800 bool "Request & store 'netmask' from BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001801 default y
Joe Hershberger0824ad92018-04-13 15:26:32 -05001802 depends on CMD_BOOTP
1803
Tom Rini1c47c4a2022-02-25 11:19:50 -05001804config BOOTP_NISDOMAIN
1805 bool "Request & store 'nisdomain' from BOOTP/DHCP server"
1806 depends on CMD_BOOTP
1807
Chris Packhambfa7c212018-05-03 20:19:02 +12001808config BOOTP_NTPSERVER
1809 bool "Request & store 'ntpserverip' from BOOTP/DHCP server"
1810 depends on CMD_BOOTP
1811
Tom Rini1c47c4a2022-02-25 11:19:50 -05001812config BOOTP_TIMEOFFSET
1813 bool "Request & store 'timeoffset' from BOOTP/DHCP server"
1814 depends on CMD_BOOTP && CMD_SNTP
1815
Ramon Friedac598c12019-07-18 21:43:30 +03001816config CMD_PCAP
1817 bool "pcap capture"
1818 help
1819 Selecting this will allow capturing all Ethernet packets and store
1820 them in physical memory in a PCAP formated file,
1821 later to be analyzed by PCAP reader application (IE. WireShark).
1822
Joe Hershberger0824ad92018-04-13 15:26:32 -05001823config BOOTP_PXE
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001824 bool "Send PXE client arch to BOOTP/DHCP server"
Joe Hershberger8ffe7e52018-04-13 15:26:37 -05001825 default y
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001826 depends on CMD_BOOTP && CMD_PXE
1827 help
1828 Supported for ARM, ARM64, and x86 for now.
Joe Hershberger0824ad92018-04-13 15:26:32 -05001829
1830config BOOTP_PXE_CLIENTARCH
1831 hex
Joe Hershberger84ccdbe2018-04-13 15:26:36 -05001832 depends on BOOTP_PXE
Joe Hershberger0824ad92018-04-13 15:26:32 -05001833 default 0x16 if ARM64
1834 default 0x15 if ARM
Tom Rinif18679c2023-08-02 11:09:43 -04001835 default 0x0 if X86
Joe Hershberger0824ad92018-04-13 15:26:32 -05001836
1837config BOOTP_VCI_STRING
1838 string
1839 depends on CMD_BOOTP
Michal Simekf4359382018-04-26 18:21:29 +05301840 default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R
Joe Hershberger0824ad92018-04-13 15:26:32 -05001841 default "U-Boot.armv8" if ARM64
1842 default "U-Boot.arm" if ARM
1843 default "U-Boot"
1844
Sean Edmondba802862023-04-11 10:48:47 -07001845if CMD_DHCP6
1846
1847config DHCP6_PXE_CLIENTARCH
1848 hex
1849 default 0x16 if ARM64
1850 default 0x15 if ARM
1851 default 0xFF
1852
1853config DHCP6_PXE_DHCP_OPTION
1854 bool "Request & store 'pxe_configfile' from DHCP6 server"
1855
1856config DHCP6_ENTERPRISE_ID
1857 int "Enterprise ID to send in DHCPv6 Vendor Class Option"
1858 default 0
1859
1860endif
1861
Joe Hershbergerb0429462018-04-13 15:26:30 -05001862config CMD_TFTPBOOT
1863 bool "tftpboot"
1864 default y
1865 help
Heinrich Schuchardt7d289f12022-09-04 09:08:11 +02001866 tftpboot - load file via network using TFTP protocol
Simon Glass29499a02016-01-17 20:53:51 -07001867
1868config CMD_TFTPPUT
1869 bool "tftp put"
Joe Hershbergerb0429462018-04-13 15:26:30 -05001870 depends on CMD_TFTPBOOT
Simon Glass29499a02016-01-17 20:53:51 -07001871 help
1872 TFTP put command, for uploading files to a server
1873
1874config CMD_TFTPSRV
1875 bool "tftpsrv"
Joe Hershbergerb0429462018-04-13 15:26:30 -05001876 depends on CMD_TFTPBOOT
Simon Glass29499a02016-01-17 20:53:51 -07001877 help
1878 Act as a TFTP server and boot the first received file
1879
Joe Hershberger0824ad92018-04-13 15:26:32 -05001880config NET_TFTP_VARS
1881 bool "Control TFTP timeout and count through environment"
1882 depends on CMD_TFTPBOOT
1883 default y
1884 help
1885 If set, allows controlling the TFTP timeout through the
1886 environment variable tftptimeout, and the TFTP maximum
1887 timeout count through the variable tftptimeoutcountmax.
1888 If unset, timeout and maximum are hard-defined as 1 second
1889 and 10 timouts per TFTP transfer.
1890
Simon Glass29499a02016-01-17 20:53:51 -07001891config CMD_RARP
1892 bool "rarpboot"
1893 help
1894 Boot image via network using RARP/TFTP protocol
1895
Simon Glass29499a02016-01-17 20:53:51 -07001896config CMD_NFS
1897 bool "nfs"
Simon Glass29499a02016-01-17 20:53:51 -07001898 help
1899 Boot image via network using NFS protocol.
1900
Tom Rini0d1c4742022-03-11 09:12:05 -05001901config NFS_TIMEOUT
1902 int "Timeout in milliseconds for NFS mounts"
1903 depends on CMD_NFS
1904 default 2000
1905 help
1906 Timeout in milliseconds used in NFS protocol. If you encounter
1907 "ERROR: Cannot umount" in nfs command, try longer timeout such as
1908 10000.
1909
Tom Rini065d6612022-06-13 22:57:35 -04001910config SYS_DISABLE_AUTOLOAD
1911 bool "Disable automatically loading files over the network"
1912 depends on CMD_BOOTP || CMD_DHCP || CMD_NFS || CMD_RARP
1913 help
1914 Typically, commands such as "dhcp" will attempt to automatically
1915 load a file from the network, once the initial network configuration
1916 is complete. Enable this option to disable this behavior and instead
1917 require files to be loaded over the network by subsequent commands.
1918
Ying-Chun Liu (PaulLiu)cc96a1d2022-11-08 14:17:29 +08001919config CMD_WGET
1920 bool "wget"
Michael Walle34aa0752022-12-28 16:27:15 +01001921 select PROT_TCP
Ying-Chun Liu (PaulLiu)cc96a1d2022-11-08 14:17:29 +08001922 help
1923 wget is a simple command to download kernel, or other files,
1924 from a http server over TCP.
1925
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001926config CMD_MII
1927 bool "mii"
Ramon Frieddeb6c502019-09-13 18:25:03 +03001928 imply CMD_MDIO
1929 help
1930 If set, allows 802.3(clause 22) MII Management functions interface access
1931 The management interface specified in Clause 22 provides
1932 a simple, two signal, serial interface to connect a
1933 Station Management entity and a managed PHY for providing access
1934 to management parameters and services.
1935 The interface is referred to as the MII management interface.
1936
Tom Rini1a0c7dc2022-03-18 08:38:27 -04001937config MII_INIT
1938 bool "Call mii_init() in the mii command"
1939 depends on CMD_MII && (MPC8XX_FEC || FSLDMAFE || MCFFEC)
1940
Ramon Frieddeb6c502019-09-13 18:25:03 +03001941config CMD_MDIO
1942 bool "mdio"
1943 depends on PHYLIB
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001944 help
Ramon Frieddeb6c502019-09-13 18:25:03 +03001945 If set, allows Enable 802.3(clause 45) MDIO interface registers access
1946 The MDIO interface is orthogonal to the MII interface and extends
1947 it by adding access to more registers through indirect addressing.
Dinh Nguyen0685bef2016-04-21 09:05:23 -05001948
Simon Glass29499a02016-01-17 20:53:51 -07001949config CMD_PING
1950 bool "ping"
1951 help
1952 Send ICMP ECHO_REQUEST to network host
1953
Viacheslav Mitrofanove03c8aa2022-12-02 12:18:08 +03001954config CMD_PING6
1955 bool "ping6"
1956 depends on IPV6
1957 default y if (CMD_PING && IPV6)
1958 help
1959 Send ICMPv6 ECHO_REQUEST to network host
1960
Simon Glass29499a02016-01-17 20:53:51 -07001961config CMD_CDP
1962 bool "cdp"
1963 help
1964 Perform CDP network configuration
1965
1966config CMD_SNTP
1967 bool "sntp"
Philippe Reynes2829d992020-09-18 14:13:02 +02001968 select PROT_UDP
Simon Glass29499a02016-01-17 20:53:51 -07001969 help
1970 Synchronize RTC via network
1971
1972config CMD_DNS
1973 bool "dns"
1974 help
1975 Lookup the IP of a hostname
1976
1977config CMD_LINK_LOCAL
1978 bool "linklocal"
Joe Hershberger51d78982018-04-30 12:45:22 -05001979 select LIB_RAND
Simon Glass29499a02016-01-17 20:53:51 -07001980 help
1981 Acquire a network IP address using the link-local protocol
1982
Samuel Mendoza-Jonasfeebd6c2022-08-08 21:46:04 +09301983config CMD_NCSI
1984 bool "ncsi"
1985 depends on PHY_NCSI
1986 help
1987 Manually configure the attached NIC via NC-SI.
1988 Normally this happens automatically before other network
1989 operations.
1990
Ehsan Mohandesia0d6d272023-04-21 17:08:21 -07001991config IPV6_ROUTER_DISCOVERY
1992 bool "Do IPv6 router discovery"
1993 depends on IPV6
1994 help
1995 Will automatically perform router solicitation on first IPv6
1996 network operation
Joe Hershberger0824ad92018-04-13 15:26:32 -05001997endif
1998
Simon Glass12b85702017-05-17 03:25:17 -06001999config CMD_ETHSW
2000 bool "ethsw"
2001 help
2002 Allow control of L2 Ethernet switch commands. These are supported
2003 by the vsc9953 Ethernet driver at present. Sub-commands allow
2004 operations such as enabling / disabling a port and
2005 viewing/maintaining the filtering database (FDB)
2006
Joe Hershberger0824ad92018-04-13 15:26:32 -05002007config CMD_PXE
2008 bool "pxe"
John Keeping9b60a172022-07-28 11:19:15 +01002009 select PXE_UTILS
Joe Hershberger0824ad92018-04-13 15:26:32 -05002010 help
2011 Boot image via network using PXE protocol
Michal Simek2f785a12018-02-26 16:01:02 +01002012
Lothar Felten776fc102018-06-22 22:29:54 +02002013config CMD_WOL
2014 bool "wol"
2015 help
2016 Wait for wake-on-lan Magic Packet
2017
Joe Hershbergerb0429462018-04-13 15:26:30 -05002018endif
Simon Glass29499a02016-01-17 20:53:51 -07002019
2020menu "Misc commands"
2021
Simon Glassb158b8f2023-02-07 14:33:53 -07002022config CMD_2048
2023 bool "Play 2048"
2024 help
2025 This is a simple sliding block puzzle game designed by Italian web
2026 developer Gabriele Cirulli. The game's objective is to slide numbered
2027 tiles on a grid to combine them to create a tile with the number
2028 2048.
2029
2030 This needs ANSI support on your terminal to work. It is not fully
2031 functional on a video device.
2032
Simon Glassb575bfc2017-04-26 22:27:55 -06002033config CMD_BMP
2034 bool "Enable 'bmp' command"
Simon Glass52cb5042022-10-18 07:46:31 -06002035 depends on VIDEO
Samuel Dionne-Rielaa3c9bb2023-07-18 14:27:36 +05302036 select BMP
Simon Glassb575bfc2017-04-26 22:27:55 -06002037 help
Andrius Štikonas1d5ccd62019-09-23 22:43:41 +01002038 This provides a way to obtain information about a BMP-format image
Simon Glassb575bfc2017-04-26 22:27:55 -06002039 and to display it. BMP (which presumably stands for BitMaP) is a
2040 file format defined by Microsoft which supports images of various
2041 depths, formats and compression methods. Headers on the file
2042 determine the formats used. This command can be used by first loading
2043 the image into RAM, then using this command to look at it or display
2044 it.
2045
Alex Kiernane710fa62018-05-12 05:49:47 +00002046config CMD_BOOTCOUNT
2047 bool "bootcount"
2048 depends on BOOTCOUNT_LIMIT
2049 help
2050 Enable the bootcount command, which allows interrogation and
2051 reset of the bootcounter.
2052
Simon Glassffab9a02017-04-26 22:27:56 -06002053config CMD_BSP
2054 bool "Enable board-specific commands"
2055 help
2056 (deprecated: instead, please define a Kconfig option for each command)
2057
2058 Some boards have board-specific commands which are only enabled
2059 during developemnt and need to be turned off for production. This
2060 option provides a way to control this. The commands that are enabled
2061 vary depending on the board.
2062
Eric Nelsonfaf4f052016-03-28 10:05:44 -07002063config CMD_BLOCK_CACHE
2064 bool "blkcache - control and stats for block cache"
2065 depends on BLOCK_CACHE
2066 default y if BLOCK_CACHE
2067 help
2068 Enable the blkcache command, which can be used to control the
2069 operation of the cache functions.
2070 This is most useful when fine-tuning the operation of the cache
2071 during development, but also allows the cache to be disabled when
2072 it might hurt performance (e.g. when using the ums command).
2073
Tobias Waldekranz91ec2592023-02-16 16:33:52 +01002074config CMD_BLKMAP
2075 bool "blkmap - Composable virtual block devices"
2076 depends on BLKMAP
2077 default y if BLKMAP
2078 help
2079 Create virtual block devices that are backed by various sources,
2080 e.g. RAM, or parts of an existing block device. Though much more
2081 rudimentary, it borrows a lot of ideas from Linux's device mapper
2082 subsystem.
2083
2084 Example use-cases:
2085 - Treat a region of RAM as a block device, i.e. a RAM disk. This let's
2086 you extract files from filesystem images stored in RAM (perhaps as a
2087 result of a TFTP transfer).
2088 - Create a virtual partition on an existing device. This let's you
2089 access filesystems that aren't stored at an exact partition
2090 boundary. A common example is a filesystem image embedded in an FIT
2091 image.
2092
Philippe Reynesa558b182020-07-24 18:19:47 +02002093config CMD_BUTTON
2094 bool "button"
2095 depends on BUTTON
2096 default y if BUTTON
2097 help
2098 Enable the 'button' command which allows to get the status of
2099 buttons supported by the board. The buttonss can be listed with
2100 'button list' and state can be known with 'button <label>'.
2101 Any button drivers can be controlled with this command, e.g.
2102 button_gpio.
2103
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002104config CMD_CACHE
2105 bool "icache or dcache"
2106 help
2107 Enable the "icache" and "dcache" commands
2108
Heinrich Schuchardt13ea6852018-09-07 19:43:11 +02002109config CMD_CONITRACE
2110 bool "conitrace - trace console input codes"
2111 help
2112 Enable the 'conitrace' command which displays the codes received
2113 from the console input as hexadecimal numbers.
2114
Anatolij Gustschine0455a42018-12-01 10:47:20 +01002115config CMD_CLS
2116 bool "Enable clear screen command 'cls'"
John Keeping36ce43b2022-11-23 17:16:14 +00002117 default y if LCD || VIDEO
Anatolij Gustschine0455a42018-12-01 10:47:20 +01002118 help
2119 Enable the 'cls' command which clears the screen contents
2120 on video frame buffer.
2121
AKASHI Takahiroe7c08832019-02-25 15:54:38 +09002122config CMD_EFIDEBUG
2123 bool "efidebug - display/configure UEFI environment"
2124 depends on EFI_LOADER
Heinrich Schuchardt3db35912019-05-11 09:53:33 +02002125 select EFI_DEVICE_PATH_TO_TEXT
AKASHI Takahiroe7c08832019-02-25 15:54:38 +09002126 help
2127 Enable the 'efidebug' command which provides a subset of UEFI
2128 shell utility with simplified functionality. It will be useful
2129 particularly for managing boot parameters as well as examining
2130 various EFI status for debugging.
2131
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +09002132config CMD_EFICONFIG
2133 bool "eficonfig - provide menu-driven uefi variables maintenance interface"
Heinrich Schuchardt323bfa52023-02-08 09:57:00 +01002134 default y if !HAS_BOARD_SIZE_LIMIT
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +09002135 depends on CMD_BOOTEFI_BOOTMGR
Heinrich Schuchardtaecf40e2023-02-08 13:56:33 +01002136 select MENU
Masahisa Kojimac5ff0a02022-09-12 17:33:50 +09002137 help
2138 Enable the 'eficonfig' command which provides the menu-driven UEFI
2139 variable maintenance interface.
2140
Heinrich Schuchardtf7d6b072018-12-26 17:20:35 +01002141config CMD_EXCEPTION
2142 bool "exception - raise exception"
Heinrich Schuchardtadaea9c2020-11-12 00:29:57 +01002143 depends on ARM || RISCV || SANDBOX || X86
Heinrich Schuchardtf7d6b072018-12-26 17:20:35 +01002144 help
2145 Enable the 'exception' command which allows to raise an exception.
2146
Simon Glassfc8a5292017-04-10 11:34:59 -06002147config CMD_LED
2148 bool "led"
Jan Kiszka89077ba2019-01-03 09:08:42 +01002149 depends on LED
Simon Glassfc8a5292017-04-10 11:34:59 -06002150 default y if LED
2151 help
2152 Enable the 'led' command which allows for control of LEDs supported
2153 by the board. The LEDs can be listed with 'led list' and controlled
2154 with led on/off/togle/blink. Any LED drivers can be controlled with
2155 this command, e.g. led_gpio.
2156
Simon Glassfbcd3b72023-02-01 13:19:24 -07002157config CMD_INI
2158 bool "ini"
2159 help
2160 Enable the 'ini' command which allows a .ini file to be parsed and
2161 placed into environment variables. Please check the source code for
2162 this as there is no documentation.
2163
Chris Packham3e257df2017-04-29 15:20:28 +12002164config CMD_DATE
2165 bool "date"
2166 default y if DM_RTC
AKASHI Takahiro51ba5222019-11-13 09:44:49 +09002167 select LIB_DATE
Chris Packham3e257df2017-04-29 15:20:28 +12002168 help
2169 Enable the 'date' command for getting/setting the time/date in RTC
2170 devices.
2171
Rasmus Villemoescc092022020-07-06 22:01:15 +02002172config CMD_RTC
2173 bool "rtc"
2174 depends on DM_RTC
2175 help
2176 Enable the 'rtc' command for low-level access to RTC devices.
2177
Simon Glass29499a02016-01-17 20:53:51 -07002178config CMD_TIME
2179 bool "time"
2180 help
2181 Run commands and summarize execution time.
2182
Simon Glassfa744522017-05-17 03:25:23 -06002183config CMD_GETTIME
2184 bool "gettime - read elapsed time"
2185 help
2186 Enable the 'gettime' command which reads the elapsed time since
2187 U-Boot started running. This shows the time in seconds and
2188 milliseconds. See also the 'bootstage' command which provides more
2189 flexibility for boot timing.
2190
Samuel Dionne-Riele69e1f12022-08-18 15:44:04 -04002191config CMD_PAUSE
2192 bool "pause command"
2193 help
2194 Delay execution waiting for any user input.
2195 Useful to allow the user to read a failure log.
2196
Heinrich Schuchardta31a5942019-12-24 22:17:37 +01002197config CMD_RNG
2198 bool "rng command"
2199 depends on DM_RNG
Sughosh Ganu6daac6b2022-07-22 21:32:09 +05302200 default y if SANDBOX
Heinrich Schuchardta31a5942019-12-24 22:17:37 +01002201 select HEXDUMP
2202 help
2203 Print bytes from the hardware random number generator.
2204
Chris Morgan61a96182021-08-25 11:22:57 -05002205config CMD_KASLRSEED
2206 bool "kaslrseed"
2207 depends on DM_RNG
2208 help
2209 Set the kaslr-seed in the chosen node with entropy provided by a
2210 hardware random number generator.
2211
Bin Meng7c4f7be2020-10-13 18:45:05 +08002212config CMD_SLEEP
Simon Glass29499a02016-01-17 20:53:51 -07002213 bool "sleep"
2214 default y
2215 help
2216 Delay execution for some time
2217
Ashok Reddy Soma1e6f9962022-01-17 10:16:50 +01002218config CMD_MP
2219 bool "support for multiprocessor commands"
2220 depends on MP
2221 default y
Siva Durga Prasad Paladugu8e45f1a2018-06-19 12:24:23 +02002222 help
Ashok Reddy Soma1e6f9962022-01-17 10:16:50 +01002223 This enables commands to bringup different processors
2224 in multiprocessor cases.
Siva Durga Prasad Paladugu8e45f1a2018-06-19 12:24:23 +02002225
Simon Glass29499a02016-01-17 20:53:51 -07002226config CMD_TIMER
2227 bool "timer"
2228 help
2229 Access the system timer.
2230
Simon Glass29499a02016-01-17 20:53:51 -07002231config CMD_SOUND
2232 bool "sound"
2233 depends on SOUND
2234 help
2235 This provides basic access to the U-Boot's sound support. The main
2236 feature is to play a beep.
2237
2238 sound init - set up sound system
2239 sound play - play a sound
2240
Patrice Chotard7b81c052019-11-25 09:07:38 +01002241config CMD_SYSBOOT
2242 bool "sysboot"
John Keeping9b60a172022-07-28 11:19:15 +01002243 select PXE_UTILS
Patrice Chotard7b81c052019-11-25 09:07:38 +01002244 help
2245 Boot image via local extlinux.conf file
2246
Miao Yan92106272016-05-22 19:37:17 -07002247config CMD_QFW
Tom Rinibcb3c8d2016-05-06 10:40:22 -04002248 bool "qfw"
Miao Yan4fcd7f22016-05-22 19:37:14 -07002249 select QFW
Tom Rinibcb3c8d2016-05-06 10:40:22 -04002250 help
2251 This provides access to the QEMU firmware interface. The main
2252 feature is to allow easy loading of files passed to qemu-system
2253 via -kernel / -initrd
Konstantin Porotchkin97d26782016-12-08 12:22:28 +02002254
Frédéric Danised2e8e42020-03-20 10:59:22 +01002255config CMD_PSTORE
2256 bool "pstore"
2257 help
2258 This provides access to Linux PStore with Rammoops backend. The main
2259 feature is to allow to display or save PStore records.
2260
2261 See doc/pstore.rst for more information.
2262
2263if CMD_PSTORE
2264
2265config CMD_PSTORE_MEM_ADDR
2266 hex "Memory Address"
2267 depends on CMD_PSTORE
2268 help
2269 Base addr used for PStore ramoops memory, should be identical to
2270 ramoops.mem_address parameter used by kernel
2271
2272config CMD_PSTORE_MEM_SIZE
2273 hex "Memory size"
2274 depends on CMD_PSTORE
2275 default "0x10000"
2276 help
2277 Size of PStore ramoops memory, should be identical to ramoops.mem_size
2278 parameter used by kernel, a power of 2 and larger than the sum of the
2279 record sizes
2280
2281config CMD_PSTORE_RECORD_SIZE
2282 hex "Dump record size"
2283 depends on CMD_PSTORE
2284 default "0x1000"
2285 help
2286 Size of each dump done on oops/panic, should be identical to
2287 ramoops.record_size parameter used by kernel and a power of 2
2288 Must be non-zero
2289
2290config CMD_PSTORE_CONSOLE_SIZE
2291 hex "Kernel console log size"
2292 depends on CMD_PSTORE
2293 default "0x1000"
2294 help
2295 Size of kernel console log, should be identical to
2296 ramoops.console_size parameter used by kernel and a power of 2
2297 Must be non-zero
2298
2299config CMD_PSTORE_FTRACE_SIZE
2300 hex "FTrace log size"
2301 depends on CMD_PSTORE
2302 default "0x1000"
2303 help
2304 Size of ftrace log, should be identical to ramoops.ftrace_size
2305 parameter used by kernel and a power of 2
2306
2307config CMD_PSTORE_PMSG_SIZE
2308 hex "User space message log size"
2309 depends on CMD_PSTORE
2310 default "0x1000"
2311 help
2312 Size of user space message log, should be identical to
2313 ramoops.pmsg_size parameter used by kernel and a power of 2
2314
2315config CMD_PSTORE_ECC_SIZE
2316 int "ECC size"
2317 depends on CMD_PSTORE
2318 default "0"
2319 help
2320 if non-zero, the option enables ECC support and specifies ECC buffer
2321 size in bytes (1 is a special value, means 16 bytes ECC), should be
2322 identical to ramoops.ramoops_ecc parameter used by kernel
2323
2324endif
2325
Konstantin Porotchkin97d26782016-12-08 12:22:28 +02002326source "cmd/mvebu/Kconfig"
2327
Simon Glass89342ef2017-08-04 16:34:55 -06002328config CMD_TERMINAL
2329 bool "terminal - provides a way to attach a serial terminal"
2330 help
2331 Provides a 'cu'-like serial terminal command. This can be used to
2332 access other serial ports from the system console. The terminal
2333 is very simple with no special processing of characters. As with
2334 cu, you can press ~. (tilde followed by period) to exit.
2335
Simon Glass6d56aad2017-08-04 16:35:02 -06002336config CMD_UUID
2337 bool "uuid, guid - generation of unique IDs"
Adam Ford70c8f052018-02-06 12:14:28 -06002338 select LIB_UUID
Simon Glass6d56aad2017-08-04 16:35:02 -06002339 help
2340 This enables two commands:
2341
2342 uuid - generate random Universally Unique Identifier
2343 guid - generate Globally Unique Identifier based on random UUID
2344
2345 The two commands are very similar except for the endianness of the
2346 output.
2347
Simon Glass724e2a42022-10-06 08:36:06 -06002348config CMD_VIDCONSOLE
2349 bool "lcdputs and setcurs"
Simon Glass52cb5042022-10-18 07:46:31 -06002350 depends on VIDEO
Simon Glass724e2a42022-10-06 08:36:06 -06002351 default y
2352 help
2353 Enabling this will provide 'setcurs' and 'lcdputs' commands which
2354 support cursor positioning and drawing strings on the video
2355 console (framebuffer).
2356
2357 The name 'lcdputs' is a bit of a misnomer, but so named because the
2358 video device is often an LCD.
2359
Dzmitry Sankouskibb165e42023-03-07 13:21:16 +03002360config CMD_SELECT_FONT
2361 bool "select font size"
2362 depends on VIDEO
2363 default n
2364 help
2365 Enabling this will provide 'font' command.
2366 Allows font selection at runtime.
2367
Simon Glass29499a02016-01-17 20:53:51 -07002368endmenu
2369
Lokesh Vutla962c4e02017-12-29 11:47:49 +05302370source "cmd/ti/Kconfig"
2371
Simon Glass29499a02016-01-17 20:53:51 -07002372config CMD_BOOTSTAGE
2373 bool "Enable the 'bootstage' command"
2374 depends on BOOTSTAGE
2375 help
2376 Add a 'bootstage' command which supports printing a report
2377 and un/stashing of bootstage data.
2378
2379menu "Power commands"
2380config CMD_PMIC
2381 bool "Enable Driver Model PMIC command"
2382 depends on DM_PMIC
2383 help
2384 This is the pmic command, based on a driver model pmic's API.
2385 Command features are unchanged:
2386 - list - list pmic devices
2387 - pmic dev <id> - show or [set] operating pmic device (NEW)
2388 - pmic dump - dump registers
2389 - pmic read address - read byte of register at address
2390 - pmic write address - write byte to register at address
2391 The only one change for this command is 'dev' subcommand.
2392
2393config CMD_REGULATOR
2394 bool "Enable Driver Model REGULATOR command"
2395 depends on DM_REGULATOR
2396 help
2397 This command is based on driver model regulator's API.
2398 User interface features:
2399 - list - list regulator devices
2400 - regulator dev <id> - show or [set] operating regulator device
2401 - regulator info - print constraints info
2402 - regulator status - print operating status
2403 - regulator value <val] <-f> - print/[set] voltage value [uV]
2404 - regulator current <val> - print/[set] current value [uA]
2405 - regulator mode <id> - print/[set] operating mode id
2406 - regulator enable - enable the regulator output
2407 - regulator disable - disable the regulator output
2408
2409 The '-f' (force) option can be used for set the value which exceeds
2410 the limits, which are found in device-tree and are kept in regulator's
Simon Glass71fa5b42020-12-03 16:55:18 -07002411 uclass plat structure.
Simon Glass29499a02016-01-17 20:53:51 -07002412
2413endmenu
2414
2415menu "Security commands"
Simon Glass528fdd12017-04-26 22:27:49 -06002416config CMD_AES
2417 bool "Enable the 'aes' command"
2418 select AES
2419 help
2420 This provides a means to encrypt and decrypt data using the AES
2421 (Advanced Encryption Standard). This algorithm uses a symetric key
2422 and is widely used as a streaming cipher. Different key lengths are
2423 supported by the algorithm but this command only supports 128 bits
2424 at present.
2425
Simon Glass311ec4f2017-04-26 22:27:53 -06002426config CMD_BLOB
2427 bool "Enable the 'blob' command"
Aymen Sghaierf18c71f2021-03-25 17:30:27 +08002428 depends on !MX6ULL && !MX6SLL && !MX6SL
2429 select IMX_HAB if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M
Simon Glass311ec4f2017-04-26 22:27:53 -06002430 help
2431 This is used with the Freescale secure boot mechanism.
2432
2433 Freescale's SEC block has built-in Blob Protocol which provides
2434 a method for protecting user-defined data across system power
2435 cycles. SEC block protects data in a data structure called a Blob,
2436 which provides both confidentiality and integrity protection.
2437
2438 Encapsulating data as a blob
2439 Each time that the Blob Protocol is used to protect data, a
2440 different randomly generated key is used to encrypt the data.
2441 This random key is itself encrypted using a key which is derived
2442 from SoC's non-volatile secret key and a 16 bit Key identifier.
2443 The resulting encrypted key along with encrypted data is called a
2444 blob. The non-volatile secure key is available for use only during
2445 secure boot.
2446
2447 During decapsulation, the reverse process is performed to get back
2448 the original data.
2449
2450 Sub-commands:
Michal Simekf751ff52018-07-23 15:55:12 +02002451 blob enc - encapsulating data as a cryptgraphic blob
Simon Glass311ec4f2017-04-26 22:27:53 -06002452 blob dec - decapsulating cryptgraphic blob to get the data
2453
2454 Syntax:
2455
2456 blob enc src dst len km
2457
2458 Encapsulate and create blob of data $len bytes long
2459 at address $src and store the result at address $dst.
2460 $km is the 16 byte key modifier is also required for
2461 generation/use as key for cryptographic operation. Key
2462 modifier should be 16 byte long.
2463
2464 blob dec src dst len km
2465
2466 Decapsulate the blob of data at address $src and
2467 store result of $len byte at addr $dst.
2468 $km is the 16 byte key modifier is also required for
2469 generation/use as key for cryptographic operation. Key
2470 modifier should be 16 byte long.
2471
Simon Glass027608e2017-05-17 03:25:25 -06002472config CMD_HASH
2473 bool "Support 'hash' command"
Simon Glassb22ec7a2017-05-17 09:05:34 -06002474 select HASH
Simon Glass027608e2017-05-17 03:25:25 -06002475 help
2476 This provides a way to hash data in memory using various supported
2477 algorithms (such as SHA1, MD5, CRC32). The computed digest can be
2478 saved to memory or to an environment variable. It is also possible
2479 to verify a hash against data in memory.
2480
Michalis Pappasd382d222018-04-13 10:40:57 +03002481config CMD_HVC
2482 bool "Support the 'hvc' command"
2483 depends on ARM_SMCCC
2484 help
2485 Allows issuing Hypervisor Calls (HVCs). Mostly useful for
2486 development and testing.
2487
2488config CMD_SMC
2489 bool "Support the 'smc' command"
2490 depends on ARM_SMCCC
2491 help
2492 Allows issuing Secure Monitor Calls (SMCs). Mostly useful for
2493 development and testing.
2494
Daniel Thompsona9e2c672017-05-19 17:26:58 +01002495config HASH_VERIFY
2496 bool "hash -v"
2497 depends on CMD_HASH
2498 help
2499 Add -v option to verify data against a hash.
2500
Jorge Ramirez-Ortiz7d80df92021-02-14 16:27:24 +01002501config CMD_SCP03
2502 bool "scp03 - SCP03 enable and rotate/provision operations"
2503 depends on SCP03
2504 help
2505 This command provides access to a Trusted Application
2506 running in a TEE to request Secure Channel Protocol 03
2507 (SCP03) enablement and/or rotation of its SCP03 keys.
2508
Miquel Raynal294f82a2018-05-15 11:57:05 +02002509config CMD_TPM_V1
2510 bool
2511
2512config CMD_TPM_V2
2513 bool
2514
Simon Glass29499a02016-01-17 20:53:51 -07002515config CMD_TPM
2516 bool "Enable the 'tpm' command"
Miquel Raynal294f82a2018-05-15 11:57:05 +02002517 depends on TPM_V1 || TPM_V2
2518 select CMD_TPM_V1 if TPM_V1
2519 select CMD_TPM_V2 if TPM_V2
Simon Glass29499a02016-01-17 20:53:51 -07002520 help
2521 This provides a means to talk to a TPM from the command line. A wide
2522 range of commands if provided - see 'tpm help' for details. The
2523 command requires a suitable TPM on your board and the correct driver
2524 must be enabled.
2525
Miquel Raynal294f82a2018-05-15 11:57:05 +02002526if CMD_TPM
2527
Simon Glass29499a02016-01-17 20:53:51 -07002528config CMD_TPM_TEST
2529 bool "Enable the 'tpm test' command"
Miquel Raynal294f82a2018-05-15 11:57:05 +02002530 depends on TPM_V1
Simon Glass29499a02016-01-17 20:53:51 -07002531 help
Miquel Raynal294f82a2018-05-15 11:57:05 +02002532 This provides a a series of tests to confirm that the TPMv1.x is
2533 working correctly. The tests cover initialisation, non-volatile RAM,
2534 extend, global lock and checking that timing is within expectations.
2535 The tests pass correctly on Infineon TPMs but may need to be adjusted
Simon Glass29499a02016-01-17 20:53:51 -07002536 for other devices.
2537
Miquel Raynal294f82a2018-05-15 11:57:05 +02002538endif
2539
Simon Glass29499a02016-01-17 20:53:51 -07002540endmenu
2541
Moritz Fischer62b30272016-10-04 17:08:08 -07002542menu "Firmware commands"
2543config CMD_CROS_EC
2544 bool "Enable crosec command"
2545 depends on CROS_EC
2546 default y
2547 help
2548 Enable command-line access to the Chrome OS EC (Embedded
2549 Controller). This provides the 'crosec' command which has
2550 a number of sub-commands for performing EC tasks such as
2551 updating its flash, accessing a small saved context area
2552 and talking to the I2C bus behind the EC (if there is one).
2553endmenu
2554
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002555menu "Filesystem commands"
Marek Behún27cec792017-09-03 17:00:30 +02002556config CMD_BTRFS
2557 bool "Enable the 'btrsubvol' command"
2558 select FS_BTRFS
2559 help
2560 This enables the 'btrsubvol' command to list subvolumes
2561 of a BTRFS filesystem. There are no special commands for
2562 listing BTRFS directories or loading BTRFS files - this
2563 can be done by the generic 'fs' commands (see CMD_FS_GENERIC)
2564 when BTRFS is enabled (see FS_BTRFS).
2565
Simon Glass0501e3e2017-04-26 22:27:58 -06002566config CMD_CBFS
2567 bool "Enable the 'cbfs' command"
Simon Glass579b51a2017-04-26 22:27:59 -06002568 depends on FS_CBFS
Simon Glass0501e3e2017-04-26 22:27:58 -06002569 help
2570 Define this to enable support for reading from a Coreboot
2571 filesystem. This is a ROM-based filesystem used for accessing files
2572 on systems that use coreboot as the first boot-loader and then load
2573 U-Boot to actually boot the Operating System. Available commands are
2574 cbfsinit, cbfsinfo, cbfsls and cbfsload.
2575
Simon Glass519805e2017-04-26 22:28:03 -06002576config CMD_CRAMFS
2577 bool "Enable the 'cramfs' command"
Simon Glass690f5092017-04-26 22:28:04 -06002578 depends on FS_CRAMFS
Simon Glass519805e2017-04-26 22:28:03 -06002579 help
2580 This provides commands for dealing with CRAMFS (Compressed ROM
2581 filesystem). CRAMFS is useful when space is tight since files are
2582 compressed. Two commands are provided:
2583
2584 cramfsls - lists files in a cramfs image
2585 cramfsload - loads a file from a cramfs image
2586
Huang Jiananc8eefae2022-02-26 15:05:50 +08002587config CMD_EROFS
2588 bool "EROFS command support"
2589 select FS_EROFS
2590 help
2591 Support for the EROFS fs
2592
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002593config CMD_EXT2
2594 bool "ext2 command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02002595 select FS_EXT4
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002596 help
2597 Enables EXT2 FS command
2598
2599config CMD_EXT4
2600 bool "ext4 command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02002601 select FS_EXT4
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002602 help
2603 Enables EXT4 FS command
2604
2605config CMD_EXT4_WRITE
2606 depends on CMD_EXT4
2607 bool "ext4 write command support"
Tuomas Tynkkynen388f9a02018-01-05 02:45:17 +02002608 select EXT4_WRITE
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002609 help
2610 Enables EXT4 FS write command
2611
2612config CMD_FAT
2613 bool "FAT command support"
Sekhar Nori1909a7b2017-06-02 17:53:59 +05302614 select FS_FAT
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002615 help
2616 Support for the FAT fs
2617
Joao Marcos Costaa12c66f2020-07-30 15:33:48 +02002618config CMD_SQUASHFS
2619 bool "SquashFS command support"
2620 select FS_SQUASHFS
2621 help
2622 Enables SquashFS filesystem commands (e.g. load, ls).
2623
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002624config CMD_FS_GENERIC
2625 bool "filesystem commands"
2626 help
2627 Enables filesystem commands (e.g. load, ls) that work for multiple
2628 fs types.
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002629
Josua Mayerf5ebfe72017-04-24 10:10:45 +02002630config CMD_FS_UUID
2631 bool "fsuuid command"
2632 help
2633 Enables fsuuid command for filesystem UUID.
2634
Simon Glassc4abb4b2017-05-17 03:25:37 -06002635config CMD_JFFS2
2636 bool "jffs2 command"
Simon Glass8c6c7c22017-05-17 03:25:38 -06002637 select FS_JFFS2
Simon Glassc4abb4b2017-05-17 03:25:37 -06002638 help
2639 Enables commands to support the JFFS2 (Journalling Flash File System
2640 version 2) filesystem. This enables fsload, ls and fsinfo which
2641 provide the ability to load files, list directories and obtain
2642 filesystem information.
2643
Tom Rini9c8268d2021-12-17 18:08:47 -05002644config JFFS2_DEV
2645 string "Default device for JFFS2"
2646 depends on CMD_JFFS2
2647 default "nor0"
2648 help
2649 The default device to use with the jffs2 command.
2650
2651config JFFS2_PART_OFFSET
2652 hex "Default offset within flash to locate the JFFS2 image"
2653 depends on CMD_JFFS2
2654 default 0x0
2655 help
2656 The default offset within flash to locate the JFFS2 image.
2657
2658config JFFS2_PART_SIZE
2659 hex "Default size of JFFS2 partition"
2660 depends on CMD_JFFS2
2661 default 0xFFFFFFFF
2662 help
2663 The default size of the JFFS2 partition
2664
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002665config CMD_MTDPARTS
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002666 bool "MTD partition support"
Miquel Raynald2418202019-10-25 19:39:30 +02002667 depends on MTD
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002668 help
Miquel Raynal007dddc2018-09-29 12:58:30 +02002669 MTD partitioning tool support.
2670 It is strongly encouraged to avoid using this command
2671 anymore along with 'sf', 'nand', 'onenand'. One can still
2672 declare the partitions in the mtdparts environment variable
2673 but better use the MTD stack and the 'mtd' command instead.
Maxime Ripardbf2fbd12017-02-27 18:22:04 +01002674
Simon Glass66d7db02017-08-04 16:34:30 -06002675config CMD_MTDPARTS_SPREAD
2676 bool "Padd partition size to take account of bad blocks"
2677 depends on CMD_MTDPARTS
2678 help
2679 This enables the 'spread' sub-command of the mtdparts command.
2680 This command will modify the existing mtdparts variable by increasing
2681 the size of the partitions such that 1) each partition's net size is
2682 at least as large as the size specified in the mtdparts variable and
2683 2) each partition starts on a good block.
2684
Alexander Dahl6cae4f42019-10-30 16:53:55 +01002685config CMD_MTDPARTS_SHOW_NET_SIZES
2686 bool "Show net size (w/o bad blocks) of partitions"
2687 depends on CMD_MTDPARTS
2688 help
2689 Adds two columns to the printed partition table showing the
2690 effective usable size of a partition, if bad blocks are taken
2691 into account.
2692
Miquel Raynalf21322f2019-10-03 19:50:25 +02002693config MTDIDS_DEFAULT
2694 string "Default MTD IDs"
Miquel Raynald2418202019-10-25 19:39:30 +02002695 depends on MTD || SPI_FLASH
Patrick Delaunay1e8e8282022-12-08 09:10:13 +01002696 depends on !SYS_MTDPARTS_RUNTIME
Miquel Raynalf21322f2019-10-03 19:50:25 +02002697 help
2698 Defines a default MTD IDs list for use with MTD partitions in the
2699 Linux MTD command line partitions format.
2700
2701config MTDPARTS_DEFAULT
2702 string "Default MTD partition scheme"
Miquel Raynald2418202019-10-25 19:39:30 +02002703 depends on MTD || SPI_FLASH
Patrick Delaunay1e8e8282022-12-08 09:10:13 +01002704 depends on !SYS_MTDPARTS_RUNTIME
Miquel Raynalf21322f2019-10-03 19:50:25 +02002705 help
2706 Defines a default MTD partitioning scheme in the Linux MTD command
2707 line partitions format
2708
Simon Glassed4ee312017-08-04 16:34:41 -06002709config CMD_REISER
2710 bool "reiser - Access to reiserfs filesystems"
2711 help
2712 This provides two commands which operate on a resierfs filesystem,
2713 commonly used some years ago:
2714
2715 reiserls - list files
2716 reiserload - load a file
2717
Simon Glass19c5caf2017-08-04 16:34:58 -06002718config CMD_YAFFS2
2719 bool "yaffs2 - Access of YAFFS2 filesystem"
2720 depends on YAFFS2
2721 default y
2722 help
2723 This provides commands for accessing a YAFFS2 filesystem. Yet
2724 Another Flash Filesystem 2 is a filesystem designed specifically
2725 for NAND flash. It incorporates bad-block management and ensures
2726 that device writes are sequential regardless of filesystem
2727 activity.
2728
Simon Glassdc82dee2017-08-04 16:35:04 -06002729config CMD_ZFS
2730 bool "zfs - Access of ZFS filesystem"
2731 help
2732 This provides commands to accessing a ZFS filesystem, commonly used
2733 on Solaris systems. Two sub-commands are provided:
2734
2735 zfsls - list files in a directory
2736 zfsload - load a file
2737
2738 See doc/README.zfs for more details.
2739
Dinh Nguyen0685bef2016-04-21 09:05:23 -05002740endmenu
2741
Simon Glass3423f212017-04-26 22:27:52 -06002742menu "Debug commands"
2743
Simon Glasse1efad22021-03-15 18:00:24 +13002744config CMD_CBSYSINFO
2745 bool "cbsysinfo"
2746 depends on X86
2747 default y if SYS_COREBOOT
2748 help
2749 This provides information about the coreboot sysinfo table stored in
2750 memory by coreboot before jumping to U-Boot. It can be useful for
2751 debugging the beaaviour of coreboot or U-Boot.
2752
Stefan Roese2702b272022-09-02 13:57:51 +02002753config CMD_CYCLIC
2754 bool "cyclic - Show information about cyclic functions"
2755 depends on CYCLIC
2756 default y
2757 help
2758 This enables the 'cyclic' command which provides information about
2759 cyclic execution functions. This infrastructure allows registering
2760 functions to be executed cyclically, e.g. every 100ms. These commands
2761 are supported:
2762
2763 cyclic list - list cyclic functions
2764 cyclic cyclic demo <cycletime_ms> <delay_us> - register cyclic
2765 demo function
2766
2767 See doc/develop/cyclic.rst for more details.
2768
Simon Glass20ea5632017-04-26 22:28:08 -06002769config CMD_DIAG
2770 bool "diag - Board diagnostics"
2771 help
2772 This command provides access to board diagnostic tests. These are
2773 called Power-on Self Tests (POST). The command allows listing of
2774 available tests and running either all the tests, or specific tests
2775 identified by name.
2776
Simon Glass3304fa82022-03-04 08:43:06 -07002777config CMD_EVENT
2778 bool "event - Show information about events"
Tom Rini7d3684a2023-01-16 15:46:49 -05002779 depends on EVENT
Simon Glass3304fa82022-03-04 08:43:06 -07002780 default y if EVENT_DEBUG
2781 help
2782 This enables the 'event' command which provides information about
2783 events and event-handler routines. This can help to device event
2784 hadling.
2785
Simon Glass4c3a6202017-05-17 03:25:39 -06002786config CMD_IRQ
2787 bool "irq - Show information about interrupts"
Pragnesh Patel3375e0b2020-08-24 20:38:55 +05302788 depends on !ARM && !MIPS && !RISCV && !SH
Simon Glass4c3a6202017-05-17 03:25:39 -06002789 help
2790 This enables two commands:
2791
2792 interrupts - enable or disable interrupts
2793 irqinfo - print device-specific interrupt information
Simon Glassfd9948c2017-05-17 03:25:40 -06002794
2795config CMD_KGDB
2796 bool "kgdb - Allow debugging of U-Boot with gdb"
Michal Simek9d364412018-10-04 14:26:13 +02002797 depends on PPC
Simon Glassfd9948c2017-05-17 03:25:40 -06002798 help
2799 This enables a 'kgdb' command which allows gdb to connect to U-Boot
2800 over a serial link for debugging purposes. This allows
2801 single-stepping, inspecting variables, etc. This is supported only
2802 on PowerPC at present.
2803
Simon Glass5684f8f2017-12-04 13:48:26 -07002804config CMD_LOG
2805 bool "log - Generation, control and access to logging"
Heinrich Schuchardt74bad682018-04-19 22:02:46 +02002806 select LOG
Sean Anderson304882e2020-10-27 19:55:38 -04002807 select GETOPT
Simon Glass5684f8f2017-12-04 13:48:26 -07002808 help
2809 This provides access to logging features. It allows the output of
2810 log data to be controlled to a limited extent (setting up the default
Simon Glass14c8a062017-12-04 13:48:27 -07002811 maximum log level for emitting of records). It also provides access
2812 to a command used for testing the log system.
Simon Glass5684f8f2017-12-04 13:48:26 -07002813
Simon Glass126cb792017-08-04 16:34:59 -06002814config CMD_TRACE
2815 bool "trace - Support tracing of function calls and timing"
Simon Glass84b77112021-11-24 09:26:39 -07002816 depends on TRACE
2817 default y
Simon Glass126cb792017-08-04 16:34:59 -06002818 help
2819 Enables a command to control using of function tracing within
2820 U-Boot. This allows recording of call traces including timing
2821 information. The command can write data to memory for exporting
Simon Glassbfce7fc2019-04-08 13:20:51 -06002822 for analysis (e.g. using bootchart). See doc/README.trace for full
Simon Glass126cb792017-08-04 16:34:59 -06002823 details.
2824
Igor Opaniuk60291192018-06-03 21:56:39 +03002825config CMD_AVB
2826 bool "avb - Android Verified Boot 2.0 operations"
Igor Opaniuke0df0352018-07-17 14:33:25 +03002827 depends on AVB_VERIFY
Igor Opaniuk60291192018-06-03 21:56:39 +03002828 help
2829 Enables a "avb" command to perform verification of partitions using
2830 Android Verified Boot 2.0 functionality. It includes such subcommands:
2831 avb init - initialize avb2 subsystem
2832 avb read_rb - read rollback index
2833 avb write_rb - write rollback index
2834 avb is_unlocked - check device lock state
2835 avb get_uuid - read and print uuid of a partition
2836 avb read_part - read data from partition
2837 avb read_part_hex - read data from partition and output to stdout
2838 avb write_part - write data to partition
2839 avb verify - run full verification chain
Joel Peshkin369d87a2021-04-11 11:21:58 +02002840
2841config CMD_STACKPROTECTOR_TEST
2842 bool "Test command for stack protector"
2843 depends on STACKPROTECTOR
2844 help
2845 Enable stackprot_test command
2846 The stackprot_test command will force a stack overrun to test
2847 the stack smashing detection mechanisms.
2848
Simon Glass3423f212017-04-26 22:27:52 -06002849endmenu
2850
Heiko Schocher09dbb852016-09-21 07:58:19 +02002851config CMD_UBI
2852 tristate "Enable UBI - Unsorted block images commands"
Heiko Schocher09dbb852016-09-21 07:58:19 +02002853 select MTD_UBI
2854 help
2855 UBI is a software layer above MTD layer which admits use of LVM-like
2856 logical volumes on top of MTD devices, hides some complexities of
2857 flash chips like wear and bad blocks and provides some other useful
2858 capabilities. Please, consult the MTD web site for more details
2859 (www.linux-mtd.infradead.org). Activate this option if you want
2860 to use U-Boot UBI commands.
Miquel Raynal12f1ff12018-09-29 12:58:29 +02002861 It is also strongly encouraged to also enable CONFIG_MTD to get full
2862 partition support.
Heiko Schocher09dbb852016-09-21 07:58:19 +02002863
Philippe Reynes10d53222020-03-23 19:20:47 +01002864config CMD_UBI_RENAME
2865 bool "Enable rename"
2866 depends on CMD_UBI
Philippe Reynes10d53222020-03-23 19:20:47 +01002867 help
2868 Enable a "ubi" command to rename ubi volume:
2869 ubi rename <oldname> <newname>
2870
Boris Brezillonaa57d0f2017-02-27 18:22:06 +01002871config CMD_UBIFS
2872 tristate "Enable UBIFS - Unsorted block images filesystem commands"
Maxime Ripard1e6a0962017-03-03 14:53:22 +01002873 depends on CMD_UBI
Michal Simek84f3dec2018-07-23 15:55:13 +02002874 default y if CMD_UBI
Karl Beldan3418eeb2017-07-12 16:11:47 +00002875 select LZO
Pali Rohár67a8b272022-05-23 22:50:36 +02002876 select GZIP
Boris Brezillonaa57d0f2017-02-27 18:22:06 +01002877 help
2878 UBIFS is a file system for flash devices which works on top of UBI.
2879
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +05302880config MMC_SPEED_MODE_SET
2881 bool "set speed mode using mmc command"
2882 depends on CMD_MMC
2883 default n
2884 help
2885 Enable setting speed mode using mmc rescan and mmc dev commands.
2886 The speed mode is provided as the last argument in these commands
2887 and is indicated using the index from enum bus_mode in
2888 include/mmc.h. A speed mode can be set only if it has already
2889 been enabled in the device tree.
Alexey Romanov68c4a372023-01-10 13:56:47 +03002890
2891config CMD_MESON
2892 bool "Amlogic Meson commands"
2893 depends on ARCH_MESON
2894 default y
2895 help
2896 Enable useful commands for the Meson Soc family developed by Amlogic Inc.
Simon Glass29499a02016-01-17 20:53:51 -07002897endmenu