Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1 | menu "Command line interface" |
| 2 | |
Simon Glass | 302a648 | 2016-03-13 19:07:28 -0600 | [diff] [blame] | 3 | config CMDLINE |
| 4 | bool "Support U-Boot commands" |
| 5 | default y |
| 6 | help |
| 7 | Enable U-Boot's command-line functions. This provides a means |
| 8 | to enter commands into U-Boot for a wide variety of purposes. It |
| 9 | also allows scripts (containing commands) to be executed. |
| 10 | Various commands and command categorys can be indivdually enabled. |
| 11 | Depending on the number of commands enabled, this can add |
| 12 | substantially to the size of U-Boot. |
| 13 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 14 | config HUSH_PARSER |
| 15 | bool "Use hush shell" |
Simon Glass | 302a648 | 2016-03-13 19:07:28 -0600 | [diff] [blame] | 16 | depends on CMDLINE |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 17 | help |
| 18 | This option enables the "hush" shell (from Busybox) as command line |
| 19 | interpreter, thus enabling powerful command line syntax like |
| 20 | if...then...else...fi conditionals or `&&' and '||' |
| 21 | constructs ("shell scripts"). |
| 22 | |
| 23 | If disabled, you get the old, much simpler behaviour with a somewhat |
| 24 | smaller memory footprint. |
| 25 | |
Adam Ford | d021e94 | 2018-02-06 07:58:59 -0600 | [diff] [blame] | 26 | config CMDLINE_EDITING |
| 27 | bool "Enable command line editing" |
| 28 | depends on CMDLINE |
| 29 | default y |
| 30 | help |
| 31 | Enable editing and History functions for interactive command line |
| 32 | input operations |
| 33 | |
Tom Rini | dafcd96 | 2022-03-30 18:07:14 -0400 | [diff] [blame] | 34 | config CMDLINE_PS_SUPPORT |
| 35 | bool "Enable support for changing the command prompt string at run-time" |
| 36 | depends on HUSH_PARSER |
| 37 | help |
| 38 | Only static string in the prompt is supported so far. The string is |
| 39 | obtained from environment variables PS1 and PS2. |
| 40 | |
Adam Ford | d021e94 | 2018-02-06 07:58:59 -0600 | [diff] [blame] | 41 | config AUTO_COMPLETE |
| 42 | bool "Enable auto complete using TAB" |
| 43 | depends on CMDLINE |
| 44 | default y |
| 45 | help |
| 46 | Enable auto completion of commands using TAB. |
| 47 | |
| 48 | config SYS_LONGHELP |
| 49 | bool "Enable long help messages" |
| 50 | depends on CMDLINE |
| 51 | default y if CMDLINE |
| 52 | help |
| 53 | Defined when you want long help messages included |
| 54 | Do not set this option when short of memory. |
| 55 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 56 | config SYS_PROMPT |
| 57 | string "Shell prompt" |
Michal Simek | a91feae | 2019-09-25 12:32:41 +0200 | [diff] [blame] | 58 | default "Zynq> " if ARCH_ZYNQ |
Michal Simek | 3c3886d | 2019-09-25 12:37:15 +0200 | [diff] [blame] | 59 | default "ZynqMP> " if ARCH_ZYNQMP |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 60 | default "=> " |
| 61 | help |
| 62 | This string is displayed in the command line to the left of the |
| 63 | cursor. |
| 64 | |
Patrick Delaunay | 48aee0a | 2020-10-26 09:31:42 +0100 | [diff] [blame] | 65 | config SYS_PROMPT_HUSH_PS2 |
| 66 | string "Hush shell secondary prompt" |
| 67 | depends on HUSH_PARSER |
| 68 | default "> " |
| 69 | help |
| 70 | This defines the secondary prompt string, which is |
| 71 | printed when the command interpreter needs more input |
| 72 | to complete a command. Usually "> ". |
| 73 | |
Tom Rini | cf49358 | 2022-05-11 16:21:06 -0400 | [diff] [blame] | 74 | config SYS_MAXARGS |
| 75 | int "Maximum number arguments accepted by commands" |
| 76 | default 16 |
| 77 | |
Tom Rini | d31466b | 2022-05-11 18:01:06 -0400 | [diff] [blame] | 78 | config 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 Rini | d0ee7f2 | 2022-05-11 17:38:09 -0400 | [diff] [blame] | 87 | config SYS_PBSIZE |
| 88 | int "Buffer size for console output" |
Andre Przywara | 177040b | 2022-09-13 01:23:58 +0100 | [diff] [blame] | 89 | default 1024 if ARCH_SUNXI |
Tom Rini | d0ee7f2 | 2022-05-11 17:38:09 -0400 | [diff] [blame] | 90 | default 1044 |
| 91 | |
Christoph Muellner | 7ae31fc | 2019-04-05 13:03:46 +0200 | [diff] [blame] | 92 | config SYS_XTRACE |
Sean Anderson | b935d19 | 2021-03-04 11:34:23 -0500 | [diff] [blame] | 93 | bool "Command execution tracer" |
Christoph Muellner | 7ae31fc | 2019-04-05 13:03:46 +0200 | [diff] [blame] | 94 | 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 Protsenko | 610eec7 | 2017-09-28 12:33:45 -0700 | [diff] [blame] | 103 | config BUILD_BIN2C |
| 104 | bool |
| 105 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 106 | comment "Commands" |
| 107 | |
| 108 | menu "Info commands" |
| 109 | |
Simon Glass | 0b885bc | 2020-04-26 09:19:53 -0600 | [diff] [blame] | 110 | config CMD_ACPI |
| 111 | bool "acpi" |
Simon Glass | 0992a90 | 2023-05-04 16:54:57 -0600 | [diff] [blame] | 112 | depends on ACPI |
Heinrich Schuchardt | 12218c1 | 2021-01-20 21:37:56 +0100 | [diff] [blame] | 113 | default y |
Simon Glass | 0b885bc | 2020-04-26 09:19:53 -0600 | [diff] [blame] | 114 | 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 Meng | 56d0635 | 2021-02-25 17:22:34 +0800 | [diff] [blame] | 125 | config 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 Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 132 | config CMD_BDI |
| 133 | bool "bdinfo" |
| 134 | default y |
| 135 | help |
| 136 | Print board info |
| 137 | |
Masahiro Yamada | 61304db | 2017-01-30 11:12:07 +0900 | [diff] [blame] | 138 | config CMD_CONFIG |
| 139 | bool "config" |
Masahiro Yamada | 61304db | 2017-01-30 11:12:07 +0900 | [diff] [blame] | 140 | default SANDBOX |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 141 | select BUILD_BIN2C |
Masahiro Yamada | 61304db | 2017-01-30 11:12:07 +0900 | [diff] [blame] | 142 | help |
| 143 | Print ".config" contents. |
| 144 | |
| 145 | If this option is enabled, the ".config" file contents are embedded |
| 146 | in the U-Boot image and can be printed on the console by the "config" |
| 147 | command. This provides information of which options are enabled on |
| 148 | the running U-Boot. |
| 149 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 150 | config CMD_CONSOLE |
| 151 | bool "coninfo" |
| 152 | default y |
| 153 | help |
| 154 | Print console devices and information. |
| 155 | |
| 156 | config CMD_CPU |
| 157 | bool "cpu" |
Heinrich Schuchardt | 622178d | 2020-11-05 00:29:11 +0100 | [diff] [blame] | 158 | depends on CPU |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 159 | help |
| 160 | Print information about available CPUs. This normally shows the |
| 161 | number of CPUs, type (e.g. manufacturer, architecture, product or |
| 162 | internal name) and clock frequency. Other information may be |
| 163 | available depending on the CPU driver. |
| 164 | |
Sughosh Ganu | e68c03b | 2022-10-21 18:16:04 +0530 | [diff] [blame] | 165 | config CMD_FWU_METADATA |
| 166 | bool "fwu metadata read" |
| 167 | depends on FWU_MULTI_BANK_UPDATE |
| 168 | help |
| 169 | Command to read the metadata and dump it's contents |
| 170 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 171 | config CMD_LICENSE |
| 172 | bool "license" |
Masahiro Yamada | d726f22 | 2017-01-30 11:12:08 +0900 | [diff] [blame] | 173 | select BUILD_BIN2C |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 174 | help |
| 175 | Print GPL license text |
| 176 | |
Simon Glass | 3b65ee3 | 2019-12-06 21:41:54 -0700 | [diff] [blame] | 177 | config CMD_PMC |
| 178 | bool "pmc" |
| 179 | help |
| 180 | Provides access to the Intel Power-Management Controller (PMC) so |
| 181 | that its state can be examined. This does not currently support |
| 182 | changing the state but it is still useful for debugging and seeing |
| 183 | what is going on. |
| 184 | |
Christophe Leroy | fa37922 | 2017-08-04 16:34:40 -0600 | [diff] [blame] | 185 | config CMD_REGINFO |
| 186 | bool "reginfo" |
| 187 | depends on PPC |
| 188 | help |
| 189 | Register dump |
| 190 | |
Baruch Siach | 1c79f2f | 2020-01-21 15:44:54 +0200 | [diff] [blame] | 191 | config CMD_TLV_EEPROM |
| 192 | bool "tlv_eeprom" |
| 193 | depends on I2C_EEPROM |
Pali Rohár | 56e3d6e | 2022-05-30 10:42:35 +0200 | [diff] [blame] | 194 | select CRC32 |
Baruch Siach | 1c79f2f | 2020-01-21 15:44:54 +0200 | [diff] [blame] | 195 | help |
| 196 | Display and program the system EEPROM data block in ONIE Tlvinfo |
| 197 | format. TLV stands for Type-Length-Value. |
| 198 | |
| 199 | config SPL_CMD_TLV_EEPROM |
| 200 | bool "tlv_eeprom for SPL" |
| 201 | depends on SPL_I2C_EEPROM |
Simon Glass | 9ca0068 | 2021-07-10 21:14:31 -0600 | [diff] [blame] | 202 | select SPL_DRIVERS_MISC |
Pali Rohár | 56e3d6e | 2022-05-30 10:42:35 +0200 | [diff] [blame] | 203 | select SPL_CRC32 |
Baruch Siach | 1c79f2f | 2020-01-21 15:44:54 +0200 | [diff] [blame] | 204 | help |
| 205 | Read system EEPROM data block in ONIE Tlvinfo format from SPL. |
| 206 | |
Heinrich Schuchardt | c92b50a | 2020-08-20 19:43:39 +0200 | [diff] [blame] | 207 | config CMD_SBI |
| 208 | bool "sbi" |
| 209 | depends on RISCV_SMODE && SBI_V02 |
| 210 | help |
| 211 | Display information about the SBI implementation. |
| 212 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 213 | endmenu |
| 214 | |
| 215 | menu "Boot commands" |
| 216 | |
| 217 | config CMD_BOOTD |
| 218 | bool "bootd" |
| 219 | default y |
| 220 | help |
| 221 | Run the command stored in the environment "bootcmd", i.e. |
| 222 | "bootd" does the same thing as "run bootcmd". |
| 223 | |
| 224 | config CMD_BOOTM |
| 225 | bool "bootm" |
| 226 | default y |
| 227 | help |
| 228 | Boot an application image from the memory. |
| 229 | |
Philippe Reynes | 9d46e63 | 2022-03-28 22:57:00 +0200 | [diff] [blame] | 230 | config CMD_BOOTM_PRE_LOAD |
| 231 | bool "enable pre-load on bootm" |
| 232 | depends on CMD_BOOTM |
| 233 | depends on IMAGE_PRE_LOAD |
| 234 | default n |
| 235 | help |
| 236 | Enable support of stage pre-load for the bootm command. |
| 237 | This stage allow to check or modify the image provided |
| 238 | to the bootm command. |
| 239 | |
Simon Glass | 5d053cc | 2022-04-24 23:31:10 -0600 | [diff] [blame] | 240 | config CMD_BOOTDEV |
| 241 | bool "bootdev" |
| 242 | depends on BOOTSTD |
| 243 | default y if BOOTSTD_FULL |
| 244 | help |
| 245 | Support listing available bootdevs (boot devices) which can provide an |
| 246 | OS to boot, as well as showing information about a particular one. |
| 247 | |
| 248 | This command is not necessary for bootstd to work. |
| 249 | |
Simon Glass | 2d653f6 | 2022-04-24 23:31:11 -0600 | [diff] [blame] | 250 | config CMD_BOOTFLOW |
| 251 | bool "bootflow" |
| 252 | depends on BOOTSTD |
| 253 | default y |
| 254 | help |
| 255 | Support scanning for bootflows available with the bootdevs. The |
| 256 | bootflows can optionally be booted. |
| 257 | |
| 258 | config CMD_BOOTFLOW_FULL |
| 259 | bool "bootflow - extract subcommands" |
| 260 | depends on BOOTSTD_FULL |
Simon Glass | d8d40bc | 2023-05-06 08:27:09 -0600 | [diff] [blame] | 261 | default y |
Simon Glass | 2d653f6 | 2022-04-24 23:31:11 -0600 | [diff] [blame] | 262 | help |
| 263 | Add the ability to list the available bootflows, select one and obtain |
| 264 | information about it. |
| 265 | |
| 266 | This command is not necessary for bootstd to work. |
| 267 | |
Simon Glass | 7fca71d | 2022-04-24 23:31:12 -0600 | [diff] [blame] | 268 | config CMD_BOOTMETH |
| 269 | bool "bootmeth" |
| 270 | depends on BOOTSTD |
| 271 | default y if BOOTSTD_FULL |
| 272 | help |
| 273 | Support listing available bootmethds (methods used to boot an |
| 274 | Operating System), as well as selecting the order that the bootmeths |
| 275 | are used. |
| 276 | |
| 277 | This command is not necessary for bootstd to work. |
| 278 | |
Cristian Ciocaltea | ecc7fda | 2019-12-24 18:05:39 +0200 | [diff] [blame] | 279 | config BOOTM_EFI |
| 280 | bool "Support booting UEFI FIT images" |
| 281 | depends on CMD_BOOTEFI && CMD_BOOTM && FIT |
| 282 | default y |
| 283 | help |
| 284 | Support booting UEFI FIT images via the bootm command. |
| 285 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 286 | config CMD_BOOTZ |
| 287 | bool "bootz" |
| 288 | help |
| 289 | Boot the Linux zImage |
| 290 | |
Masahiro Yamada | 2695927 | 2016-08-12 08:31:16 -0400 | [diff] [blame] | 291 | config CMD_BOOTI |
| 292 | bool "booti" |
Atish Patra | 3cedc97 | 2019-05-06 17:49:39 -0700 | [diff] [blame] | 293 | depends on ARM64 || RISCV |
Masahiro Yamada | 2695927 | 2016-08-12 08:31:16 -0400 | [diff] [blame] | 294 | default y |
| 295 | help |
| 296 | Boot an AArch64 Linux Kernel image from memory. |
| 297 | |
Tom Rini | 4b0bcfa | 2019-09-20 17:36:50 -0400 | [diff] [blame] | 298 | config BOOTM_LINUX |
| 299 | bool "Support booting Linux OS images" |
| 300 | depends on CMD_BOOTM || CMD_BOOTZ || CMD_BOOTI |
| 301 | default y |
| 302 | help |
| 303 | Support booting the Linux kernel directly via a command such as bootm |
| 304 | or booti or bootz. |
| 305 | |
| 306 | config BOOTM_NETBSD |
| 307 | bool "Support booting NetBSD (non-EFI) loader images" |
| 308 | depends on CMD_BOOTM |
| 309 | default y |
| 310 | help |
| 311 | Support booting NetBSD via the bootm command. |
| 312 | |
| 313 | config BOOTM_OPENRTOS |
| 314 | bool "Support booting OPENRTOS / FreeRTOS images" |
| 315 | depends on CMD_BOOTM |
| 316 | help |
| 317 | Support booting OPENRTOS / FreeRTOS via the bootm command. |
| 318 | |
| 319 | config BOOTM_OSE |
| 320 | bool "Support booting Enea OSE images" |
Tom Rini | 14a2dee | 2019-12-05 18:46:11 -0500 | [diff] [blame] | 321 | depends on (ARM && (ARM64 || CPU_V7A || CPU_V7R) || SANDBOX || PPC || X86) |
Tom Rini | 4b0bcfa | 2019-09-20 17:36:50 -0400 | [diff] [blame] | 322 | depends on CMD_BOOTM |
| 323 | help |
| 324 | Support booting Enea OSE images via the bootm command. |
| 325 | |
| 326 | config BOOTM_PLAN9 |
| 327 | bool "Support booting Plan9 OS images" |
| 328 | depends on CMD_BOOTM |
| 329 | default y |
| 330 | help |
| 331 | Support booting Plan9 images via the bootm command. |
| 332 | |
| 333 | config BOOTM_RTEMS |
| 334 | bool "Support booting RTEMS OS images" |
| 335 | depends on CMD_BOOTM |
| 336 | default y |
| 337 | help |
| 338 | Support booting RTEMS images via the bootm command. |
| 339 | |
Linus Walleij | 41a29f2 | 2023-02-01 00:16:13 +0100 | [diff] [blame] | 340 | config CMD_SEAMA |
| 341 | bool "Support read SEAMA NAND images" |
| 342 | depends on MTD_RAW_NAND |
| 343 | help |
| 344 | Support reading NAND Seattle Image (SEAMA) images. |
| 345 | |
Simon Glass | 5fe76d4 | 2022-07-30 15:52:37 -0600 | [diff] [blame] | 346 | config CMD_VBE |
| 347 | bool "vbe - Verified Boot for Embedded" |
| 348 | depends on BOOTMETH_VBE |
Simon Glass | 2d74226 | 2022-08-23 10:14:05 -0700 | [diff] [blame] | 349 | default y if BOOTSTD_FULL |
Simon Glass | 5fe76d4 | 2022-07-30 15:52:37 -0600 | [diff] [blame] | 350 | help |
| 351 | Provides various subcommands related to VBE, such as listing the |
| 352 | available methods, looking at the state and changing which method |
| 353 | is used to boot. Updating the parameters is not currently |
| 354 | supported. |
| 355 | |
Tom Rini | 4b0bcfa | 2019-09-20 17:36:50 -0400 | [diff] [blame] | 356 | config BOOTM_VXWORKS |
| 357 | bool "Support booting VxWorks OS images" |
| 358 | depends on CMD_BOOTM |
| 359 | default y |
| 360 | help |
| 361 | Support booting VxWorks images via the bootm command. |
| 362 | |
Tom Rini | c45568c | 2022-06-25 19:29:46 -0400 | [diff] [blame] | 363 | config SYS_BOOTM_LEN |
| 364 | hex "Maximum size of a decompresed OS image" |
Marek Vasut | 77aed22 | 2023-05-29 14:04:06 +0200 | [diff] [blame] | 365 | depends on CMD_BOOTM || CMD_BOOTI || CMD_BOOTZ || \ |
| 366 | LEGACY_IMAGE_FORMAT || SPL_LEGACY_IMAGE_FORMAT |
Tom Rini | c45568c | 2022-06-25 19:29:46 -0400 | [diff] [blame] | 367 | default 0x4000000 if PPC || ARM64 |
| 368 | default 0x1000000 if X86 || ARCH_MX6 || ARCH_MX7 |
| 369 | default 0x800000 |
| 370 | help |
| 371 | This is the maximum size of the buffer that is used to decompress the OS |
| 372 | image in to, if passing a compressed image to bootm/booti/bootz. |
| 373 | |
AKASHI Takahiro | fefff63 | 2019-11-08 10:32:15 +0900 | [diff] [blame] | 374 | config CMD_BOOTEFI |
| 375 | bool "bootefi" |
| 376 | depends on EFI_LOADER |
| 377 | default y |
| 378 | help |
| 379 | Boot an EFI image from memory. |
| 380 | |
Alexander Graf | 95b62b2 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 381 | config CMD_BOOTEFI_HELLO_COMPILE |
| 382 | bool "Compile a standard EFI hello world binary for testing" |
Heinrich Schuchardt | 3b4847c | 2019-11-07 08:05:17 +0100 | [diff] [blame] | 383 | depends on CMD_BOOTEFI && !CPU_V7M |
Alexander Graf | 95b62b2 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 384 | default y |
| 385 | help |
| 386 | This compiles a standard EFI hello world application with U-Boot so |
| 387 | that it can be used with the test/py testing framework. This is useful |
| 388 | for testing that EFI is working at a basic level, and for bringing |
| 389 | up EFI support on a new architecture. |
| 390 | |
| 391 | No additional space will be required in the resulting U-Boot binary |
| 392 | when this option is enabled. |
| 393 | |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 394 | config CMD_BOOTEFI_HELLO |
| 395 | bool "Allow booting a standard EFI hello world for testing" |
Alexander Graf | 95b62b2 | 2016-11-17 22:40:10 +0100 | [diff] [blame] | 396 | depends on CMD_BOOTEFI_HELLO_COMPILE |
Heinrich Schuchardt | ec5f0ed | 2020-07-13 07:33:40 +0200 | [diff] [blame] | 397 | default y if CMD_BOOTEFI_SELFTEST |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 398 | help |
| 399 | This adds a standard EFI hello world application to U-Boot so that |
| 400 | it can be used with the 'bootefi hello' command. This is useful |
| 401 | for testing that EFI is working at a basic level, and for bringing |
| 402 | up EFI support on a new architecture. |
| 403 | |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 404 | source lib/efi_selftest/Kconfig |
| 405 | |
Tom Rini | 4880b02 | 2016-11-29 09:14:56 -0500 | [diff] [blame] | 406 | config CMD_BOOTMENU |
| 407 | bool "bootmenu" |
| 408 | select MENU |
Masahisa Kojima | a3d0aa8 | 2022-04-28 17:09:41 +0900 | [diff] [blame] | 409 | select CHARSET |
Tom Rini | 4880b02 | 2016-11-29 09:14:56 -0500 | [diff] [blame] | 410 | help |
| 411 | Add an ANSI terminal boot menu command. |
| 412 | |
Eugeniu Rosca | b84acf1 | 2019-12-24 17:51:06 +0100 | [diff] [blame] | 413 | config CMD_ADTIMG |
| 414 | bool "adtimg" |
Sam Protsenko | d03e76a | 2018-08-16 23:34:13 +0300 | [diff] [blame] | 415 | help |
| 416 | Android DTB/DTBO image manipulation commands. Read dtb/dtbo files from |
| 417 | image into RAM, dump image structure information, etc. Those dtb/dtbo |
| 418 | files should be merged in one dtb further, which needs to be passed to |
| 419 | the kernel, as part of a boot process. |
| 420 | |
Sam Protsenko | 94f6d0d | 2020-01-24 17:53:42 +0200 | [diff] [blame] | 421 | config CMD_ABOOTIMG |
| 422 | bool "abootimg" |
| 423 | depends on ANDROID_BOOT_IMAGE |
| 424 | help |
| 425 | Android Boot Image manipulation commands. Allows one to extract |
| 426 | images contained in boot.img, like kernel, ramdisk, dtb, etc, and |
| 427 | obtain corresponding meta-information from boot.img. |
| 428 | |
Sam Protsenko | 34b4319 | 2020-01-24 17:53:43 +0200 | [diff] [blame] | 429 | See doc/android/boot-image.rst for details. |
| 430 | |
Simon Glass | a0874dc | 2023-06-01 10:23:02 -0600 | [diff] [blame^] | 431 | config CMD_CEDIT |
| 432 | bool "cedit - Configuration editor" |
| 433 | depends on CEDIT |
| 434 | default y |
| 435 | help |
| 436 | Provides a command to allow editing of board configuration and |
| 437 | providing a UI for the user to adjust settings. Subcommands allow |
| 438 | loading and saving of configuration as well as showing an editor. |
| 439 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 440 | config CMD_ELF |
| 441 | bool "bootelf, bootvx" |
| 442 | default y |
Keerthy | 805b3ca | 2020-02-12 13:55:03 +0530 | [diff] [blame] | 443 | select LIB_ELF |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 444 | help |
| 445 | Boot an ELF/vxWorks image from the memory. |
| 446 | |
Michal Simek | 23922e2 | 2016-04-06 20:28:04 +0200 | [diff] [blame] | 447 | config CMD_FDT |
| 448 | bool "Flattened Device Tree utility commands" |
| 449 | default y |
| 450 | depends on OF_LIBFDT |
| 451 | help |
| 452 | Do FDT related setup before booting into the Operating System. |
| 453 | |
Kory Maincent | 2f84e9c | 2021-05-04 19:31:22 +0200 | [diff] [blame] | 454 | config SUPPORT_EXTENSION_SCAN |
| 455 | bool |
| 456 | |
| 457 | config CMD_EXTENSION |
| 458 | bool "Extension board management command" |
| 459 | select CMD_FDT |
| 460 | depends on SUPPORT_EXTENSION_SCAN |
| 461 | help |
| 462 | Enables the "extension" command, which allows to detect |
| 463 | extension boards connected to the system, and apply |
| 464 | corresponding Device Tree overlays. |
| 465 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 466 | config CMD_GO |
| 467 | bool "go" |
| 468 | default y |
| 469 | help |
| 470 | Start an application at a given address. |
| 471 | |
| 472 | config CMD_RUN |
| 473 | bool "run" |
| 474 | default y |
| 475 | help |
| 476 | Run the command in the given environment variable. |
| 477 | |
| 478 | config CMD_IMI |
| 479 | bool "iminfo" |
| 480 | default y |
| 481 | help |
| 482 | Print header information for application image. |
| 483 | |
| 484 | config CMD_IMLS |
| 485 | bool "imls" |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 486 | help |
| 487 | List all images found in flash |
| 488 | |
| 489 | config CMD_XIMG |
| 490 | bool "imxtract" |
| 491 | default y |
| 492 | help |
| 493 | Extract a part of a multi-image. |
| 494 | |
Roger Knecht | 23c0df6 | 2022-09-03 13:15:04 +0000 | [diff] [blame] | 495 | config CMD_XXD |
| 496 | bool "xxd" |
| 497 | help |
| 498 | Print file as hexdump to standard output |
| 499 | |
Simon Glass | 72c3033 | 2017-08-04 16:34:48 -0600 | [diff] [blame] | 500 | config CMD_SPL |
| 501 | bool "spl export - Export boot information for Falcon boot" |
| 502 | depends on SPL |
| 503 | help |
| 504 | Falcon mode allows booting directly from SPL into an Operating |
| 505 | System such as Linux, thus skipping U-Boot proper. See |
| 506 | doc/README.falcon for full information about how to use this |
| 507 | command. |
| 508 | |
Simon Glass | 203dc1b | 2017-08-04 16:34:49 -0600 | [diff] [blame] | 509 | config CMD_SPL_NAND_OFS |
Lukasz Majewski | f63c43b | 2019-05-16 16:01:36 +0200 | [diff] [blame] | 510 | hex "Offset of OS args or dtb for Falcon-mode NAND boot" |
Lukasz Majewski | 7cb179e | 2019-05-16 16:01:35 +0200 | [diff] [blame] | 511 | depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT) |
Simon Glass | 203dc1b | 2017-08-04 16:34:49 -0600 | [diff] [blame] | 512 | default 0 |
| 513 | help |
| 514 | This provides the offset of the command line arguments for Linux |
| 515 | when booting from NAND in Falcon mode. See doc/README.falcon |
| 516 | for full information about how to use this option (and also see |
| 517 | board/gateworks/gw_ventana/README for an example). |
| 518 | |
Lukasz Majewski | ef9e57d | 2019-05-16 16:01:37 +0200 | [diff] [blame] | 519 | config CMD_SPL_NOR_OFS |
| 520 | hex "Offset of OS args or dtb for Falcon-mode NOR boot" |
| 521 | depends on CMD_SPL && SPL_NOR_SUPPORT |
| 522 | default 0 |
| 523 | help |
| 524 | This provides the offset of the command line arguments or dtb for |
| 525 | Linux when booting from NOR in Falcon mode. |
| 526 | |
Simon Glass | 3a91a25 | 2017-08-04 16:34:50 -0600 | [diff] [blame] | 527 | config CMD_SPL_WRITE_SIZE |
| 528 | hex "Size of argument area" |
| 529 | depends on CMD_SPL |
| 530 | default 0x2000 |
| 531 | help |
| 532 | This provides the size of the command-line argument area in NAND |
| 533 | flash used by Falcon-mode boot. See the documentation until CMD_SPL |
| 534 | for detail. |
| 535 | |
Simon Glass | 9b92a8d | 2017-08-04 16:34:57 -0600 | [diff] [blame] | 536 | config CMD_THOR_DOWNLOAD |
| 537 | bool "thor - TIZEN 'thor' download" |
Marek Szyprowski | 909338c | 2019-10-02 12:29:08 +0200 | [diff] [blame] | 538 | select DFU |
Simon Glass | 9b92a8d | 2017-08-04 16:34:57 -0600 | [diff] [blame] | 539 | help |
| 540 | Implements the 'thor' download protocol. This is a way of |
| 541 | downloading a software update over USB from an attached host. |
| 542 | There is no documentation about this within the U-Boot source code |
| 543 | but you should be able to find something on the interwebs. |
| 544 | |
Tom Rini | 60910a3 | 2022-12-02 16:42:46 -0500 | [diff] [blame] | 545 | config THOR_RESET_OFF |
| 546 | bool "thor: Disable reset on completion" |
| 547 | depends on CMD_THOR_DOWNLOAD |
| 548 | |
Simon Glass | e7a815f | 2017-08-04 16:35:03 -0600 | [diff] [blame] | 549 | config CMD_ZBOOT |
| 550 | bool "zboot - x86 boot command" |
| 551 | help |
| 552 | With x86 machines it is common to boot a bzImage file which |
| 553 | contains both a kernel and a setup.bin file. The latter includes |
| 554 | configuration information from the dark ages which x86 boards still |
| 555 | need to pick things out of. |
| 556 | |
| 557 | Consider using FIT in preference to this since it supports directly |
| 558 | booting both 32- and 64-bit kernels, as well as secure boot. |
| 559 | Documentation is available in doc/uImage.FIT/x86-fit-boot.txt |
| 560 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 561 | endmenu |
| 562 | |
| 563 | menu "Environment commands" |
| 564 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 565 | config CMD_ASKENV |
| 566 | bool "ask for env variable" |
| 567 | help |
| 568 | Ask for environment variable |
| 569 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 570 | config CMD_EXPORTENV |
| 571 | bool "env export" |
| 572 | default y |
| 573 | help |
| 574 | Export environments. |
| 575 | |
| 576 | config CMD_IMPORTENV |
| 577 | bool "env import" |
| 578 | default y |
| 579 | help |
| 580 | Import environments. |
| 581 | |
| 582 | config CMD_EDITENV |
| 583 | bool "editenv" |
| 584 | default y |
| 585 | help |
| 586 | Edit environment variable. |
| 587 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 588 | config CMD_GREPENV |
| 589 | bool "search env" |
| 590 | help |
| 591 | Allow for searching environment variables |
| 592 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 593 | config CMD_SAVEENV |
| 594 | bool "saveenv" |
| 595 | default y |
| 596 | help |
| 597 | Save all environment variables into the compiled-in persistent |
| 598 | storage. |
| 599 | |
Frank Wunderlich | cd121bd | 2019-06-29 11:36:19 +0200 | [diff] [blame] | 600 | config CMD_ERASEENV |
| 601 | bool "eraseenv" |
Frank Wunderlich | cd121bd | 2019-06-29 11:36:19 +0200 | [diff] [blame] | 602 | depends on CMD_SAVEENV |
| 603 | help |
| 604 | Erase environment variables from the compiled-in persistent |
| 605 | storage. |
| 606 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 607 | config CMD_ENV_EXISTS |
| 608 | bool "env exists" |
| 609 | default y |
| 610 | help |
| 611 | Check if a variable is defined in the environment for use in |
| 612 | shell scripting. |
| 613 | |
Simon Glass | a55d29d | 2017-05-17 03:25:13 -0600 | [diff] [blame] | 614 | config CMD_ENV_CALLBACK |
| 615 | bool "env callbacks - print callbacks and their associated variables" |
| 616 | help |
| 617 | Some environment variable have callbacks defined by |
| 618 | U_BOOT_ENV_CALLBACK. These are called when the variable changes. |
| 619 | For example changing "baudrate" adjust the serial baud rate. This |
| 620 | command lists the currently defined callbacks. |
| 621 | |
Simon Glass | ffc7658 | 2017-05-17 03:25:14 -0600 | [diff] [blame] | 622 | config CMD_ENV_FLAGS |
| 623 | bool "env flags -print variables that have non-default flags" |
| 624 | help |
| 625 | Some environment variables have special flags that control their |
| 626 | behaviour. For example, serial# can only be written once and cannot |
| 627 | be deleted. This command shows the variables that have special |
| 628 | flags. |
| 629 | |
AKASHI Takahiro | 49d81fd | 2019-02-25 15:54:36 +0900 | [diff] [blame] | 630 | config CMD_NVEDIT_EFI |
| 631 | bool "env [set|print] -e - set/print UEFI variables" |
| 632 | depends on EFI_LOADER |
AKASHI Takahiro | 49d81fd | 2019-02-25 15:54:36 +0900 | [diff] [blame] | 633 | imply HEXDUMP |
| 634 | help |
| 635 | UEFI variables are encoded as some form of U-Boot variables. |
| 636 | If enabled, we are allowed to set/print UEFI variables using |
| 637 | "env" command with "-e" option without knowing details. |
| 638 | |
Samuel Dionne-Riel | ec57bd7 | 2021-12-20 18:31:56 -0500 | [diff] [blame] | 639 | config CMD_NVEDIT_INDIRECT |
| 640 | bool "env indirect - Sets environment value from another" |
| 641 | |
Leo Ruan | 8e92120 | 2019-05-24 17:20:19 +0200 | [diff] [blame] | 642 | config CMD_NVEDIT_INFO |
| 643 | bool "env info - print or evaluate environment information" |
| 644 | help |
| 645 | Print environment information: |
| 646 | - env_valid : is environment valid |
| 647 | - env_ready : is environment imported into hash table |
| 648 | - env_use_default : is default environment used |
| 649 | |
| 650 | This command can be optionally used for evaluation in scripts: |
| 651 | [-d] : evaluate whether default environment is used |
| 652 | [-p] : evaluate whether environment can be persisted |
Patrick Delaunay | 6718ebd | 2020-06-19 14:03:34 +0200 | [diff] [blame] | 653 | [-q] : quiet output |
Leo Ruan | 8e92120 | 2019-05-24 17:20:19 +0200 | [diff] [blame] | 654 | The result of multiple evaluations will be combined with AND. |
| 655 | |
Patrick Delaunay | 0115dd3 | 2020-07-28 11:51:20 +0200 | [diff] [blame] | 656 | config CMD_NVEDIT_LOAD |
| 657 | bool "env load" |
| 658 | help |
| 659 | Load all environment variables from the compiled-in persistent |
| 660 | storage. |
| 661 | |
Patrick Delaunay | a97d22e | 2020-07-28 11:51:21 +0200 | [diff] [blame] | 662 | config CMD_NVEDIT_SELECT |
| 663 | bool "env select" |
| 664 | help |
| 665 | Select the compiled-in persistent storage of environment variables. |
| 666 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 667 | endmenu |
| 668 | |
| 669 | menu "Memory commands" |
| 670 | |
Mario Six | 55b2556 | 2018-03-28 14:39:18 +0200 | [diff] [blame] | 671 | config CMD_BINOP |
| 672 | bool "binop" |
| 673 | help |
| 674 | Compute binary operations (xor, or, and) of byte arrays of arbitrary |
| 675 | size from memory and store the result in memory or the environment. |
| 676 | |
Simon Glass | 4aed227 | 2020-09-19 18:49:26 -0600 | [diff] [blame] | 677 | config CMD_BLOBLIST |
| 678 | bool "bloblist" |
| 679 | default y if BLOBLIST |
| 680 | help |
| 681 | Show information about the bloblist, a collection of binary blobs |
| 682 | held in memory that persist between SPL and U-Boot. In the case of |
| 683 | x86 devices the bloblist can be used to hold ACPI tables so that they |
| 684 | remain available in memory. |
| 685 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 686 | config CMD_CRC32 |
| 687 | bool "crc32" |
| 688 | default y |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 689 | select HASH |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 690 | help |
| 691 | Compute CRC32. |
| 692 | |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 693 | config CRC32_VERIFY |
| 694 | bool "crc32 -v" |
| 695 | depends on CMD_CRC32 |
| 696 | help |
| 697 | Add -v option to verify data against a crc32 checksum. |
| 698 | |
Simon Glass | a1dc980 | 2017-05-17 03:25:10 -0600 | [diff] [blame] | 699 | config CMD_EEPROM |
| 700 | bool "eeprom - EEPROM subsystem" |
| 701 | help |
| 702 | (deprecated, needs conversion to driver model) |
| 703 | Provides commands to read and write EEPROM (Electrically Erasable |
| 704 | Programmable Read Only Memory) chips that are connected over an |
| 705 | I2C bus. |
| 706 | |
| 707 | config CMD_EEPROM_LAYOUT |
| 708 | bool "Enable layout-aware eeprom commands" |
| 709 | depends on CMD_EEPROM |
| 710 | help |
| 711 | (deprecated, needs conversion to driver model) |
| 712 | When enabled, additional eeprom sub-commands become available. |
| 713 | |
| 714 | eeprom print - prints the contents of the eeprom in a human-readable |
| 715 | way (eeprom layout fields, and data formatted to be fit for human |
| 716 | consumption). |
| 717 | |
| 718 | eeprom update - allows user to update eeprom fields by specifying |
| 719 | the field name, and providing the new data in a human readable format |
| 720 | (same format as displayed by the eeprom print command). |
| 721 | |
| 722 | Both commands can either auto detect the layout, or be told which |
| 723 | layout to use. |
| 724 | |
| 725 | Feature API: |
| 726 | __weak int parse_layout_version(char *str) |
| 727 | - override to provide your own layout name parsing |
| 728 | __weak void __eeprom_layout_assign(struct eeprom_layout *layout, |
| 729 | int layout_version); |
| 730 | - override to setup the layout metadata based on the version |
| 731 | __weak int eeprom_layout_detect(unsigned char *data) |
| 732 | - override to provide your own algorithm for detecting layout |
| 733 | version |
| 734 | eeprom_field.c |
| 735 | - contains various printing and updating functions for common |
| 736 | types of eeprom fields. Can be used for defining |
| 737 | custom layouts. |
| 738 | |
| 739 | config EEPROM_LAYOUT_HELP_STRING |
| 740 | string "Tells user what layout names are supported" |
| 741 | depends on CMD_EEPROM_LAYOUT |
| 742 | default "<not defined>" |
| 743 | help |
| 744 | Help printed with the LAYOUT VERSIONS part of the 'eeprom' |
| 745 | command's help. |
| 746 | |
Tom Rini | 88cd7d0 | 2021-08-17 17:59:45 -0400 | [diff] [blame] | 747 | config SYS_I2C_EEPROM_BUS |
| 748 | int "I2C bus of the EEPROM device." |
| 749 | depends on CMD_EEPROM |
| 750 | default 0 |
| 751 | |
| 752 | config SYS_I2C_EEPROM_ADDR_LEN |
| 753 | int "Length in bytes of the EEPROM memory array address" |
| 754 | depends on CMD_EEPROM || ID_EEPROM |
| 755 | default 1 |
| 756 | range 1 2 |
| 757 | help |
| 758 | Note: This is NOT the chip address length! |
| 759 | |
| 760 | config SYS_EEPROM_SIZE |
| 761 | depends on CMD_EEPROM |
| 762 | int "Size in bytes of the EEPROM device" |
| 763 | default 256 |
| 764 | |
| 765 | config SYS_EEPROM_PAGE_WRITE_BITS |
| 766 | int "Number of bits used to address bytes in a single page" |
| 767 | depends on CMD_EEPROM |
| 768 | default 8 |
| 769 | help |
| 770 | The EEPROM page size is 2^SYS_EEPROM_PAGE_WRITE_BITS. |
| 771 | A 64 byte page, for example would require six bits. |
| 772 | |
| 773 | config SYS_EEPROM_PAGE_WRITE_DELAY_MS |
| 774 | int "Number of milliseconds to delay between page writes" |
| 775 | depends on CMD_EEPROM || CMD_I2C |
| 776 | default 0 |
| 777 | |
Simon Glass | ba71be5 | 2017-08-04 16:34:51 -0600 | [diff] [blame] | 778 | config LOOPW |
| 779 | bool "loopw" |
| 780 | help |
| 781 | Infinite write loop on address range |
| 782 | |
Andre Przywara | bea79d7 | 2017-03-15 01:19:05 +0000 | [diff] [blame] | 783 | config CMD_MD5SUM |
| 784 | bool "md5sum" |
Andre Przywara | bea79d7 | 2017-03-15 01:19:05 +0000 | [diff] [blame] | 785 | select MD5 |
| 786 | help |
| 787 | Compute MD5 checksum. |
| 788 | |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 789 | config MD5SUM_VERIFY |
Andre Przywara | bea79d7 | 2017-03-15 01:19:05 +0000 | [diff] [blame] | 790 | bool "md5sum -v" |
Andre Przywara | bea79d7 | 2017-03-15 01:19:05 +0000 | [diff] [blame] | 791 | depends on CMD_MD5SUM |
| 792 | help |
| 793 | Add -v option to verify data against an MD5 checksum. |
| 794 | |
Simon Glass | ba71be5 | 2017-08-04 16:34:51 -0600 | [diff] [blame] | 795 | config CMD_MEMINFO |
| 796 | bool "meminfo" |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 797 | help |
Simon Glass | ba71be5 | 2017-08-04 16:34:51 -0600 | [diff] [blame] | 798 | Display memory information. |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 799 | |
Simon Glass | ba71be5 | 2017-08-04 16:34:51 -0600 | [diff] [blame] | 800 | config CMD_MEMORY |
| 801 | bool "md, mm, nm, mw, cp, cmp, base, loop" |
| 802 | default y |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 803 | help |
Simon Glass | ba71be5 | 2017-08-04 16:34:51 -0600 | [diff] [blame] | 804 | Memory commands. |
| 805 | md - memory display |
| 806 | mm - memory modify (auto-incrementing address) |
| 807 | nm - memory modify (constant address) |
| 808 | mw - memory write (fill) |
| 809 | cp - memory copy |
| 810 | cmp - memory compare |
| 811 | base - print or set address offset |
| 812 | loop - initialize loop on address range |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 813 | |
Simon Glass | 550a9e7 | 2020-07-28 19:41:14 -0600 | [diff] [blame] | 814 | config CMD_MEM_SEARCH |
Simon Glass | bdded20 | 2020-06-02 19:26:49 -0600 | [diff] [blame] | 815 | bool "ms - Memory search" |
| 816 | help |
| 817 | Memory-search command |
| 818 | |
| 819 | This allows searching through a region of memory looking for hex |
| 820 | data (byte, 16-bit word, 32-bit long, also 64-bit on machines that |
| 821 | support it). It is also possible to search for a string. The |
| 822 | command accepts a memory range and a list of values to search for. |
| 823 | The values need to appear in memory in the same order they are given |
| 824 | in the command. At most 10 matches can be returned at a time, but |
| 825 | pressing return will show the next 10 matches. Environment variables |
| 826 | are set for use with scripting (memmatches, memaddr, mempos). |
| 827 | |
Joel Johnson | 7273231 | 2020-01-29 09:17:18 -0700 | [diff] [blame] | 828 | config CMD_MX_CYCLIC |
Adam Ford | 78f2877 | 2019-08-14 07:54:34 -0500 | [diff] [blame] | 829 | bool "Enable cyclic md/mw commands" |
| 830 | depends on CMD_MEMORY |
| 831 | help |
| 832 | Add the "mdc" and "mwc" memory commands. These are cyclic |
| 833 | "md/mw" commands. |
| 834 | Examples: |
| 835 | |
| 836 | => mdc.b 10 4 500 |
| 837 | This command will print 4 bytes (10,11,12,13) each 500 ms. |
| 838 | |
| 839 | => mwc.l 100 12345678 10 |
| 840 | This command will write 12345678 to address 100 all 10 ms. |
| 841 | |
Jean-Jacques Hiblot | 803e1a3 | 2019-07-02 14:23:26 +0200 | [diff] [blame] | 842 | config CMD_RANDOM |
| 843 | bool "random" |
| 844 | default y |
| 845 | depends on CMD_MEMORY && (LIB_RAND || LIB_HW_RAND) |
| 846 | help |
| 847 | random - fill memory with random data |
| 848 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 849 | config CMD_MEMTEST |
| 850 | bool "memtest" |
| 851 | help |
| 852 | Simple RAM read/write test. |
| 853 | |
Mario Six | e89f8aa | 2018-03-28 14:38:14 +0200 | [diff] [blame] | 854 | if CMD_MEMTEST |
| 855 | |
| 856 | config SYS_ALT_MEMTEST |
| 857 | bool "Alternative test" |
| 858 | help |
| 859 | Use a more complete alternative memory test. |
| 860 | |
Ralph Siemsen | 9989fb1 | 2020-09-09 12:10:00 -0400 | [diff] [blame] | 861 | if SYS_ALT_MEMTEST |
| 862 | |
| 863 | config SYS_ALT_MEMTEST_BITFLIP |
| 864 | bool "Bitflip test" |
| 865 | default y |
| 866 | help |
| 867 | The alternative memory test includes bitflip test since 2020.07. |
| 868 | The bitflip test significantly increases the overall test time. |
| 869 | Bitflip test can optionally be disabled here. |
| 870 | |
| 871 | endif |
| 872 | |
Ashok Reddy Soma | 702de89 | 2020-05-04 15:26:21 +0200 | [diff] [blame] | 873 | config SYS_MEMTEST_START |
| 874 | hex "default start address for mtest" |
Tom Rini | ff27af1 | 2021-12-12 22:12:29 -0500 | [diff] [blame] | 875 | default 0x0 |
Ashok Reddy Soma | 702de89 | 2020-05-04 15:26:21 +0200 | [diff] [blame] | 876 | help |
| 877 | This is the default start address for mtest for simple read/write |
| 878 | test. If no arguments are given to mtest, default address is used |
| 879 | as start address. |
| 880 | |
| 881 | config SYS_MEMTEST_END |
| 882 | hex "default end address for mtest" |
| 883 | default 0x1000 |
| 884 | help |
| 885 | This is the default end address for mtest for simple read/write |
| 886 | test. If no arguments are given to mtest, default address is used |
| 887 | as end address. |
| 888 | |
Mario Six | e89f8aa | 2018-03-28 14:38:14 +0200 | [diff] [blame] | 889 | endif |
| 890 | |
Simon Glass | ba71be5 | 2017-08-04 16:34:51 -0600 | [diff] [blame] | 891 | config CMD_SHA1SUM |
| 892 | bool "sha1sum" |
| 893 | select SHA1 |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 894 | help |
Simon Glass | ba71be5 | 2017-08-04 16:34:51 -0600 | [diff] [blame] | 895 | Compute SHA1 checksum. |
| 896 | |
| 897 | config SHA1SUM_VERIFY |
| 898 | bool "sha1sum -v" |
| 899 | depends on CMD_SHA1SUM |
| 900 | help |
| 901 | Add -v option to verify data against a SHA1 checksum. |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 902 | |
Simon Glass | 00805d7 | 2017-08-04 16:34:52 -0600 | [diff] [blame] | 903 | config CMD_STRINGS |
| 904 | bool "strings - display strings in memory" |
| 905 | help |
| 906 | This works similarly to the Unix 'strings' command except that it |
| 907 | works with a memory range. String of printable characters found |
| 908 | within the range are displayed. The minimum number of characters |
| 909 | for a sequence to be considered a string can be provided. |
| 910 | |
Simon Glass | ee7c0e7 | 2017-05-17 03:25:43 -0600 | [diff] [blame] | 911 | endmenu |
| 912 | |
| 913 | menu "Compression commands" |
| 914 | |
| 915 | config CMD_LZMADEC |
| 916 | bool "lzmadec" |
Tom Rini | 99e46df | 2017-09-29 14:32:44 -0400 | [diff] [blame] | 917 | default y if CMD_BOOTI |
Simon Glass | ee7c0e7 | 2017-05-17 03:25:43 -0600 | [diff] [blame] | 918 | select LZMA |
| 919 | help |
| 920 | Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm) |
| 921 | image from memory. |
| 922 | |
Yusuke Ashiduka | a173223 | 2020-02-20 20:48:01 +0900 | [diff] [blame] | 923 | config CMD_UNLZ4 |
| 924 | bool "unlz4" |
| 925 | default y if CMD_BOOTI |
| 926 | select LZ4 |
| 927 | help |
| 928 | Support decompressing an LZ4 image from memory region. |
| 929 | |
Masahiro Yamada | e9d33e7 | 2017-02-05 10:42:56 +0900 | [diff] [blame] | 930 | config CMD_UNZIP |
| 931 | bool "unzip" |
Tom Rini | 99e46df | 2017-09-29 14:32:44 -0400 | [diff] [blame] | 932 | default y if CMD_BOOTI |
Michael Walle | 56c311b | 2020-05-22 14:07:35 +0200 | [diff] [blame] | 933 | select GZIP |
Masahiro Yamada | e9d33e7 | 2017-02-05 10:42:56 +0900 | [diff] [blame] | 934 | help |
| 935 | Uncompress a zip-compressed memory region. |
| 936 | |
| 937 | config CMD_ZIP |
| 938 | bool "zip" |
Michael Walle | eff5a54 | 2020-05-22 14:07:36 +0200 | [diff] [blame] | 939 | select GZIP_COMPRESSED |
Masahiro Yamada | e9d33e7 | 2017-02-05 10:42:56 +0900 | [diff] [blame] | 940 | help |
| 941 | Compress a memory region with zlib deflate method. |
| 942 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 943 | endmenu |
| 944 | |
| 945 | menu "Device access commands" |
| 946 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 947 | config CMD_ARMFLASH |
| 948 | #depends on FLASH_CFI_DRIVER |
| 949 | bool "armflash" |
| 950 | help |
| 951 | ARM Ltd reference designs flash partition access |
| 952 | |
Neil Armstrong | 051ebe3 | 2018-04-27 15:17:57 +0200 | [diff] [blame] | 953 | config CMD_ADC |
| 954 | bool "adc - Access Analog to Digital Converters info and data" |
| 955 | select ADC |
Michal Simek | 6e741cf | 2020-08-19 10:44:17 +0200 | [diff] [blame] | 956 | depends on DM_REGULATOR |
Neil Armstrong | 051ebe3 | 2018-04-27 15:17:57 +0200 | [diff] [blame] | 957 | help |
| 958 | Shows ADC device info and permit printing one-shot analog converted |
| 959 | data from a named Analog to Digital Converter. |
| 960 | |
Eugeniu Rosca | db7b7a0 | 2019-05-23 17:32:22 +0200 | [diff] [blame] | 961 | config CMD_BCB |
| 962 | bool "bcb" |
| 963 | depends on MMC |
| 964 | depends on PARTITIONS |
| 965 | help |
| 966 | Read/modify/write the fields of Bootloader Control Block, usually |
| 967 | stored on the flash "misc" partition with its structure defined in: |
| 968 | https://android.googlesource.com/platform/bootable/recovery/+/master/ |
| 969 | bootloader_message/include/bootloader_message/bootloader_message.h |
| 970 | |
| 971 | Some real-life use-cases include (but are not limited to): |
| 972 | - Determine the "boot reason" (and act accordingly): |
| 973 | https://source.android.com/devices/bootloader/boot-reason |
| 974 | - Get/pass a list of commands from/to recovery: |
| 975 | https://android.googlesource.com/platform/bootable/recovery |
| 976 | - Inspect/dump the contents of the BCB fields |
| 977 | |
Jean-Jacques Hiblot | 49c752c | 2018-08-09 16:17:46 +0200 | [diff] [blame] | 978 | config CMD_BIND |
| 979 | bool "bind/unbind - Bind or unbind a device to/from a driver" |
| 980 | depends on DM |
| 981 | help |
| 982 | Bind or unbind a device to/from a driver from the command line. |
| 983 | This is useful in situations where a device may be handled by several |
| 984 | drivers. For example, this can be used to bind a UDC to the usb ether |
| 985 | gadget driver from the command line. |
| 986 | |
Simon Glass | d315628 | 2017-04-26 22:28:02 -0600 | [diff] [blame] | 987 | config CMD_CLK |
| 988 | bool "clk - Show clock frequencies" |
| 989 | help |
| 990 | (deprecated) |
| 991 | Shows clock frequences by calling a sock_clk_dump() hook function. |
| 992 | This is depreated in favour of using the CLK uclass and accessing |
| 993 | clock values from associated drivers. However currently no command |
| 994 | exists for this. |
| 995 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 996 | config CMD_DEMO |
| 997 | bool "demo - Demonstration commands for driver model" |
| 998 | depends on DM |
| 999 | help |
| 1000 | Provides a 'demo' command which can be used to play around with |
| 1001 | driver model. To use this properly you will need to enable one or |
| 1002 | both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE). |
| 1003 | Otherwise you will always get an empty list of devices. The demo |
| 1004 | devices are defined in the sandbox device tree, so the easiest |
| 1005 | option is to use sandbox and pass the -d point to sandbox's |
| 1006 | u-boot.dtb file. |
| 1007 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1008 | config CMD_DFU |
| 1009 | bool "dfu" |
Marek Vasut | 0f44d33 | 2018-02-16 16:41:17 +0100 | [diff] [blame] | 1010 | select DFU |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1011 | help |
| 1012 | Enables the command "dfu" which is used to have U-Boot create a DFU |
Simon Glass | 00fd59d | 2017-08-04 16:35:06 -0600 | [diff] [blame] | 1013 | class device via USB. This command requires that the "dfu_alt_info" |
| 1014 | environment variable be set and define the alt settings to expose to |
| 1015 | the host. |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1016 | |
| 1017 | config CMD_DM |
| 1018 | bool "dm - Access to driver model information" |
| 1019 | depends on DM |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1020 | help |
| 1021 | Provides access to driver model data structures and information, |
| 1022 | such as a list of devices, list of uclasses and the state of each |
| 1023 | device (e.g. activated). This is not required for operation, but |
| 1024 | can be useful to see the state of driver model for debugging or |
| 1025 | interest. |
| 1026 | |
Alex Kiernan | 312a10f | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 1027 | config CMD_FASTBOOT |
| 1028 | bool "fastboot - Android fastboot support" |
| 1029 | depends on FASTBOOT |
| 1030 | help |
| 1031 | This enables the command "fastboot" which enables the Android |
| 1032 | fastboot mode for the platform. Fastboot is a protocol for |
| 1033 | downloading images, flashing and device control used on |
Alex Kiernan | f73a7df | 2018-05-29 15:30:53 +0000 | [diff] [blame] | 1034 | Android devices. Fastboot requires either the network stack |
| 1035 | enabled or support for acting as a USB device. |
Alex Kiernan | 312a10f | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 1036 | |
Sam Protsenko | 586a1bf | 2020-01-24 17:53:44 +0200 | [diff] [blame] | 1037 | See doc/android/fastboot.rst for more information. |
Alex Kiernan | 312a10f | 2018-05-29 15:30:39 +0000 | [diff] [blame] | 1038 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1039 | config CMD_FLASH |
| 1040 | bool "flinfo, erase, protect" |
| 1041 | default y |
Miquel Raynal | ff102c5 | 2019-10-25 19:39:30 +0200 | [diff] [blame] | 1042 | depends on MTD || FLASH_CFI_DRIVER || MTD_NOR_FLASH |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1043 | help |
| 1044 | NOR flash support. |
| 1045 | flinfo - print FLASH memory information |
| 1046 | erase - FLASH memory |
| 1047 | protect - enable or disable FLASH write protection |
| 1048 | |
| 1049 | config CMD_FPGA |
| 1050 | bool "fpga" |
Tuomas Tynkkynen | a4fa811 | 2018-01-27 20:28:40 +0200 | [diff] [blame] | 1051 | depends on FPGA |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1052 | default y |
| 1053 | help |
| 1054 | FPGA support. |
| 1055 | |
| 1056 | config CMD_FPGA_LOADBP |
| 1057 | bool "fpga loadbp - load partial bitstream (Xilinx only)" |
| 1058 | depends on CMD_FPGA |
| 1059 | help |
| 1060 | Supports loading an FPGA device from a bitstream buffer containing |
| 1061 | a partial bitstream. |
| 1062 | |
| 1063 | config CMD_FPGA_LOADFS |
| 1064 | bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)" |
| 1065 | depends on CMD_FPGA |
| 1066 | help |
| 1067 | Supports loading an FPGA device from a FAT filesystem. |
| 1068 | |
| 1069 | config CMD_FPGA_LOADMK |
| 1070 | bool "fpga loadmk - load bitstream from image" |
| 1071 | depends on CMD_FPGA |
| 1072 | help |
| 1073 | Supports loading an FPGA device from a image generated by mkimage. |
| 1074 | |
| 1075 | config CMD_FPGA_LOADP |
| 1076 | bool "fpga loadp - load partial bitstream" |
| 1077 | depends on CMD_FPGA |
| 1078 | help |
| 1079 | Supports loading an FPGA device from a bitstream buffer containing |
| 1080 | a partial bitstream. |
| 1081 | |
Siva Durga Prasad Paladugu | cedd48e | 2018-05-31 15:10:22 +0530 | [diff] [blame] | 1082 | config CMD_FPGA_LOAD_SECURE |
Oleksandr Suvorov | fb2b885 | 2022-07-22 17:16:02 +0300 | [diff] [blame] | 1083 | bool "fpga loads - loads secure bitstreams" |
Siva Durga Prasad Paladugu | cedd48e | 2018-05-31 15:10:22 +0530 | [diff] [blame] | 1084 | depends on CMD_FPGA |
Oleksandr Suvorov | fb2b885 | 2022-07-22 17:16:02 +0300 | [diff] [blame] | 1085 | select FPGA_LOAD_SECURE |
Siva Durga Prasad Paladugu | cedd48e | 2018-05-31 15:10:22 +0530 | [diff] [blame] | 1086 | help |
| 1087 | Enables the fpga loads command which is used to load secure |
| 1088 | (authenticated or encrypted or both) bitstreams on to FPGA. |
| 1089 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1090 | config CMD_FPGAD |
| 1091 | bool "fpgad - dump FPGA registers" |
| 1092 | help |
| 1093 | (legacy, needs conversion to driver model) |
| 1094 | Provides a way to dump FPGA registers by calling the board-specific |
| 1095 | fpga_get_reg() function. This functions similarly to the 'md' |
| 1096 | command. |
| 1097 | |
| 1098 | config CMD_FUSE |
| 1099 | bool "fuse - support for the fuse subssystem" |
| 1100 | help |
| 1101 | (deprecated - needs conversion to driver model) |
| 1102 | This allows reading, sensing, programming or overriding fuses |
| 1103 | which control the behaviour of the device. The command uses the |
| 1104 | fuse_...() API. |
| 1105 | |
| 1106 | config CMD_GPIO |
| 1107 | bool "gpio" |
| 1108 | help |
| 1109 | GPIO support. |
| 1110 | |
Diego Rondini | dd2b8c1 | 2022-04-11 12:02:09 +0200 | [diff] [blame] | 1111 | config CMD_GPIO_READ |
| 1112 | bool "gpio read - save GPIO value to variable" |
| 1113 | depends on CMD_GPIO |
| 1114 | help |
| 1115 | Enables the 'gpio read' command that saves the value |
| 1116 | of a GPIO pin to a variable. |
| 1117 | |
Pragnesh Patel | 9e9a530 | 2020-12-22 11:30:05 +0530 | [diff] [blame] | 1118 | config CMD_PWM |
| 1119 | bool "pwm" |
| 1120 | depends on DM_PWM |
| 1121 | help |
| 1122 | Control PWM channels, this allows invert/config/enable/disable PWM channels. |
| 1123 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1124 | config CMD_GPT |
| 1125 | bool "GPT (GUID Partition Table) command" |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1126 | select EFI_PARTITION |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1127 | select PARTITION_UUIDS |
Maxime Ripard | 47738ac | 2017-08-24 11:52:32 +0200 | [diff] [blame] | 1128 | imply RANDOM_UUID |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1129 | help |
| 1130 | Enable the 'gpt' command to ready and write GPT style partition |
| 1131 | tables. |
| 1132 | |
Maxime Ripard | 47738ac | 2017-08-24 11:52:32 +0200 | [diff] [blame] | 1133 | config RANDOM_UUID |
| 1134 | bool "GPT Random UUID generation" |
Adam Ford | a451bc2 | 2018-02-06 12:14:28 -0600 | [diff] [blame] | 1135 | select LIB_UUID |
Maxime Ripard | 47738ac | 2017-08-24 11:52:32 +0200 | [diff] [blame] | 1136 | help |
| 1137 | Enable the generation of partitions with random UUIDs if none |
| 1138 | are provided. |
| 1139 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1140 | config CMD_GPT_RENAME |
| 1141 | bool "GPT partition renaming commands" |
| 1142 | depends on CMD_GPT |
| 1143 | help |
| 1144 | Enables the 'gpt' command to interchange names on two GPT |
| 1145 | partitions via the 'gpt swap' command or to rename single |
| 1146 | partitions via the 'rename' command. |
| 1147 | |
Simon Glass | 75eb997 | 2017-05-17 03:25:29 -0600 | [diff] [blame] | 1148 | config CMD_IDE |
| 1149 | bool "ide - Support for IDE drivers" |
Simon Glass | fc843a0 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 1150 | select IDE |
Simon Glass | 75eb997 | 2017-05-17 03:25:29 -0600 | [diff] [blame] | 1151 | help |
| 1152 | Provides an 'ide' command which allows accessing the IDE drive, |
Vagrant Cascadian | 1107b06 | 2021-12-21 13:06:56 -0800 | [diff] [blame] | 1153 | resetting the IDE interface, printing the partition table and |
Simon Glass | 75eb997 | 2017-05-17 03:25:29 -0600 | [diff] [blame] | 1154 | geting device info. It also enables the 'diskboot' command which |
| 1155 | permits booting from an IDE drive. |
| 1156 | |
Simon Glass | 594e8d1 | 2017-05-17 03:25:34 -0600 | [diff] [blame] | 1157 | config CMD_IO |
| 1158 | bool "io - Support for performing I/O accesses" |
| 1159 | help |
| 1160 | Provides an 'iod' command to display I/O space and an 'iow' command |
| 1161 | to write values to the I/O space. This can be useful for manually |
| 1162 | checking the state of devices during boot when debugging device |
| 1163 | drivers, etc. |
| 1164 | |
Simon Glass | 7d0f5c1 | 2017-05-17 03:25:36 -0600 | [diff] [blame] | 1165 | config CMD_IOTRACE |
| 1166 | bool "iotrace - Support for tracing I/O activity" |
| 1167 | help |
| 1168 | Provides an 'iotrace' command which supports recording I/O reads and |
| 1169 | writes in a trace buffer in memory . It also maintains a checksum |
| 1170 | of the trace records (even if space is exhausted) so that the |
| 1171 | sequence of I/O accesses can be verified. |
| 1172 | |
| 1173 | When debugging drivers it is useful to see what I/O accesses were |
| 1174 | done and in what order. |
| 1175 | |
| 1176 | Even if the individual accesses are of little interest it can be |
| 1177 | useful to verify that the access pattern is consistent each time |
| 1178 | an operation is performed. In this case a checksum can be used to |
| 1179 | characterise the operation of a driver. The checksum can be compared |
| 1180 | across different runs of the operation to verify that the driver is |
| 1181 | working properly. |
| 1182 | |
| 1183 | In particular, when performing major refactoring of the driver, where |
| 1184 | the access pattern should not change, the checksum provides assurance |
| 1185 | that the refactoring work has not broken the driver. |
| 1186 | |
| 1187 | This works by sneaking into the io.h heder for an architecture and |
| 1188 | redirecting I/O accesses through iotrace's tracing mechanism. |
| 1189 | |
| 1190 | For now no commands are provided to examine the trace buffer. The |
| 1191 | format is fairly simple, so 'md' is a reasonable substitute. |
| 1192 | |
| 1193 | Note: The checksum feature is only useful for I/O regions where the |
| 1194 | contents do not change outside of software control. Where this is not |
| 1195 | suitable you can fall back to manually comparing the addresses. It |
| 1196 | might be useful to enhance tracing to only checksum the accesses and |
| 1197 | not the data read/written. |
| 1198 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1199 | config CMD_I2C |
| 1200 | bool "i2c" |
| 1201 | help |
| 1202 | I2C support. |
| 1203 | |
Eugen Hristev | d05266f | 2018-09-18 10:35:33 +0300 | [diff] [blame] | 1204 | config CMD_W1 |
| 1205 | depends on W1 |
| 1206 | default y if W1 |
| 1207 | bool "w1 - Support for Dallas 1-Wire protocol" |
| 1208 | help |
| 1209 | Dallas 1-wire protocol support |
| 1210 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1211 | config CMD_LOADB |
| 1212 | bool "loadb" |
| 1213 | default y |
| 1214 | help |
| 1215 | Load a binary file over serial line. |
| 1216 | |
Rui Miguel Silva | bfef72e | 2022-05-11 10:55:40 +0100 | [diff] [blame] | 1217 | config CMD_LOADM |
| 1218 | bool "loadm" |
| 1219 | help |
| 1220 | Load a binary over memory mapped. |
| 1221 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1222 | config CMD_LOADS |
Tom Rini | 2c8d04d | 2022-10-28 20:27:02 -0400 | [diff] [blame] | 1223 | bool "loads - Load a file over serial in S-Record format" |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1224 | default y |
| 1225 | help |
| 1226 | Load an S-Record file over serial line |
| 1227 | |
Tom Rini | 2c8d04d | 2022-10-28 20:27:02 -0400 | [diff] [blame] | 1228 | config LOADS_ECHO |
| 1229 | bool "Echo all characters received during a loads back to console" |
| 1230 | depends on CMD_LOADS |
| 1231 | help |
| 1232 | If enabled, all characters received during a serial download (using |
| 1233 | the "loads" command) are echoed back. This might be needed by some |
| 1234 | terminal emulations (like "cu"), but may as well just take time on |
| 1235 | others. This sets the initial value of the "loads_echo" environment |
| 1236 | variable to 1. |
| 1237 | |
| 1238 | config CMD_SAVES |
| 1239 | bool "saves - Save a file over serial in S-Record format" |
Ying Sun | aadc1a6 | 2023-06-25 16:24:47 +0800 | [diff] [blame] | 1240 | depends on CMD_LOADS |
Tom Rini | 2c8d04d | 2022-10-28 20:27:02 -0400 | [diff] [blame] | 1241 | help |
| 1242 | Provides a way to save a binary file using the Motorola S-Record |
| 1243 | format over the serial line. |
| 1244 | |
| 1245 | config SYS_LOADS_BAUD_CHANGE |
| 1246 | bool "Enable a temporary baudrate change during loads/saves command" |
| 1247 | depends on CMD_LOADS || CMD_SAVES |
| 1248 | |
Pali Rohár | 1b3e682 | 2022-08-27 16:37:55 +0200 | [diff] [blame] | 1249 | config CMD_LOADXY_TIMEOUT |
| 1250 | int "loadxy_timeout" |
| 1251 | range 0 2000 |
| 1252 | default 90 |
| 1253 | help |
| 1254 | Initial timeout for loadx and loady commands. Zero means infinity. |
| 1255 | |
Niel Fourie | e369790 | 2020-03-30 17:22:58 +0200 | [diff] [blame] | 1256 | config CMD_LSBLK |
| 1257 | depends on BLK |
| 1258 | bool "lsblk - list block drivers and devices" |
| 1259 | help |
| 1260 | Print list of available block device drivers, and for each, the list |
| 1261 | of known block devices. |
| 1262 | |
Marek Szyprowski | 750c543 | 2020-12-23 13:55:15 +0100 | [diff] [blame] | 1263 | config CMD_MBR |
| 1264 | bool "MBR (Master Boot Record) command" |
| 1265 | select DOS_PARTITION |
Marek Szyprowski | 750c543 | 2020-12-23 13:55:15 +0100 | [diff] [blame] | 1266 | help |
| 1267 | Enable the 'mbr' command to ready and write MBR (Master Boot Record) |
| 1268 | style partition tables. |
| 1269 | |
Bin Meng | 3bc0db1 | 2020-10-14 14:34:52 +0800 | [diff] [blame] | 1270 | config CMD_MISC |
| 1271 | bool "misc" |
| 1272 | depends on MISC |
| 1273 | help |
| 1274 | Enable the command "misc" for accessing miscellaneous devices with |
| 1275 | a MISC uclass driver. The command provides listing all MISC devices |
| 1276 | as well as read and write functionalities via their drivers. |
| 1277 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 1278 | config CMD_MMC |
| 1279 | bool "mmc" |
Heinrich Schuchardt | ec61187 | 2021-03-27 11:43:54 +0100 | [diff] [blame] | 1280 | depends on MMC |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 1281 | help |
| 1282 | MMC memory mapped support. |
| 1283 | |
Heinrich Schuchardt | 453d213 | 2020-03-31 17:39:28 +0000 | [diff] [blame] | 1284 | if CMD_MMC |
| 1285 | |
| 1286 | config CMD_BKOPS_ENABLE |
| 1287 | bool "mmc bkops enable" |
| 1288 | depends on CMD_MMC |
Heinrich Schuchardt | 453d213 | 2020-03-31 17:39:28 +0000 | [diff] [blame] | 1289 | help |
| 1290 | Enable command for setting manual background operations handshake |
| 1291 | on a eMMC device. The feature is optionally available on eMMC devices |
| 1292 | conforming to standard >= 4.41. |
| 1293 | |
Alex Kiernan | 5a7b11e | 2018-05-08 04:43:31 +0000 | [diff] [blame] | 1294 | config CMD_MMC_RPMB |
| 1295 | bool "Enable support for RPMB in the mmc command" |
Heinrich Schuchardt | 453d213 | 2020-03-31 17:39:28 +0000 | [diff] [blame] | 1296 | depends on SUPPORT_EMMC_RPMB |
Alex Kiernan | 5a7b11e | 2018-05-08 04:43:31 +0000 | [diff] [blame] | 1297 | help |
| 1298 | Enable the commands for reading, writing and programming the |
| 1299 | key for the Replay Protection Memory Block partition in eMMC. |
| 1300 | |
Alex Kiernan | c232d14 | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 1301 | config CMD_MMC_SWRITE |
| 1302 | bool "mmc swrite" |
Heinrich Schuchardt | 453d213 | 2020-03-31 17:39:28 +0000 | [diff] [blame] | 1303 | depends on MMC_WRITE |
Alex Kiernan | c232d14 | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 1304 | select IMAGE_SPARSE |
| 1305 | help |
| 1306 | Enable support for the "mmc swrite" command to write Android sparse |
| 1307 | images to eMMC. |
| 1308 | |
Heinrich Schuchardt | 453d213 | 2020-03-31 17:39:28 +0000 | [diff] [blame] | 1309 | endif |
| 1310 | |
John Chau | 4a4830c | 2020-07-02 12:01:21 +0800 | [diff] [blame] | 1311 | config CMD_CLONE |
| 1312 | bool "clone" |
| 1313 | depends on BLK |
| 1314 | help |
| 1315 | Enable storage cloning over block devices, useful for |
| 1316 | initial flashing by external block device without network |
| 1317 | or usb support. |
| 1318 | |
Ruchika Gupta | bcc6c57 | 2020-10-23 13:39:33 +0530 | [diff] [blame] | 1319 | config CMD_OPTEE_RPMB |
| 1320 | bool "Enable read/write support on RPMB via OPTEE" |
| 1321 | depends on SUPPORT_EMMC_RPMB && OPTEE |
| 1322 | help |
| 1323 | Enable the commands for reading, writing persistent named values |
| 1324 | in the Replay Protection Memory Block partition in eMMC by |
| 1325 | using Persistent Objects in OPTEE |
| 1326 | |
Miquel Raynal | 5db66b3 | 2018-09-29 12:58:28 +0200 | [diff] [blame] | 1327 | config CMD_MTD |
| 1328 | bool "mtd" |
Miquel Raynal | ff102c5 | 2019-10-25 19:39:30 +0200 | [diff] [blame] | 1329 | depends on MTD |
Miquel Raynal | 5db66b3 | 2018-09-29 12:58:28 +0200 | [diff] [blame] | 1330 | select MTD_PARTITIONS |
| 1331 | help |
| 1332 | MTD commands support. |
| 1333 | |
Pratyush Yadav | 05115ab | 2020-10-16 16:16:35 +0530 | [diff] [blame] | 1334 | config CMD_MUX |
| 1335 | bool "mux" |
| 1336 | depends on MULTIPLEXER |
| 1337 | help |
| 1338 | List, select, and deselect mux controllers on the fly. |
| 1339 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1340 | config CMD_NAND |
| 1341 | bool "nand" |
Maxime Ripard | 522c282 | 2017-03-03 15:13:30 +0100 | [diff] [blame] | 1342 | default y if NAND_SUNXI |
Miquel Raynal | ff102c5 | 2019-10-25 19:39:30 +0200 | [diff] [blame] | 1343 | depends on MTD_RAW_NAND |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1344 | help |
| 1345 | NAND support. |
| 1346 | |
Boris Brezillon | e915d20 | 2017-02-27 18:22:07 +0100 | [diff] [blame] | 1347 | if CMD_NAND |
| 1348 | config CMD_NAND_TRIMFFS |
| 1349 | bool "nand write.trimffs" |
Hans de Goede | d482a8d | 2017-02-27 18:22:10 +0100 | [diff] [blame] | 1350 | default y if ARCH_SUNXI |
Boris Brezillon | e915d20 | 2017-02-27 18:22:07 +0100 | [diff] [blame] | 1351 | help |
| 1352 | Allows one to skip empty pages when flashing something on a NAND. |
| 1353 | |
| 1354 | config CMD_NAND_LOCK_UNLOCK |
| 1355 | bool "nand lock/unlock" |
| 1356 | help |
| 1357 | NAND locking support. |
| 1358 | |
| 1359 | config CMD_NAND_TORTURE |
| 1360 | bool "nand torture" |
| 1361 | help |
| 1362 | NAND torture support. |
| 1363 | |
| 1364 | endif # CMD_NAND |
| 1365 | |
Zhikang Zhang | 0adc38b | 2017-08-03 02:30:59 -0700 | [diff] [blame] | 1366 | config CMD_NVME |
| 1367 | bool "nvme" |
| 1368 | depends on NVME |
| 1369 | default y if NVME |
| 1370 | help |
| 1371 | NVM Express device support |
| 1372 | |
Simon Glass | 978f085 | 2017-08-04 16:34:31 -0600 | [diff] [blame] | 1373 | config CMD_ONENAND |
| 1374 | bool "onenand - access to onenand device" |
Miquel Raynal | ff102c5 | 2019-10-25 19:39:30 +0200 | [diff] [blame] | 1375 | depends on MTD |
Simon Glass | 978f085 | 2017-08-04 16:34:31 -0600 | [diff] [blame] | 1376 | help |
| 1377 | OneNAND is a brand of NAND ('Not AND' gate) flash which provides |
| 1378 | various useful features. This command allows reading, writing, |
| 1379 | and erasing blocks. It allso provides a way to show and change |
| 1380 | bad blocks, and test the device. |
| 1381 | |
Tom Rini | dd4bf24 | 2022-06-15 12:03:51 -0400 | [diff] [blame] | 1382 | config USE_ONENAND_BOARD_INIT |
| 1383 | bool "Call onenand_board_init() in the onenand command" |
| 1384 | depends on CMD_ONENAND |
| 1385 | |
Mario Six | 3bf65cb | 2018-09-27 09:19:34 +0200 | [diff] [blame] | 1386 | config CMD_OSD |
| 1387 | bool "osd" |
| 1388 | help |
| 1389 | Enable the 'osd' command which allows to query information from and |
| 1390 | write text data to a on-screen display (OSD) device; a virtual device |
| 1391 | associated with a display capable of displaying a text overlay on the |
| 1392 | display it's associated with.. |
| 1393 | |
Patrick Delaunay | b331cd6 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 1394 | config CMD_PART |
| 1395 | bool "part" |
AKASHI Takahiro | 64efbd1 | 2022-04-22 10:44:30 +0900 | [diff] [blame] | 1396 | depends on PARTITIONS |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1397 | select PARTITION_UUIDS |
Patrick Delaunay | b331cd6 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 1398 | help |
| 1399 | Read and display information about the partition table on |
| 1400 | various media. |
| 1401 | |
Simon Glass | 6500ec7 | 2017-08-04 16:34:34 -0600 | [diff] [blame] | 1402 | config CMD_PCI |
| 1403 | bool "pci - Access PCI devices" |
| 1404 | help |
| 1405 | Provide access to PCI (Peripheral Interconnect Bus), a type of bus |
| 1406 | used on some devices to allow the CPU to communicate with its |
| 1407 | peripherals. Sub-commands allow bus enumeration, displaying and |
| 1408 | changing configuration space and a few other features. |
| 1409 | |
Stephen Carlson | 59b1c9b | 2023-03-10 11:07:13 -0800 | [diff] [blame] | 1410 | config CMD_PCI_MPS |
| 1411 | bool "pci_mps - Configure PCI device MPS" |
| 1412 | depends on PCI |
| 1413 | help |
| 1414 | Enables PCI Express Maximum Packet Size (MPS) tuning. This |
| 1415 | command configures the PCI Express MPS of each endpoint to the |
| 1416 | largest value supported by all devices below the root complex. |
| 1417 | The Maximum Read Request Size will not be altered. This method is |
| 1418 | the same algorithm as used by Linux pci=pcie_bus_safe. |
| 1419 | |
Patrice Chotard | d5a8313 | 2018-10-24 14:10:17 +0200 | [diff] [blame] | 1420 | config CMD_PINMUX |
| 1421 | bool "pinmux - show pins muxing" |
Marek Behún | a70abcf | 2021-02-09 21:23:47 +0100 | [diff] [blame] | 1422 | depends on PINCTRL |
Patrice Chotard | d5a8313 | 2018-10-24 14:10:17 +0200 | [diff] [blame] | 1423 | default y if PINCTRL |
| 1424 | help |
| 1425 | Parse all available pin-controllers and show pins muxing. This |
| 1426 | is useful for debug purpoer to check the pin muxing and to know if |
| 1427 | a pin is configured as a GPIO or as an alternate function. |
| 1428 | |
Adam Ford | 577c40a | 2018-09-09 07:05:57 -0500 | [diff] [blame] | 1429 | config CMD_POWEROFF |
| 1430 | bool "poweroff" |
| 1431 | help |
| 1432 | Poweroff/Shutdown the system |
| 1433 | |
Simon Glass | b75dfd2 | 2017-08-04 16:34:39 -0600 | [diff] [blame] | 1434 | config CMD_READ |
| 1435 | bool "read - Read binary data from a partition" |
| 1436 | help |
| 1437 | Provides low-level access to the data in a partition. |
| 1438 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1439 | config CMD_REMOTEPROC |
| 1440 | bool "remoteproc" |
| 1441 | depends on REMOTEPROC |
| 1442 | help |
| 1443 | Support for Remote Processor control |
| 1444 | |
Simon Glass | 3bf926c | 2017-06-14 21:28:24 -0600 | [diff] [blame] | 1445 | config CMD_SATA |
| 1446 | bool "sata - Access SATA subsystem" |
Simon Glass | 10e40d5 | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 1447 | select SATA |
Simon Glass | 3bf926c | 2017-06-14 21:28:24 -0600 | [diff] [blame] | 1448 | help |
| 1449 | SATA (Serial Advanced Technology Attachment) is a serial bus |
| 1450 | standard for connecting to hard drives and other storage devices. |
| 1451 | This command provides information about attached devices and allows |
| 1452 | reading, writing and other operations. |
| 1453 | |
| 1454 | SATA replaces PATA (originally just ATA), which stands for Parallel AT |
| 1455 | Attachment, where AT refers to an IBM AT (Advanced Technology) |
| 1456 | computer released in 1984. |
| 1457 | |
Heinrich Schuchardt | 0c3fecd | 2018-02-14 08:05:44 +0100 | [diff] [blame] | 1458 | config CMD_SCSI |
| 1459 | bool "scsi - Access to SCSI devices" |
Heinrich Schuchardt | fa3f0cb | 2023-03-26 19:10:38 +0200 | [diff] [blame] | 1460 | depends on SCSI |
| 1461 | default y |
Heinrich Schuchardt | 0c3fecd | 2018-02-14 08:05:44 +0100 | [diff] [blame] | 1462 | help |
| 1463 | This provides a 'scsi' command which provides access to SCSI (Small |
| 1464 | Computer System Interface) devices. The command provides a way to |
| 1465 | scan the bus, reset the bus, read and write data and get information |
| 1466 | about devices. |
| 1467 | |
Simon Glass | efce244 | 2017-08-04 16:34:45 -0600 | [diff] [blame] | 1468 | config CMD_SDRAM |
| 1469 | bool "sdram - Print SDRAM configuration information" |
| 1470 | help |
| 1471 | Provides information about attached SDRAM. This assumed that the |
| 1472 | SDRAM has an EEPROM with information that can be read using the |
| 1473 | I2C bus. This is only available on some boards. |
| 1474 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1475 | config CMD_SF |
| 1476 | bool "sf" |
Tom Rini | a4298dd | 2019-05-29 17:01:28 -0400 | [diff] [blame] | 1477 | depends on DM_SPI_FLASH || SPI_FLASH |
Jagan Teki | c2af7fb | 2019-10-16 17:59:42 +0530 | [diff] [blame] | 1478 | default y if DM_SPI_FLASH |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1479 | help |
| 1480 | SPI Flash support |
| 1481 | |
Simon Glass | 719d36e | 2017-08-04 16:34:46 -0600 | [diff] [blame] | 1482 | config CMD_SF_TEST |
| 1483 | bool "sf test - Allow testing of SPI flash" |
Tom Rini | a4298dd | 2019-05-29 17:01:28 -0400 | [diff] [blame] | 1484 | depends on CMD_SF |
Simon Glass | 719d36e | 2017-08-04 16:34:46 -0600 | [diff] [blame] | 1485 | help |
| 1486 | Provides a way to test that SPI flash is working correctly. The |
| 1487 | test is destructive, in that an area of SPI flash must be provided |
| 1488 | for the test to use. Performance information is also provided, |
| 1489 | measuring the performance of reading, writing and erasing in |
| 1490 | Mbps (Million Bits Per Second). This value should approximately |
| 1491 | equal the SPI bus speed for a single-bit-wide SPI bus, assuming |
| 1492 | everything is working properly. |
| 1493 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1494 | config CMD_SPI |
Patrick Delaunay | c95e632 | 2019-02-27 15:20:37 +0100 | [diff] [blame] | 1495 | bool "sspi - Command to access spi device" |
Tom Rini | a4298dd | 2019-05-29 17:01:28 -0400 | [diff] [blame] | 1496 | depends on SPI |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1497 | help |
| 1498 | SPI utility command. |
| 1499 | |
Patrick Delaunay | c95e632 | 2019-02-27 15:20:37 +0100 | [diff] [blame] | 1500 | config DEFAULT_SPI_BUS |
| 1501 | int "default spi bus used by sspi command" |
| 1502 | depends on CMD_SPI |
| 1503 | default 0 |
| 1504 | |
| 1505 | config DEFAULT_SPI_MODE |
| 1506 | hex "default spi mode used by sspi command (see include/spi.h)" |
| 1507 | depends on CMD_SPI |
| 1508 | default 0 |
| 1509 | |
Robert Marko | 7f673bb | 2022-09-06 13:30:33 +0200 | [diff] [blame] | 1510 | config CMD_TEMPERATURE |
| 1511 | bool "temperature - display the temperature from thermal sensors" |
| 1512 | depends on DM_THERMAL |
| 1513 | help |
| 1514 | Provides a way to list thermal sensors and to get their readings. |
| 1515 | |
Simon Glass | 5605aa8 | 2017-08-04 16:35:00 -0600 | [diff] [blame] | 1516 | config CMD_TSI148 |
| 1517 | bool "tsi148 - Command to access tsi148 device" |
| 1518 | help |
| 1519 | This provides various sub-commands to initialise and configure the |
| 1520 | Turndra tsi148 device. See the command help for full details. |
| 1521 | |
Faiz Abbas | a539c8b | 2019-10-15 18:24:40 +0530 | [diff] [blame] | 1522 | config CMD_UFS |
| 1523 | bool "Enable UFS - Universal Flash Subsystem commands" |
| 1524 | depends on UFS |
| 1525 | help |
| 1526 | "This provides commands to initialise and configure universal flash |
| 1527 | subsystem devices" |
| 1528 | |
Simon Glass | 2a242e3 | 2017-08-04 16:35:01 -0600 | [diff] [blame] | 1529 | config CMD_UNIVERSE |
| 1530 | bool "universe - Command to set up the Turndra Universe controller" |
| 1531 | help |
| 1532 | This allows setting up the VMEbus provided by this controller. |
| 1533 | See the command help for full details. |
| 1534 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1535 | config CMD_USB |
| 1536 | bool "usb" |
Tom Rini | e8d3eaa | 2021-07-09 10:11:55 -0400 | [diff] [blame] | 1537 | depends on USB_HOST |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1538 | help |
| 1539 | USB support. |
| 1540 | |
Stefan Agner | 2f00569 | 2017-08-16 11:00:53 -0700 | [diff] [blame] | 1541 | config CMD_USB_SDP |
| 1542 | bool "sdp" |
| 1543 | select USB_FUNCTION_SDP |
| 1544 | help |
| 1545 | Enables the command "sdp" which is used to have U-Boot emulating the |
| 1546 | Serial Download Protocol (SDP) via USB. |
Michal Simek | 6e7bdde | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 1547 | |
Eddie Cai | 453c95e | 2017-12-15 08:17:11 +0800 | [diff] [blame] | 1548 | config CMD_ROCKUSB |
| 1549 | bool "rockusb" |
| 1550 | depends on USB_FUNCTION_ROCKUSB |
| 1551 | help |
Michal Simek | 6e7bdde | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 1552 | Rockusb protocol is widely used by Rockchip SoC based devices. It can |
Eddie Cai | 453c95e | 2017-12-15 08:17:11 +0800 | [diff] [blame] | 1553 | read/write info, image to/from devices. This enable rockusb command |
| 1554 | support to communication with rockusb device. for more detail about |
| 1555 | this command, please read doc/README.rockusb. |
Stefan Agner | 2f00569 | 2017-08-16 11:00:53 -0700 | [diff] [blame] | 1556 | |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1557 | config CMD_USB_MASS_STORAGE |
| 1558 | bool "UMS usb mass storage" |
Tom Rini | 123dc51 | 2021-05-22 08:47:16 -0400 | [diff] [blame] | 1559 | depends on USB_GADGET_DOWNLOAD |
Lukasz Majewski | e4d4604 | 2018-01-29 19:28:02 +0100 | [diff] [blame] | 1560 | select USB_FUNCTION_MASS_STORAGE |
Patrick Delaunay | 6b8d9c9 | 2021-06-04 18:51:46 +0200 | [diff] [blame] | 1561 | depends on BLK && USB_GADGET |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1562 | help |
Patrick Delaunay | 6b8d9c9 | 2021-06-04 18:51:46 +0200 | [diff] [blame] | 1563 | Enables the command "ums" and the USB mass storage support to the |
| 1564 | export a block device: U-Boot, the USB device, acts as a simple |
| 1565 | external hard drive plugged on the host USB port. |
Simon Glass | 0c19b4d | 2017-08-04 16:34:28 -0600 | [diff] [blame] | 1566 | |
Svyatoslav Ryhel | a57adac | 2023-03-20 21:01:43 +0200 | [diff] [blame] | 1567 | config CMD_UMS_ABORT_KEYED |
| 1568 | bool "UMS abort with any key" |
| 1569 | depends on CMD_USB_MASS_STORAGE |
| 1570 | help |
| 1571 | Allow interruption of usb mass storage run with any key pressed. |
| 1572 | |
Anastasiia Lukianenko | 722bc5b | 2020-08-06 12:42:55 +0300 | [diff] [blame] | 1573 | config CMD_PVBLOCK |
| 1574 | bool "Xen para-virtualized block device" |
| 1575 | depends on XEN |
| 1576 | select PVBLOCK |
| 1577 | help |
| 1578 | Xen para-virtualized block device support |
| 1579 | |
Tuomas Tynkkynen | 78e1290 | 2018-10-15 02:21:12 -0700 | [diff] [blame] | 1580 | config CMD_VIRTIO |
| 1581 | bool "virtio" |
| 1582 | depends on VIRTIO |
| 1583 | default y if VIRTIO |
| 1584 | help |
| 1585 | VirtIO block device support |
| 1586 | |
Michael Walle | 82a00be | 2019-04-06 02:24:02 +0200 | [diff] [blame] | 1587 | config CMD_WDT |
| 1588 | bool "wdt" |
| 1589 | depends on WDT |
| 1590 | help |
| 1591 | This provides commands to control the watchdog timer devices. |
| 1592 | |
Rasmus Villemoes | 8311ac5 | 2023-03-02 09:12:22 +0100 | [diff] [blame] | 1593 | config CMD_WRITE |
| 1594 | bool "write - Write binary data to a partition" |
| 1595 | help |
| 1596 | Provides low-level write access to a partition. |
| 1597 | |
Mario Six | 37c4a5f | 2018-08-09 14:51:21 +0200 | [diff] [blame] | 1598 | config CMD_AXI |
| 1599 | bool "axi" |
| 1600 | depends on AXI |
| 1601 | help |
| 1602 | Enable the command "axi" for accessing AXI (Advanced eXtensible |
| 1603 | Interface) busses, a on-chip interconnect specification for managing |
| 1604 | functional blocks in SoC designs, which is also often used in designs |
| 1605 | involving FPGAs (e.g. communication with IP cores in Xilinx FPGAs). |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1606 | endmenu |
| 1607 | |
| 1608 | |
| 1609 | menu "Shell scripting commands" |
| 1610 | |
Roger Knecht | 690a1d6 | 2022-09-03 11:34:53 +0000 | [diff] [blame] | 1611 | config CMD_CAT |
| 1612 | bool "cat" |
| 1613 | help |
| 1614 | Print file to standard output |
| 1615 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1616 | config CMD_ECHO |
| 1617 | bool "echo" |
| 1618 | default y |
| 1619 | help |
| 1620 | Echo args to console |
| 1621 | |
| 1622 | config CMD_ITEST |
| 1623 | bool "itest" |
| 1624 | default y |
| 1625 | help |
| 1626 | Return true/false on integer compare. |
| 1627 | |
| 1628 | config CMD_SOURCE |
| 1629 | bool "source" |
| 1630 | default y |
| 1631 | help |
| 1632 | Run script from memory |
| 1633 | |
| 1634 | config CMD_SETEXPR |
| 1635 | bool "setexpr" |
| 1636 | default y |
| 1637 | help |
| 1638 | Evaluate boolean and math expressions and store the result in an env |
| 1639 | variable. |
| 1640 | Also supports loading the value at a memory location into a variable. |
| 1641 | If CONFIG_REGEX is enabled, setexpr also supports a gsub function. |
| 1642 | |
Roland Gaudig | f4f8d8b | 2021-07-23 12:29:21 +0000 | [diff] [blame] | 1643 | config CMD_SETEXPR_FMT |
| 1644 | bool "setexpr_fmt" |
Roland Gaudig | f4f8d8b | 2021-07-23 12:29:21 +0000 | [diff] [blame] | 1645 | depends on CMD_SETEXPR |
| 1646 | help |
| 1647 | Evaluate format string expression and store result in an environment |
| 1648 | variable. |
| 1649 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1650 | endmenu |
| 1651 | |
Ruslan Trofymenko | 17030c7 | 2019-07-05 15:37:33 +0300 | [diff] [blame] | 1652 | menu "Android support commands" |
| 1653 | |
| 1654 | config CMD_AB_SELECT |
| 1655 | bool "ab_select" |
Ruslan Trofymenko | 17030c7 | 2019-07-05 15:37:33 +0300 | [diff] [blame] | 1656 | depends on ANDROID_AB |
| 1657 | help |
| 1658 | On Android devices with more than one boot slot (multiple copies of |
| 1659 | the kernel and system images) this provides a command to select which |
| 1660 | slot should be used to boot from and register the boot attempt. This |
| 1661 | is used by the new A/B update model where one slot is updated in the |
| 1662 | background while running from the other slot. |
| 1663 | |
| 1664 | endmenu |
| 1665 | |
Michal Simek | 3b3ea2c | 2018-02-26 16:01:02 +0100 | [diff] [blame] | 1666 | if NET |
| 1667 | |
Joe Hershberger | d7a45ea | 2018-04-13 15:26:30 -0500 | [diff] [blame] | 1668 | menuconfig CMD_NET |
| 1669 | bool "Network commands" |
| 1670 | default y |
Adam Ford | d7869b2 | 2018-07-20 23:03:57 -0500 | [diff] [blame] | 1671 | imply NETDEVICES |
Joe Hershberger | d7a45ea | 2018-04-13 15:26:30 -0500 | [diff] [blame] | 1672 | |
| 1673 | if CMD_NET |
| 1674 | |
| 1675 | config CMD_BOOTP |
| 1676 | bool "bootp" |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1677 | default y |
| 1678 | help |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1679 | bootp - boot image via network using BOOTP/TFTP protocol |
Joe Hershberger | d7a45ea | 2018-04-13 15:26:30 -0500 | [diff] [blame] | 1680 | |
Joe Hershberger | e88b256 | 2018-04-13 15:26:33 -0500 | [diff] [blame] | 1681 | config CMD_DHCP |
| 1682 | bool "dhcp" |
| 1683 | depends on CMD_BOOTP |
| 1684 | help |
| 1685 | Boot image via network using DHCP/TFTP protocol |
| 1686 | |
Sean Edmond | 7d01889 | 2023-04-11 10:48:47 -0700 | [diff] [blame] | 1687 | config CMD_DHCP6 |
| 1688 | bool "dhcp6" |
| 1689 | depends on IPV6 |
| 1690 | help |
| 1691 | Boot image via network using DHCPv6/TFTP protocol using IPv6. |
| 1692 | |
| 1693 | Will perform 4-message exchange with DHCPv6 server, requesting |
| 1694 | the minimum required options to TFTP boot. Complies with RFC 8415. |
| 1695 | |
Tom Rini | a542e43 | 2022-02-25 11:19:50 -0500 | [diff] [blame] | 1696 | config BOOTP_MAY_FAIL |
| 1697 | bool "Allow for the BOOTP/DHCP server to not be found" |
| 1698 | depends on CMD_BOOTP |
| 1699 | help |
| 1700 | If the DHCP server is not found after the configured retry count, the |
| 1701 | call will fail instead of starting over. This can be used to fail |
| 1702 | over to Link-local IP address configuration if the DHCP server is not |
| 1703 | available. |
| 1704 | |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1705 | config BOOTP_BOOTPATH |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1706 | bool "Request & store 'rootpath' from BOOTP/DHCP server" |
Joe Hershberger | 3dfbc53 | 2018-04-13 15:26:37 -0500 | [diff] [blame] | 1707 | default y |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1708 | depends on CMD_BOOTP |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1709 | help |
| 1710 | Even though the config is called BOOTP_BOOTPATH, it stores the |
| 1711 | path in the variable 'rootpath'. |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1712 | |
Tom Rini | a542e43 | 2022-02-25 11:19:50 -0500 | [diff] [blame] | 1713 | config BOOTP_VENDOREX |
| 1714 | bool "Support vendor extensions from BOOTP/DHCP server" |
| 1715 | depends on CMD_BOOTP |
| 1716 | |
| 1717 | config BOOTP_BOOTFILESIZE |
| 1718 | bool "Request & store 'bootfilesize' from BOOTP/DHCP server" |
| 1719 | depends on CMD_BOOTP |
| 1720 | |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1721 | config BOOTP_DNS |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1722 | bool "Request & store 'dnsip' from BOOTP/DHCP server" |
Joe Hershberger | 3dfbc53 | 2018-04-13 15:26:37 -0500 | [diff] [blame] | 1723 | default y |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1724 | depends on CMD_BOOTP |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1725 | help |
| 1726 | The primary DNS server is stored as 'dnsip'. If two servers are |
| 1727 | returned, you must set BOOTP_DNS2 to store that second server IP |
| 1728 | also. |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1729 | |
Joe Hershberger | 80449c0 | 2018-04-13 15:26:35 -0500 | [diff] [blame] | 1730 | config BOOTP_DNS2 |
| 1731 | bool "Store 'dnsip2' from BOOTP/DHCP server" |
| 1732 | depends on BOOTP_DNS |
| 1733 | help |
| 1734 | If a DHCP client requests the DNS server IP from a DHCP server, |
| 1735 | it is possible that more than one DNS serverip is offered to the |
| 1736 | client. If CONFIG_BOOTP_DNS2 is enabled, the secondary DNS |
| 1737 | server IP will be stored in the additional environment |
| 1738 | variable "dnsip2". The first DNS serverip is always |
| 1739 | stored in the variable "dnsip", when BOOTP_DNS is defined. |
| 1740 | |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1741 | config BOOTP_GATEWAY |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1742 | bool "Request & store 'gatewayip' from BOOTP/DHCP server" |
Joe Hershberger | 3dfbc53 | 2018-04-13 15:26:37 -0500 | [diff] [blame] | 1743 | default y |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1744 | depends on CMD_BOOTP |
| 1745 | |
| 1746 | config BOOTP_HOSTNAME |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1747 | bool "Request & store 'hostname' from BOOTP/DHCP server" |
Joe Hershberger | 3dfbc53 | 2018-04-13 15:26:37 -0500 | [diff] [blame] | 1748 | default y |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1749 | depends on CMD_BOOTP |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1750 | help |
| 1751 | The name may or may not be qualified with the local domain name. |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1752 | |
Alexander Graf | bdce340 | 2018-06-15 10:29:28 +0200 | [diff] [blame] | 1753 | config BOOTP_PREFER_SERVERIP |
| 1754 | bool "serverip variable takes precedent over DHCP server IP." |
| 1755 | depends on CMD_BOOTP |
| 1756 | help |
| 1757 | By default a BOOTP/DHCP reply will overwrite the 'serverip' variable. |
| 1758 | |
| 1759 | With this option enabled, the 'serverip' variable in the environment |
| 1760 | takes precedence over DHCP server IP and will only be set by the DHCP |
| 1761 | server if not already set in the environment. |
| 1762 | |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1763 | config BOOTP_SUBNETMASK |
Joe Hershberger | 8df69d9 | 2018-04-13 15:26:34 -0500 | [diff] [blame] | 1764 | bool "Request & store 'netmask' from BOOTP/DHCP server" |
Joe Hershberger | 3dfbc53 | 2018-04-13 15:26:37 -0500 | [diff] [blame] | 1765 | default y |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1766 | depends on CMD_BOOTP |
| 1767 | |
Tom Rini | a542e43 | 2022-02-25 11:19:50 -0500 | [diff] [blame] | 1768 | config BOOTP_NISDOMAIN |
| 1769 | bool "Request & store 'nisdomain' from BOOTP/DHCP server" |
| 1770 | depends on CMD_BOOTP |
| 1771 | |
Chris Packham | 9b23c73 | 2018-05-03 20:19:02 +1200 | [diff] [blame] | 1772 | config BOOTP_NTPSERVER |
| 1773 | bool "Request & store 'ntpserverip' from BOOTP/DHCP server" |
| 1774 | depends on CMD_BOOTP |
| 1775 | |
Tom Rini | a542e43 | 2022-02-25 11:19:50 -0500 | [diff] [blame] | 1776 | config BOOTP_TIMEOFFSET |
| 1777 | bool "Request & store 'timeoffset' from BOOTP/DHCP server" |
| 1778 | depends on CMD_BOOTP && CMD_SNTP |
| 1779 | |
Ramon Fried | 3eaac63 | 2019-07-18 21:43:30 +0300 | [diff] [blame] | 1780 | config CMD_PCAP |
| 1781 | bool "pcap capture" |
| 1782 | help |
| 1783 | Selecting this will allow capturing all Ethernet packets and store |
| 1784 | them in physical memory in a PCAP formated file, |
| 1785 | later to be analyzed by PCAP reader application (IE. WireShark). |
| 1786 | |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1787 | config BOOTP_PXE |
Joe Hershberger | 2b9f486 | 2018-04-13 15:26:36 -0500 | [diff] [blame] | 1788 | bool "Send PXE client arch to BOOTP/DHCP server" |
Joe Hershberger | 3dfbc53 | 2018-04-13 15:26:37 -0500 | [diff] [blame] | 1789 | default y |
Joe Hershberger | 2b9f486 | 2018-04-13 15:26:36 -0500 | [diff] [blame] | 1790 | depends on CMD_BOOTP && CMD_PXE |
| 1791 | help |
| 1792 | Supported for ARM, ARM64, and x86 for now. |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1793 | |
| 1794 | config BOOTP_PXE_CLIENTARCH |
| 1795 | hex |
Joe Hershberger | 2b9f486 | 2018-04-13 15:26:36 -0500 | [diff] [blame] | 1796 | depends on BOOTP_PXE |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1797 | default 0x16 if ARM64 |
| 1798 | default 0x15 if ARM |
| 1799 | default 0 if X86 |
| 1800 | |
| 1801 | config BOOTP_VCI_STRING |
| 1802 | string |
| 1803 | depends on CMD_BOOTP |
Michal Simek | 4bbd6b1 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 1804 | default "U-Boot.armv7" if CPU_V7A || CPU_V7M || CPU_V7R |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1805 | default "U-Boot.armv8" if ARM64 |
| 1806 | default "U-Boot.arm" if ARM |
| 1807 | default "U-Boot" |
| 1808 | |
Sean Edmond | 7d01889 | 2023-04-11 10:48:47 -0700 | [diff] [blame] | 1809 | if CMD_DHCP6 |
| 1810 | |
| 1811 | config DHCP6_PXE_CLIENTARCH |
| 1812 | hex |
| 1813 | default 0x16 if ARM64 |
| 1814 | default 0x15 if ARM |
| 1815 | default 0xFF |
| 1816 | |
| 1817 | config DHCP6_PXE_DHCP_OPTION |
| 1818 | bool "Request & store 'pxe_configfile' from DHCP6 server" |
| 1819 | |
| 1820 | config DHCP6_ENTERPRISE_ID |
| 1821 | int "Enterprise ID to send in DHCPv6 Vendor Class Option" |
| 1822 | default 0 |
| 1823 | |
| 1824 | endif |
| 1825 | |
Joe Hershberger | d7a45ea | 2018-04-13 15:26:30 -0500 | [diff] [blame] | 1826 | config CMD_TFTPBOOT |
| 1827 | bool "tftpboot" |
| 1828 | default y |
| 1829 | help |
Heinrich Schuchardt | 651031e | 2022-09-04 09:08:11 +0200 | [diff] [blame] | 1830 | tftpboot - load file via network using TFTP protocol |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1831 | |
| 1832 | config CMD_TFTPPUT |
| 1833 | bool "tftp put" |
Joe Hershberger | d7a45ea | 2018-04-13 15:26:30 -0500 | [diff] [blame] | 1834 | depends on CMD_TFTPBOOT |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1835 | help |
| 1836 | TFTP put command, for uploading files to a server |
| 1837 | |
| 1838 | config CMD_TFTPSRV |
| 1839 | bool "tftpsrv" |
Joe Hershberger | d7a45ea | 2018-04-13 15:26:30 -0500 | [diff] [blame] | 1840 | depends on CMD_TFTPBOOT |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1841 | help |
| 1842 | Act as a TFTP server and boot the first received file |
| 1843 | |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1844 | config NET_TFTP_VARS |
| 1845 | bool "Control TFTP timeout and count through environment" |
| 1846 | depends on CMD_TFTPBOOT |
| 1847 | default y |
| 1848 | help |
| 1849 | If set, allows controlling the TFTP timeout through the |
| 1850 | environment variable tftptimeout, and the TFTP maximum |
| 1851 | timeout count through the variable tftptimeoutcountmax. |
| 1852 | If unset, timeout and maximum are hard-defined as 1 second |
| 1853 | and 10 timouts per TFTP transfer. |
| 1854 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1855 | config CMD_RARP |
| 1856 | bool "rarpboot" |
| 1857 | help |
| 1858 | Boot image via network using RARP/TFTP protocol |
| 1859 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1860 | config CMD_NFS |
| 1861 | bool "nfs" |
| 1862 | default y |
| 1863 | help |
| 1864 | Boot image via network using NFS protocol. |
| 1865 | |
Tom Rini | eeda762 | 2022-03-11 09:12:05 -0500 | [diff] [blame] | 1866 | config NFS_TIMEOUT |
| 1867 | int "Timeout in milliseconds for NFS mounts" |
| 1868 | depends on CMD_NFS |
| 1869 | default 2000 |
| 1870 | help |
| 1871 | Timeout in milliseconds used in NFS protocol. If you encounter |
| 1872 | "ERROR: Cannot umount" in nfs command, try longer timeout such as |
| 1873 | 10000. |
| 1874 | |
Tom Rini | bf904ea | 2022-06-13 22:57:35 -0400 | [diff] [blame] | 1875 | config SYS_DISABLE_AUTOLOAD |
| 1876 | bool "Disable automatically loading files over the network" |
| 1877 | depends on CMD_BOOTP || CMD_DHCP || CMD_NFS || CMD_RARP |
| 1878 | help |
| 1879 | Typically, commands such as "dhcp" will attempt to automatically |
| 1880 | load a file from the network, once the initial network configuration |
| 1881 | is complete. Enable this option to disable this behavior and instead |
| 1882 | require files to be loaded over the network by subsequent commands. |
| 1883 | |
Ying-Chun Liu (PaulLiu) | cfbae48 | 2022-11-08 14:17:29 +0800 | [diff] [blame] | 1884 | config CMD_WGET |
| 1885 | bool "wget" |
Michael Walle | 20422d6 | 2022-12-28 16:27:15 +0100 | [diff] [blame] | 1886 | select PROT_TCP |
Ying-Chun Liu (PaulLiu) | cfbae48 | 2022-11-08 14:17:29 +0800 | [diff] [blame] | 1887 | help |
| 1888 | wget is a simple command to download kernel, or other files, |
| 1889 | from a http server over TCP. |
| 1890 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 1891 | config CMD_MII |
| 1892 | bool "mii" |
Ramon Fried | 7d9701d | 2019-09-13 18:25:03 +0300 | [diff] [blame] | 1893 | imply CMD_MDIO |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 1894 | help |
Ramon Fried | 7d9701d | 2019-09-13 18:25:03 +0300 | [diff] [blame] | 1895 | If set, allows 802.3(clause 22) MII Management functions interface access |
| 1896 | The management interface specified in Clause 22 provides |
| 1897 | a simple, two signal, serial interface to connect a |
| 1898 | Station Management entity and a managed PHY for providing access |
| 1899 | to management parameters and services. |
| 1900 | The interface is referred to as the MII management interface. |
| 1901 | |
Tom Rini | cc386f1 | 2022-03-18 08:38:27 -0400 | [diff] [blame] | 1902 | config MII_INIT |
| 1903 | bool "Call mii_init() in the mii command" |
| 1904 | depends on CMD_MII && (MPC8XX_FEC || FSLDMAFE || MCFFEC) |
| 1905 | |
Ramon Fried | 7d9701d | 2019-09-13 18:25:03 +0300 | [diff] [blame] | 1906 | config CMD_MDIO |
| 1907 | bool "mdio" |
| 1908 | depends on PHYLIB |
| 1909 | help |
| 1910 | If set, allows Enable 802.3(clause 45) MDIO interface registers access |
| 1911 | The MDIO interface is orthogonal to the MII interface and extends |
| 1912 | it by adding access to more registers through indirect addressing. |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 1913 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1914 | config CMD_PING |
| 1915 | bool "ping" |
| 1916 | help |
| 1917 | Send ICMP ECHO_REQUEST to network host |
| 1918 | |
Viacheslav Mitrofanov | eeb0a2c | 2022-12-02 12:18:08 +0300 | [diff] [blame] | 1919 | config CMD_PING6 |
| 1920 | bool "ping6" |
| 1921 | depends on IPV6 |
| 1922 | default y if (CMD_PING && IPV6) |
| 1923 | help |
| 1924 | Send ICMPv6 ECHO_REQUEST to network host |
| 1925 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1926 | config CMD_CDP |
| 1927 | bool "cdp" |
| 1928 | help |
| 1929 | Perform CDP network configuration |
| 1930 | |
| 1931 | config CMD_SNTP |
| 1932 | bool "sntp" |
Philippe Reynes | 912ece4 | 2020-09-18 14:13:02 +0200 | [diff] [blame] | 1933 | select PROT_UDP |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1934 | help |
| 1935 | Synchronize RTC via network |
| 1936 | |
| 1937 | config CMD_DNS |
| 1938 | bool "dns" |
| 1939 | help |
| 1940 | Lookup the IP of a hostname |
| 1941 | |
| 1942 | config CMD_LINK_LOCAL |
| 1943 | bool "linklocal" |
Joe Hershberger | 6f0dc0c | 2018-04-30 12:45:22 -0500 | [diff] [blame] | 1944 | select LIB_RAND |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1945 | help |
| 1946 | Acquire a network IP address using the link-local protocol |
| 1947 | |
Samuel Mendoza-Jonas | 4b290d4 | 2022-08-08 21:46:04 +0930 | [diff] [blame] | 1948 | config CMD_NCSI |
| 1949 | bool "ncsi" |
| 1950 | depends on PHY_NCSI |
| 1951 | help |
| 1952 | Manually configure the attached NIC via NC-SI. |
| 1953 | Normally this happens automatically before other network |
| 1954 | operations. |
| 1955 | |
Ehsan Mohandesi | 6de98b6 | 2023-04-21 17:08:21 -0700 | [diff] [blame] | 1956 | config IPV6_ROUTER_DISCOVERY |
| 1957 | bool "Do IPv6 router discovery" |
| 1958 | depends on IPV6 |
| 1959 | help |
| 1960 | Will automatically perform router solicitation on first IPv6 |
| 1961 | network operation |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1962 | endif |
| 1963 | |
Simon Glass | ef07220 | 2017-05-17 03:25:17 -0600 | [diff] [blame] | 1964 | config CMD_ETHSW |
| 1965 | bool "ethsw" |
| 1966 | help |
| 1967 | Allow control of L2 Ethernet switch commands. These are supported |
| 1968 | by the vsc9953 Ethernet driver at present. Sub-commands allow |
| 1969 | operations such as enabling / disabling a port and |
| 1970 | viewing/maintaining the filtering database (FDB) |
| 1971 | |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1972 | config CMD_PXE |
| 1973 | bool "pxe" |
John Keeping | be43a35 | 2022-07-28 11:19:15 +0100 | [diff] [blame] | 1974 | select PXE_UTILS |
Joe Hershberger | 92fa44d | 2018-04-13 15:26:32 -0500 | [diff] [blame] | 1975 | help |
| 1976 | Boot image via network using PXE protocol |
Michal Simek | 3b3ea2c | 2018-02-26 16:01:02 +0100 | [diff] [blame] | 1977 | |
Lothar Felten | d8970da | 2018-06-22 22:29:54 +0200 | [diff] [blame] | 1978 | config CMD_WOL |
| 1979 | bool "wol" |
| 1980 | help |
| 1981 | Wait for wake-on-lan Magic Packet |
| 1982 | |
Joe Hershberger | d7a45ea | 2018-04-13 15:26:30 -0500 | [diff] [blame] | 1983 | endif |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 1984 | |
| 1985 | menu "Misc commands" |
| 1986 | |
Simon Glass | a554ee7 | 2023-02-07 14:33:53 -0700 | [diff] [blame] | 1987 | config CMD_2048 |
| 1988 | bool "Play 2048" |
| 1989 | help |
| 1990 | This is a simple sliding block puzzle game designed by Italian web |
| 1991 | developer Gabriele Cirulli. The game's objective is to slide numbered |
| 1992 | tiles on a grid to combine them to create a tile with the number |
| 1993 | 2048. |
| 1994 | |
| 1995 | This needs ANSI support on your terminal to work. It is not fully |
| 1996 | functional on a video device. |
| 1997 | |
Simon Glass | 0f71025 | 2017-04-26 22:27:55 -0600 | [diff] [blame] | 1998 | config CMD_BMP |
| 1999 | bool "Enable 'bmp' command" |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 2000 | depends on VIDEO |
Simon Glass | 0f71025 | 2017-04-26 22:27:55 -0600 | [diff] [blame] | 2001 | help |
Andrius Štikonas | 60a9aeb | 2019-09-23 22:43:41 +0100 | [diff] [blame] | 2002 | This provides a way to obtain information about a BMP-format image |
Simon Glass | 0f71025 | 2017-04-26 22:27:55 -0600 | [diff] [blame] | 2003 | and to display it. BMP (which presumably stands for BitMaP) is a |
| 2004 | file format defined by Microsoft which supports images of various |
| 2005 | depths, formats and compression methods. Headers on the file |
| 2006 | determine the formats used. This command can be used by first loading |
| 2007 | the image into RAM, then using this command to look at it or display |
| 2008 | it. |
| 2009 | |
Alex Kiernan | b11ed7d | 2018-05-12 05:49:47 +0000 | [diff] [blame] | 2010 | config CMD_BOOTCOUNT |
| 2011 | bool "bootcount" |
| 2012 | depends on BOOTCOUNT_LIMIT |
| 2013 | help |
| 2014 | Enable the bootcount command, which allows interrogation and |
| 2015 | reset of the bootcounter. |
| 2016 | |
Simon Glass | 4893e34 | 2017-04-26 22:27:56 -0600 | [diff] [blame] | 2017 | config CMD_BSP |
| 2018 | bool "Enable board-specific commands" |
| 2019 | help |
| 2020 | (deprecated: instead, please define a Kconfig option for each command) |
| 2021 | |
| 2022 | Some boards have board-specific commands which are only enabled |
| 2023 | during developemnt and need to be turned off for production. This |
| 2024 | option provides a way to control this. The commands that are enabled |
| 2025 | vary depending on the board. |
| 2026 | |
Eric Nelson | e40cf34 | 2016-03-28 10:05:44 -0700 | [diff] [blame] | 2027 | config CMD_BLOCK_CACHE |
| 2028 | bool "blkcache - control and stats for block cache" |
| 2029 | depends on BLOCK_CACHE |
| 2030 | default y if BLOCK_CACHE |
| 2031 | help |
| 2032 | Enable the blkcache command, which can be used to control the |
| 2033 | operation of the cache functions. |
| 2034 | This is most useful when fine-tuning the operation of the cache |
| 2035 | during development, but also allows the cache to be disabled when |
| 2036 | it might hurt performance (e.g. when using the ums command). |
| 2037 | |
Tobias Waldekranz | bb56da1 | 2023-02-16 16:33:52 +0100 | [diff] [blame] | 2038 | config CMD_BLKMAP |
| 2039 | bool "blkmap - Composable virtual block devices" |
| 2040 | depends on BLKMAP |
| 2041 | default y if BLKMAP |
| 2042 | help |
| 2043 | Create virtual block devices that are backed by various sources, |
| 2044 | e.g. RAM, or parts of an existing block device. Though much more |
| 2045 | rudimentary, it borrows a lot of ideas from Linux's device mapper |
| 2046 | subsystem. |
| 2047 | |
| 2048 | Example use-cases: |
| 2049 | - Treat a region of RAM as a block device, i.e. a RAM disk. This let's |
| 2050 | you extract files from filesystem images stored in RAM (perhaps as a |
| 2051 | result of a TFTP transfer). |
| 2052 | - Create a virtual partition on an existing device. This let's you |
| 2053 | access filesystems that aren't stored at an exact partition |
| 2054 | boundary. A common example is a filesystem image embedded in an FIT |
| 2055 | image. |
| 2056 | |
Philippe Reynes | 325141a | 2020-07-24 18:19:47 +0200 | [diff] [blame] | 2057 | config CMD_BUTTON |
| 2058 | bool "button" |
| 2059 | depends on BUTTON |
| 2060 | default y if BUTTON |
| 2061 | help |
| 2062 | Enable the 'button' command which allows to get the status of |
| 2063 | buttons supported by the board. The buttonss can be listed with |
| 2064 | 'button list' and state can be known with 'button <label>'. |
| 2065 | Any button drivers can be controlled with this command, e.g. |
| 2066 | button_gpio. |
| 2067 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2068 | config CMD_CACHE |
| 2069 | bool "icache or dcache" |
| 2070 | help |
| 2071 | Enable the "icache" and "dcache" commands |
| 2072 | |
Heinrich Schuchardt | 29cfc09 | 2018-09-07 19:43:11 +0200 | [diff] [blame] | 2073 | config CMD_CONITRACE |
| 2074 | bool "conitrace - trace console input codes" |
| 2075 | help |
| 2076 | Enable the 'conitrace' command which displays the codes received |
| 2077 | from the console input as hexadecimal numbers. |
| 2078 | |
Anatolij Gustschin | 4e92e60 | 2018-12-01 10:47:20 +0100 | [diff] [blame] | 2079 | config CMD_CLS |
| 2080 | bool "Enable clear screen command 'cls'" |
John Keeping | 2fdc4c0 | 2022-11-23 17:16:14 +0000 | [diff] [blame] | 2081 | default y if LCD || VIDEO |
Anatolij Gustschin | 4e92e60 | 2018-12-01 10:47:20 +0100 | [diff] [blame] | 2082 | help |
| 2083 | Enable the 'cls' command which clears the screen contents |
| 2084 | on video frame buffer. |
| 2085 | |
AKASHI Takahiro | 59df7e7 | 2019-02-25 15:54:38 +0900 | [diff] [blame] | 2086 | config CMD_EFIDEBUG |
| 2087 | bool "efidebug - display/configure UEFI environment" |
| 2088 | depends on EFI_LOADER |
Heinrich Schuchardt | 64b5ba4 | 2019-05-11 09:53:33 +0200 | [diff] [blame] | 2089 | select EFI_DEVICE_PATH_TO_TEXT |
AKASHI Takahiro | 59df7e7 | 2019-02-25 15:54:38 +0900 | [diff] [blame] | 2090 | help |
| 2091 | Enable the 'efidebug' command which provides a subset of UEFI |
| 2092 | shell utility with simplified functionality. It will be useful |
| 2093 | particularly for managing boot parameters as well as examining |
| 2094 | various EFI status for debugging. |
| 2095 | |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 2096 | config CMD_EFICONFIG |
| 2097 | bool "eficonfig - provide menu-driven uefi variables maintenance interface" |
Heinrich Schuchardt | 8925f0e | 2023-02-08 09:57:00 +0100 | [diff] [blame] | 2098 | default y if !HAS_BOARD_SIZE_LIMIT |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 2099 | depends on CMD_BOOTEFI_BOOTMGR |
Heinrich Schuchardt | 75d494d | 2023-02-08 13:56:33 +0100 | [diff] [blame] | 2100 | select MENU |
Masahisa Kojima | 87d7914 | 2022-09-12 17:33:50 +0900 | [diff] [blame] | 2101 | help |
| 2102 | Enable the 'eficonfig' command which provides the menu-driven UEFI |
| 2103 | variable maintenance interface. |
| 2104 | |
Heinrich Schuchardt | dab8788 | 2018-12-26 17:20:35 +0100 | [diff] [blame] | 2105 | config CMD_EXCEPTION |
| 2106 | bool "exception - raise exception" |
Heinrich Schuchardt | 3a5ec03 | 2020-11-12 00:29:57 +0100 | [diff] [blame] | 2107 | depends on ARM || RISCV || SANDBOX || X86 |
Heinrich Schuchardt | dab8788 | 2018-12-26 17:20:35 +0100 | [diff] [blame] | 2108 | help |
| 2109 | Enable the 'exception' command which allows to raise an exception. |
| 2110 | |
Simon Glass | ffe2052 | 2017-04-10 11:34:59 -0600 | [diff] [blame] | 2111 | config CMD_LED |
| 2112 | bool "led" |
Jan Kiszka | 2ab6e74 | 2019-01-03 09:08:42 +0100 | [diff] [blame] | 2113 | depends on LED |
Simon Glass | ffe2052 | 2017-04-10 11:34:59 -0600 | [diff] [blame] | 2114 | default y if LED |
| 2115 | help |
| 2116 | Enable the 'led' command which allows for control of LEDs supported |
| 2117 | by the board. The LEDs can be listed with 'led list' and controlled |
| 2118 | with led on/off/togle/blink. Any LED drivers can be controlled with |
| 2119 | this command, e.g. led_gpio. |
| 2120 | |
Simon Glass | e158c94 | 2023-02-01 13:19:24 -0700 | [diff] [blame] | 2121 | config CMD_INI |
| 2122 | bool "ini" |
| 2123 | help |
| 2124 | Enable the 'ini' command which allows a .ini file to be parsed and |
| 2125 | placed into environment variables. Please check the source code for |
| 2126 | this as there is no documentation. |
| 2127 | |
Chris Packham | c9032ce | 2017-04-29 15:20:28 +1200 | [diff] [blame] | 2128 | config CMD_DATE |
| 2129 | bool "date" |
| 2130 | default y if DM_RTC |
AKASHI Takahiro | 05429b6 | 2019-11-13 09:44:49 +0900 | [diff] [blame] | 2131 | select LIB_DATE |
Chris Packham | c9032ce | 2017-04-29 15:20:28 +1200 | [diff] [blame] | 2132 | help |
| 2133 | Enable the 'date' command for getting/setting the time/date in RTC |
| 2134 | devices. |
| 2135 | |
Rasmus Villemoes | 803a859 | 2020-07-06 22:01:15 +0200 | [diff] [blame] | 2136 | config CMD_RTC |
| 2137 | bool "rtc" |
| 2138 | depends on DM_RTC |
| 2139 | help |
| 2140 | Enable the 'rtc' command for low-level access to RTC devices. |
| 2141 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2142 | config CMD_TIME |
| 2143 | bool "time" |
| 2144 | help |
| 2145 | Run commands and summarize execution time. |
| 2146 | |
Simon Glass | d91a9d7 | 2017-05-17 03:25:23 -0600 | [diff] [blame] | 2147 | config CMD_GETTIME |
| 2148 | bool "gettime - read elapsed time" |
| 2149 | help |
| 2150 | Enable the 'gettime' command which reads the elapsed time since |
| 2151 | U-Boot started running. This shows the time in seconds and |
| 2152 | milliseconds. See also the 'bootstage' command which provides more |
| 2153 | flexibility for boot timing. |
| 2154 | |
Samuel Dionne-Riel | dc0d17c | 2022-08-18 15:44:04 -0400 | [diff] [blame] | 2155 | config CMD_PAUSE |
| 2156 | bool "pause command" |
| 2157 | help |
| 2158 | Delay execution waiting for any user input. |
| 2159 | Useful to allow the user to read a failure log. |
| 2160 | |
Heinrich Schuchardt | 4f24ac0 | 2019-12-24 22:17:37 +0100 | [diff] [blame] | 2161 | config CMD_RNG |
| 2162 | bool "rng command" |
| 2163 | depends on DM_RNG |
Sughosh Ganu | de70619 | 2022-07-22 21:32:09 +0530 | [diff] [blame] | 2164 | default y if SANDBOX |
Heinrich Schuchardt | 4f24ac0 | 2019-12-24 22:17:37 +0100 | [diff] [blame] | 2165 | select HEXDUMP |
| 2166 | help |
| 2167 | Print bytes from the hardware random number generator. |
| 2168 | |
Chris Morgan | fe3dde3 | 2021-08-25 11:22:57 -0500 | [diff] [blame] | 2169 | config CMD_KASLRSEED |
| 2170 | bool "kaslrseed" |
| 2171 | depends on DM_RNG |
| 2172 | help |
| 2173 | Set the kaslr-seed in the chosen node with entropy provided by a |
| 2174 | hardware random number generator. |
| 2175 | |
Bin Meng | 1606085 | 2020-10-13 18:45:05 +0800 | [diff] [blame] | 2176 | config CMD_SLEEP |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2177 | bool "sleep" |
| 2178 | default y |
| 2179 | help |
| 2180 | Delay execution for some time |
| 2181 | |
Ashok Reddy Soma | 480245c | 2022-01-17 10:16:50 +0100 | [diff] [blame] | 2182 | config CMD_MP |
| 2183 | bool "support for multiprocessor commands" |
| 2184 | depends on MP |
| 2185 | default y |
Siva Durga Prasad Paladugu | 0fd2290c | 2018-06-19 12:24:23 +0200 | [diff] [blame] | 2186 | help |
Ashok Reddy Soma | 480245c | 2022-01-17 10:16:50 +0100 | [diff] [blame] | 2187 | This enables commands to bringup different processors |
| 2188 | in multiprocessor cases. |
Siva Durga Prasad Paladugu | 0fd2290c | 2018-06-19 12:24:23 +0200 | [diff] [blame] | 2189 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2190 | config CMD_TIMER |
| 2191 | bool "timer" |
| 2192 | help |
| 2193 | Access the system timer. |
| 2194 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2195 | config CMD_SOUND |
| 2196 | bool "sound" |
| 2197 | depends on SOUND |
| 2198 | help |
| 2199 | This provides basic access to the U-Boot's sound support. The main |
| 2200 | feature is to play a beep. |
| 2201 | |
| 2202 | sound init - set up sound system |
| 2203 | sound play - play a sound |
| 2204 | |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 2205 | config CMD_SYSBOOT |
| 2206 | bool "sysboot" |
John Keeping | be43a35 | 2022-07-28 11:19:15 +0100 | [diff] [blame] | 2207 | select PXE_UTILS |
Patrice Chotard | 993c912 | 2019-11-25 09:07:38 +0100 | [diff] [blame] | 2208 | help |
| 2209 | Boot image via local extlinux.conf file |
| 2210 | |
Miao Yan | 1868659 | 2016-05-22 19:37:17 -0700 | [diff] [blame] | 2211 | config CMD_QFW |
Tom Rini | dd6f3ab | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 2212 | bool "qfw" |
Miao Yan | fcf5c04 | 2016-05-22 19:37:14 -0700 | [diff] [blame] | 2213 | select QFW |
Tom Rini | dd6f3ab | 2016-05-06 10:40:22 -0400 | [diff] [blame] | 2214 | help |
| 2215 | This provides access to the QEMU firmware interface. The main |
| 2216 | feature is to allow easy loading of files passed to qemu-system |
| 2217 | via -kernel / -initrd |
Konstantin Porotchkin | fa61ef6 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 2218 | |
Frédéric Danis | 9744d1a | 2020-03-20 10:59:22 +0100 | [diff] [blame] | 2219 | config CMD_PSTORE |
| 2220 | bool "pstore" |
| 2221 | help |
| 2222 | This provides access to Linux PStore with Rammoops backend. The main |
| 2223 | feature is to allow to display or save PStore records. |
| 2224 | |
| 2225 | See doc/pstore.rst for more information. |
| 2226 | |
| 2227 | if CMD_PSTORE |
| 2228 | |
| 2229 | config CMD_PSTORE_MEM_ADDR |
| 2230 | hex "Memory Address" |
| 2231 | depends on CMD_PSTORE |
| 2232 | help |
| 2233 | Base addr used for PStore ramoops memory, should be identical to |
| 2234 | ramoops.mem_address parameter used by kernel |
| 2235 | |
| 2236 | config CMD_PSTORE_MEM_SIZE |
| 2237 | hex "Memory size" |
| 2238 | depends on CMD_PSTORE |
| 2239 | default "0x10000" |
| 2240 | help |
| 2241 | Size of PStore ramoops memory, should be identical to ramoops.mem_size |
| 2242 | parameter used by kernel, a power of 2 and larger than the sum of the |
| 2243 | record sizes |
| 2244 | |
| 2245 | config CMD_PSTORE_RECORD_SIZE |
| 2246 | hex "Dump record size" |
| 2247 | depends on CMD_PSTORE |
| 2248 | default "0x1000" |
| 2249 | help |
| 2250 | Size of each dump done on oops/panic, should be identical to |
| 2251 | ramoops.record_size parameter used by kernel and a power of 2 |
| 2252 | Must be non-zero |
| 2253 | |
| 2254 | config CMD_PSTORE_CONSOLE_SIZE |
| 2255 | hex "Kernel console log size" |
| 2256 | depends on CMD_PSTORE |
| 2257 | default "0x1000" |
| 2258 | help |
| 2259 | Size of kernel console log, should be identical to |
| 2260 | ramoops.console_size parameter used by kernel and a power of 2 |
| 2261 | Must be non-zero |
| 2262 | |
| 2263 | config CMD_PSTORE_FTRACE_SIZE |
| 2264 | hex "FTrace log size" |
| 2265 | depends on CMD_PSTORE |
| 2266 | default "0x1000" |
| 2267 | help |
| 2268 | Size of ftrace log, should be identical to ramoops.ftrace_size |
| 2269 | parameter used by kernel and a power of 2 |
| 2270 | |
| 2271 | config CMD_PSTORE_PMSG_SIZE |
| 2272 | hex "User space message log size" |
| 2273 | depends on CMD_PSTORE |
| 2274 | default "0x1000" |
| 2275 | help |
| 2276 | Size of user space message log, should be identical to |
| 2277 | ramoops.pmsg_size parameter used by kernel and a power of 2 |
| 2278 | |
| 2279 | config CMD_PSTORE_ECC_SIZE |
| 2280 | int "ECC size" |
| 2281 | depends on CMD_PSTORE |
| 2282 | default "0" |
| 2283 | help |
| 2284 | if non-zero, the option enables ECC support and specifies ECC buffer |
| 2285 | size in bytes (1 is a special value, means 16 bytes ECC), should be |
| 2286 | identical to ramoops.ramoops_ecc parameter used by kernel |
| 2287 | |
| 2288 | endif |
| 2289 | |
Konstantin Porotchkin | fa61ef6 | 2016-12-08 12:22:28 +0200 | [diff] [blame] | 2290 | source "cmd/mvebu/Kconfig" |
| 2291 | |
Simon Glass | 3cef3b3 | 2017-08-04 16:34:55 -0600 | [diff] [blame] | 2292 | config CMD_TERMINAL |
| 2293 | bool "terminal - provides a way to attach a serial terminal" |
| 2294 | help |
| 2295 | Provides a 'cu'-like serial terminal command. This can be used to |
| 2296 | access other serial ports from the system console. The terminal |
| 2297 | is very simple with no special processing of characters. As with |
| 2298 | cu, you can press ~. (tilde followed by period) to exit. |
| 2299 | |
Simon Glass | 1aa4e8d | 2017-08-04 16:35:02 -0600 | [diff] [blame] | 2300 | config CMD_UUID |
| 2301 | bool "uuid, guid - generation of unique IDs" |
Adam Ford | a451bc2 | 2018-02-06 12:14:28 -0600 | [diff] [blame] | 2302 | select LIB_UUID |
Simon Glass | 1aa4e8d | 2017-08-04 16:35:02 -0600 | [diff] [blame] | 2303 | help |
| 2304 | This enables two commands: |
| 2305 | |
| 2306 | uuid - generate random Universally Unique Identifier |
| 2307 | guid - generate Globally Unique Identifier based on random UUID |
| 2308 | |
| 2309 | The two commands are very similar except for the endianness of the |
| 2310 | output. |
| 2311 | |
Simon Glass | f029f90 | 2022-10-06 08:36:06 -0600 | [diff] [blame] | 2312 | config CMD_VIDCONSOLE |
| 2313 | bool "lcdputs and setcurs" |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 2314 | depends on VIDEO |
Simon Glass | f029f90 | 2022-10-06 08:36:06 -0600 | [diff] [blame] | 2315 | default y |
| 2316 | help |
| 2317 | Enabling this will provide 'setcurs' and 'lcdputs' commands which |
| 2318 | support cursor positioning and drawing strings on the video |
| 2319 | console (framebuffer). |
| 2320 | |
| 2321 | The name 'lcdputs' is a bit of a misnomer, but so named because the |
| 2322 | video device is often an LCD. |
| 2323 | |
Dzmitry Sankouski | e7ee1fd | 2023-03-07 13:21:16 +0300 | [diff] [blame] | 2324 | config CMD_SELECT_FONT |
| 2325 | bool "select font size" |
| 2326 | depends on VIDEO |
| 2327 | default n |
| 2328 | help |
| 2329 | Enabling this will provide 'font' command. |
| 2330 | Allows font selection at runtime. |
| 2331 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2332 | endmenu |
| 2333 | |
Lokesh Vutla | 5cd9661 | 2017-12-29 11:47:49 +0530 | [diff] [blame] | 2334 | source "cmd/ti/Kconfig" |
| 2335 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2336 | config CMD_BOOTSTAGE |
| 2337 | bool "Enable the 'bootstage' command" |
| 2338 | depends on BOOTSTAGE |
| 2339 | help |
| 2340 | Add a 'bootstage' command which supports printing a report |
| 2341 | and un/stashing of bootstage data. |
| 2342 | |
| 2343 | menu "Power commands" |
| 2344 | config CMD_PMIC |
| 2345 | bool "Enable Driver Model PMIC command" |
| 2346 | depends on DM_PMIC |
| 2347 | help |
| 2348 | This is the pmic command, based on a driver model pmic's API. |
| 2349 | Command features are unchanged: |
| 2350 | - list - list pmic devices |
| 2351 | - pmic dev <id> - show or [set] operating pmic device (NEW) |
| 2352 | - pmic dump - dump registers |
| 2353 | - pmic read address - read byte of register at address |
| 2354 | - pmic write address - write byte to register at address |
| 2355 | The only one change for this command is 'dev' subcommand. |
| 2356 | |
| 2357 | config CMD_REGULATOR |
| 2358 | bool "Enable Driver Model REGULATOR command" |
| 2359 | depends on DM_REGULATOR |
| 2360 | help |
| 2361 | This command is based on driver model regulator's API. |
| 2362 | User interface features: |
| 2363 | - list - list regulator devices |
| 2364 | - regulator dev <id> - show or [set] operating regulator device |
| 2365 | - regulator info - print constraints info |
| 2366 | - regulator status - print operating status |
| 2367 | - regulator value <val] <-f> - print/[set] voltage value [uV] |
| 2368 | - regulator current <val> - print/[set] current value [uA] |
| 2369 | - regulator mode <id> - print/[set] operating mode id |
| 2370 | - regulator enable - enable the regulator output |
| 2371 | - regulator disable - disable the regulator output |
| 2372 | |
| 2373 | The '-f' (force) option can be used for set the value which exceeds |
| 2374 | the limits, which are found in device-tree and are kept in regulator's |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 2375 | uclass plat structure. |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2376 | |
| 2377 | endmenu |
| 2378 | |
| 2379 | menu "Security commands" |
Simon Glass | b1a873d | 2017-04-26 22:27:49 -0600 | [diff] [blame] | 2380 | config CMD_AES |
| 2381 | bool "Enable the 'aes' command" |
| 2382 | select AES |
| 2383 | help |
| 2384 | This provides a means to encrypt and decrypt data using the AES |
| 2385 | (Advanced Encryption Standard). This algorithm uses a symetric key |
| 2386 | and is widely used as a streaming cipher. Different key lengths are |
| 2387 | supported by the algorithm but this command only supports 128 bits |
| 2388 | at present. |
| 2389 | |
Simon Glass | c04b9b3 | 2017-04-26 22:27:53 -0600 | [diff] [blame] | 2390 | config CMD_BLOB |
| 2391 | bool "Enable the 'blob' command" |
Aymen Sghaier | 2532429 | 2021-03-25 17:30:27 +0800 | [diff] [blame] | 2392 | depends on !MX6ULL && !MX6SLL && !MX6SL |
| 2393 | select IMX_HAB if ARCH_MX6 || ARCH_MX7 || ARCH_MX7ULP || ARCH_IMX8M |
Simon Glass | c04b9b3 | 2017-04-26 22:27:53 -0600 | [diff] [blame] | 2394 | help |
| 2395 | This is used with the Freescale secure boot mechanism. |
| 2396 | |
| 2397 | Freescale's SEC block has built-in Blob Protocol which provides |
| 2398 | a method for protecting user-defined data across system power |
| 2399 | cycles. SEC block protects data in a data structure called a Blob, |
| 2400 | which provides both confidentiality and integrity protection. |
| 2401 | |
| 2402 | Encapsulating data as a blob |
| 2403 | Each time that the Blob Protocol is used to protect data, a |
| 2404 | different randomly generated key is used to encrypt the data. |
| 2405 | This random key is itself encrypted using a key which is derived |
| 2406 | from SoC's non-volatile secret key and a 16 bit Key identifier. |
| 2407 | The resulting encrypted key along with encrypted data is called a |
| 2408 | blob. The non-volatile secure key is available for use only during |
| 2409 | secure boot. |
| 2410 | |
| 2411 | During decapsulation, the reverse process is performed to get back |
| 2412 | the original data. |
| 2413 | |
| 2414 | Sub-commands: |
Michal Simek | 6e7bdde | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 2415 | blob enc - encapsulating data as a cryptgraphic blob |
Simon Glass | c04b9b3 | 2017-04-26 22:27:53 -0600 | [diff] [blame] | 2416 | blob dec - decapsulating cryptgraphic blob to get the data |
| 2417 | |
| 2418 | Syntax: |
| 2419 | |
| 2420 | blob enc src dst len km |
| 2421 | |
| 2422 | Encapsulate and create blob of data $len bytes long |
| 2423 | at address $src and store the result at address $dst. |
| 2424 | $km is the 16 byte key modifier is also required for |
| 2425 | generation/use as key for cryptographic operation. Key |
| 2426 | modifier should be 16 byte long. |
| 2427 | |
| 2428 | blob dec src dst len km |
| 2429 | |
| 2430 | Decapsulate the blob of data at address $src and |
| 2431 | store result of $len byte at addr $dst. |
| 2432 | $km is the 16 byte key modifier is also required for |
| 2433 | generation/use as key for cryptographic operation. Key |
| 2434 | modifier should be 16 byte long. |
| 2435 | |
Simon Glass | 551c393 | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 2436 | config CMD_HASH |
| 2437 | bool "Support 'hash' command" |
Simon Glass | d70f919 | 2017-05-17 09:05:34 -0600 | [diff] [blame] | 2438 | select HASH |
Simon Glass | 551c393 | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 2439 | help |
| 2440 | This provides a way to hash data in memory using various supported |
| 2441 | algorithms (such as SHA1, MD5, CRC32). The computed digest can be |
| 2442 | saved to memory or to an environment variable. It is also possible |
| 2443 | to verify a hash against data in memory. |
| 2444 | |
Michalis Pappas | 666028f | 2018-04-13 10:40:57 +0300 | [diff] [blame] | 2445 | config CMD_HVC |
| 2446 | bool "Support the 'hvc' command" |
| 2447 | depends on ARM_SMCCC |
| 2448 | help |
| 2449 | Allows issuing Hypervisor Calls (HVCs). Mostly useful for |
| 2450 | development and testing. |
| 2451 | |
| 2452 | config CMD_SMC |
| 2453 | bool "Support the 'smc' command" |
| 2454 | depends on ARM_SMCCC |
| 2455 | help |
| 2456 | Allows issuing Secure Monitor Calls (SMCs). Mostly useful for |
| 2457 | development and testing. |
| 2458 | |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 2459 | config HASH_VERIFY |
| 2460 | bool "hash -v" |
| 2461 | depends on CMD_HASH |
| 2462 | help |
| 2463 | Add -v option to verify data against a hash. |
| 2464 | |
Jorge Ramirez-Ortiz | 26839e5 | 2021-02-14 16:27:24 +0100 | [diff] [blame] | 2465 | config CMD_SCP03 |
| 2466 | bool "scp03 - SCP03 enable and rotate/provision operations" |
| 2467 | depends on SCP03 |
| 2468 | help |
| 2469 | This command provides access to a Trusted Application |
| 2470 | running in a TEE to request Secure Channel Protocol 03 |
| 2471 | (SCP03) enablement and/or rotation of its SCP03 keys. |
| 2472 | |
Miquel Raynal | 9f9ce3c | 2018-05-15 11:57:05 +0200 | [diff] [blame] | 2473 | config CMD_TPM_V1 |
| 2474 | bool |
| 2475 | |
| 2476 | config CMD_TPM_V2 |
| 2477 | bool |
| 2478 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2479 | config CMD_TPM |
| 2480 | bool "Enable the 'tpm' command" |
Miquel Raynal | 9f9ce3c | 2018-05-15 11:57:05 +0200 | [diff] [blame] | 2481 | depends on TPM_V1 || TPM_V2 |
| 2482 | select CMD_TPM_V1 if TPM_V1 |
| 2483 | select CMD_TPM_V2 if TPM_V2 |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2484 | help |
| 2485 | This provides a means to talk to a TPM from the command line. A wide |
| 2486 | range of commands if provided - see 'tpm help' for details. The |
| 2487 | command requires a suitable TPM on your board and the correct driver |
| 2488 | must be enabled. |
| 2489 | |
Miquel Raynal | 9f9ce3c | 2018-05-15 11:57:05 +0200 | [diff] [blame] | 2490 | if CMD_TPM |
| 2491 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2492 | config CMD_TPM_TEST |
| 2493 | bool "Enable the 'tpm test' command" |
Miquel Raynal | 9f9ce3c | 2018-05-15 11:57:05 +0200 | [diff] [blame] | 2494 | depends on TPM_V1 |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2495 | help |
Miquel Raynal | 9f9ce3c | 2018-05-15 11:57:05 +0200 | [diff] [blame] | 2496 | This provides a a series of tests to confirm that the TPMv1.x is |
| 2497 | working correctly. The tests cover initialisation, non-volatile RAM, |
| 2498 | extend, global lock and checking that timing is within expectations. |
| 2499 | The tests pass correctly on Infineon TPMs but may need to be adjusted |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2500 | for other devices. |
| 2501 | |
Miquel Raynal | 9f9ce3c | 2018-05-15 11:57:05 +0200 | [diff] [blame] | 2502 | endif |
| 2503 | |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2504 | endmenu |
| 2505 | |
Moritz Fischer | bfeba01 | 2016-10-04 17:08:08 -0700 | [diff] [blame] | 2506 | menu "Firmware commands" |
| 2507 | config CMD_CROS_EC |
| 2508 | bool "Enable crosec command" |
| 2509 | depends on CROS_EC |
| 2510 | default y |
| 2511 | help |
| 2512 | Enable command-line access to the Chrome OS EC (Embedded |
| 2513 | Controller). This provides the 'crosec' command which has |
| 2514 | a number of sub-commands for performing EC tasks such as |
| 2515 | updating its flash, accessing a small saved context area |
| 2516 | and talking to the I2C bus behind the EC (if there is one). |
| 2517 | endmenu |
| 2518 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2519 | menu "Filesystem commands" |
Marek Behún | 9d84550 | 2017-09-03 17:00:30 +0200 | [diff] [blame] | 2520 | config CMD_BTRFS |
| 2521 | bool "Enable the 'btrsubvol' command" |
| 2522 | select FS_BTRFS |
| 2523 | help |
| 2524 | This enables the 'btrsubvol' command to list subvolumes |
| 2525 | of a BTRFS filesystem. There are no special commands for |
| 2526 | listing BTRFS directories or loading BTRFS files - this |
| 2527 | can be done by the generic 'fs' commands (see CMD_FS_GENERIC) |
| 2528 | when BTRFS is enabled (see FS_BTRFS). |
| 2529 | |
Simon Glass | d66a10f | 2017-04-26 22:27:58 -0600 | [diff] [blame] | 2530 | config CMD_CBFS |
| 2531 | bool "Enable the 'cbfs' command" |
Simon Glass | deb95999 | 2017-04-26 22:27:59 -0600 | [diff] [blame] | 2532 | depends on FS_CBFS |
Simon Glass | d66a10f | 2017-04-26 22:27:58 -0600 | [diff] [blame] | 2533 | help |
| 2534 | Define this to enable support for reading from a Coreboot |
| 2535 | filesystem. This is a ROM-based filesystem used for accessing files |
| 2536 | on systems that use coreboot as the first boot-loader and then load |
| 2537 | U-Boot to actually boot the Operating System. Available commands are |
| 2538 | cbfsinit, cbfsinfo, cbfsls and cbfsload. |
| 2539 | |
Simon Glass | 9707274 | 2017-04-26 22:28:03 -0600 | [diff] [blame] | 2540 | config CMD_CRAMFS |
| 2541 | bool "Enable the 'cramfs' command" |
Simon Glass | 80e44cf | 2017-04-26 22:28:04 -0600 | [diff] [blame] | 2542 | depends on FS_CRAMFS |
Simon Glass | 9707274 | 2017-04-26 22:28:03 -0600 | [diff] [blame] | 2543 | help |
| 2544 | This provides commands for dealing with CRAMFS (Compressed ROM |
| 2545 | filesystem). CRAMFS is useful when space is tight since files are |
| 2546 | compressed. Two commands are provided: |
| 2547 | |
| 2548 | cramfsls - lists files in a cramfs image |
| 2549 | cramfsload - loads a file from a cramfs image |
| 2550 | |
Huang Jianan | 739941e | 2022-02-26 15:05:50 +0800 | [diff] [blame] | 2551 | config CMD_EROFS |
| 2552 | bool "EROFS command support" |
| 2553 | select FS_EROFS |
| 2554 | help |
| 2555 | Support for the EROFS fs |
| 2556 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2557 | config CMD_EXT2 |
| 2558 | bool "ext2 command support" |
Tuomas Tynkkynen | 3d22bae | 2018-01-05 02:45:17 +0200 | [diff] [blame] | 2559 | select FS_EXT4 |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2560 | help |
| 2561 | Enables EXT2 FS command |
| 2562 | |
| 2563 | config CMD_EXT4 |
| 2564 | bool "ext4 command support" |
Tuomas Tynkkynen | 3d22bae | 2018-01-05 02:45:17 +0200 | [diff] [blame] | 2565 | select FS_EXT4 |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2566 | help |
| 2567 | Enables EXT4 FS command |
| 2568 | |
| 2569 | config CMD_EXT4_WRITE |
| 2570 | depends on CMD_EXT4 |
| 2571 | bool "ext4 write command support" |
Tuomas Tynkkynen | 3d22bae | 2018-01-05 02:45:17 +0200 | [diff] [blame] | 2572 | select EXT4_WRITE |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2573 | help |
| 2574 | Enables EXT4 FS write command |
| 2575 | |
| 2576 | config CMD_FAT |
| 2577 | bool "FAT command support" |
Sekhar Nori | eedfb89 | 2017-06-02 17:53:59 +0530 | [diff] [blame] | 2578 | select FS_FAT |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2579 | help |
| 2580 | Support for the FAT fs |
| 2581 | |
Joao Marcos Costa | bba604b | 2020-07-30 15:33:48 +0200 | [diff] [blame] | 2582 | config CMD_SQUASHFS |
| 2583 | bool "SquashFS command support" |
| 2584 | select FS_SQUASHFS |
| 2585 | help |
| 2586 | Enables SquashFS filesystem commands (e.g. load, ls). |
| 2587 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2588 | config CMD_FS_GENERIC |
| 2589 | bool "filesystem commands" |
| 2590 | help |
| 2591 | Enables filesystem commands (e.g. load, ls) that work for multiple |
| 2592 | fs types. |
Maxime Ripard | 0269dfa | 2017-02-27 18:22:04 +0100 | [diff] [blame] | 2593 | |
Josua Mayer | efbe99c | 2017-04-24 10:10:45 +0200 | [diff] [blame] | 2594 | config CMD_FS_UUID |
| 2595 | bool "fsuuid command" |
| 2596 | help |
| 2597 | Enables fsuuid command for filesystem UUID. |
| 2598 | |
Simon Glass | b8682a7 | 2017-05-17 03:25:37 -0600 | [diff] [blame] | 2599 | config CMD_JFFS2 |
| 2600 | bool "jffs2 command" |
Simon Glass | 59e12a4 | 2017-05-17 03:25:38 -0600 | [diff] [blame] | 2601 | select FS_JFFS2 |
Simon Glass | b8682a7 | 2017-05-17 03:25:37 -0600 | [diff] [blame] | 2602 | help |
| 2603 | Enables commands to support the JFFS2 (Journalling Flash File System |
| 2604 | version 2) filesystem. This enables fsload, ls and fsinfo which |
| 2605 | provide the ability to load files, list directories and obtain |
| 2606 | filesystem information. |
| 2607 | |
Tom Rini | 968c621 | 2021-12-17 18:08:47 -0500 | [diff] [blame] | 2608 | config JFFS2_DEV |
| 2609 | string "Default device for JFFS2" |
| 2610 | depends on CMD_JFFS2 |
| 2611 | default "nor0" |
| 2612 | help |
| 2613 | The default device to use with the jffs2 command. |
| 2614 | |
| 2615 | config JFFS2_PART_OFFSET |
| 2616 | hex "Default offset within flash to locate the JFFS2 image" |
| 2617 | depends on CMD_JFFS2 |
| 2618 | default 0x0 |
| 2619 | help |
| 2620 | The default offset within flash to locate the JFFS2 image. |
| 2621 | |
| 2622 | config JFFS2_PART_SIZE |
| 2623 | hex "Default size of JFFS2 partition" |
| 2624 | depends on CMD_JFFS2 |
| 2625 | default 0xFFFFFFFF |
| 2626 | help |
| 2627 | The default size of the JFFS2 partition |
| 2628 | |
Maxime Ripard | 0269dfa | 2017-02-27 18:22:04 +0100 | [diff] [blame] | 2629 | config CMD_MTDPARTS |
Maxime Ripard | 0269dfa | 2017-02-27 18:22:04 +0100 | [diff] [blame] | 2630 | bool "MTD partition support" |
Miquel Raynal | ff102c5 | 2019-10-25 19:39:30 +0200 | [diff] [blame] | 2631 | depends on MTD |
Maxime Ripard | 0269dfa | 2017-02-27 18:22:04 +0100 | [diff] [blame] | 2632 | help |
Miquel Raynal | 938db6f | 2018-09-29 12:58:30 +0200 | [diff] [blame] | 2633 | MTD partitioning tool support. |
| 2634 | It is strongly encouraged to avoid using this command |
| 2635 | anymore along with 'sf', 'nand', 'onenand'. One can still |
| 2636 | declare the partitions in the mtdparts environment variable |
| 2637 | but better use the MTD stack and the 'mtd' command instead. |
Maxime Ripard | 0269dfa | 2017-02-27 18:22:04 +0100 | [diff] [blame] | 2638 | |
Simon Glass | cb70e6c | 2017-08-04 16:34:30 -0600 | [diff] [blame] | 2639 | config CMD_MTDPARTS_SPREAD |
| 2640 | bool "Padd partition size to take account of bad blocks" |
| 2641 | depends on CMD_MTDPARTS |
| 2642 | help |
| 2643 | This enables the 'spread' sub-command of the mtdparts command. |
| 2644 | This command will modify the existing mtdparts variable by increasing |
| 2645 | the size of the partitions such that 1) each partition's net size is |
| 2646 | at least as large as the size specified in the mtdparts variable and |
| 2647 | 2) each partition starts on a good block. |
| 2648 | |
Alexander Dahl | 672c570 | 2019-10-30 16:53:55 +0100 | [diff] [blame] | 2649 | config CMD_MTDPARTS_SHOW_NET_SIZES |
| 2650 | bool "Show net size (w/o bad blocks) of partitions" |
| 2651 | depends on CMD_MTDPARTS |
| 2652 | help |
| 2653 | Adds two columns to the printed partition table showing the |
| 2654 | effective usable size of a partition, if bad blocks are taken |
| 2655 | into account. |
| 2656 | |
Miquel Raynal | 587f445 | 2019-10-03 19:50:25 +0200 | [diff] [blame] | 2657 | config MTDIDS_DEFAULT |
| 2658 | string "Default MTD IDs" |
Miquel Raynal | ff102c5 | 2019-10-25 19:39:30 +0200 | [diff] [blame] | 2659 | depends on MTD || SPI_FLASH |
Patrick Delaunay | 6762c8d | 2022-12-08 09:10:13 +0100 | [diff] [blame] | 2660 | depends on !SYS_MTDPARTS_RUNTIME |
Miquel Raynal | 587f445 | 2019-10-03 19:50:25 +0200 | [diff] [blame] | 2661 | help |
| 2662 | Defines a default MTD IDs list for use with MTD partitions in the |
| 2663 | Linux MTD command line partitions format. |
| 2664 | |
| 2665 | config MTDPARTS_DEFAULT |
| 2666 | string "Default MTD partition scheme" |
Miquel Raynal | ff102c5 | 2019-10-25 19:39:30 +0200 | [diff] [blame] | 2667 | depends on MTD || SPI_FLASH |
Patrick Delaunay | 6762c8d | 2022-12-08 09:10:13 +0100 | [diff] [blame] | 2668 | depends on !SYS_MTDPARTS_RUNTIME |
Miquel Raynal | 587f445 | 2019-10-03 19:50:25 +0200 | [diff] [blame] | 2669 | help |
| 2670 | Defines a default MTD partitioning scheme in the Linux MTD command |
| 2671 | line partitions format |
| 2672 | |
Simon Glass | f8803a9 | 2017-08-04 16:34:41 -0600 | [diff] [blame] | 2673 | config CMD_REISER |
| 2674 | bool "reiser - Access to reiserfs filesystems" |
| 2675 | help |
| 2676 | This provides two commands which operate on a resierfs filesystem, |
| 2677 | commonly used some years ago: |
| 2678 | |
| 2679 | reiserls - list files |
| 2680 | reiserload - load a file |
| 2681 | |
Simon Glass | 7a76431 | 2017-08-04 16:34:58 -0600 | [diff] [blame] | 2682 | config CMD_YAFFS2 |
| 2683 | bool "yaffs2 - Access of YAFFS2 filesystem" |
| 2684 | depends on YAFFS2 |
| 2685 | default y |
| 2686 | help |
| 2687 | This provides commands for accessing a YAFFS2 filesystem. Yet |
| 2688 | Another Flash Filesystem 2 is a filesystem designed specifically |
| 2689 | for NAND flash. It incorporates bad-block management and ensures |
| 2690 | that device writes are sequential regardless of filesystem |
| 2691 | activity. |
| 2692 | |
Simon Glass | 54feea1 | 2017-08-04 16:35:04 -0600 | [diff] [blame] | 2693 | config CMD_ZFS |
| 2694 | bool "zfs - Access of ZFS filesystem" |
| 2695 | help |
| 2696 | This provides commands to accessing a ZFS filesystem, commonly used |
| 2697 | on Solaris systems. Two sub-commands are provided: |
| 2698 | |
| 2699 | zfsls - list files in a directory |
| 2700 | zfsload - load a file |
| 2701 | |
| 2702 | See doc/README.zfs for more details. |
| 2703 | |
Dinh Nguyen | ab8243e | 2016-04-21 09:05:23 -0500 | [diff] [blame] | 2704 | endmenu |
| 2705 | |
Simon Glass | ac20a1b | 2017-04-26 22:27:52 -0600 | [diff] [blame] | 2706 | menu "Debug commands" |
| 2707 | |
Simon Glass | 71cebf0 | 2021-03-15 18:00:24 +1300 | [diff] [blame] | 2708 | config CMD_CBSYSINFO |
| 2709 | bool "cbsysinfo" |
| 2710 | depends on X86 |
| 2711 | default y if SYS_COREBOOT |
| 2712 | help |
| 2713 | This provides information about the coreboot sysinfo table stored in |
| 2714 | memory by coreboot before jumping to U-Boot. It can be useful for |
| 2715 | debugging the beaaviour of coreboot or U-Boot. |
| 2716 | |
Stefan Roese | 1f865ee | 2022-09-02 13:57:51 +0200 | [diff] [blame] | 2717 | config CMD_CYCLIC |
| 2718 | bool "cyclic - Show information about cyclic functions" |
| 2719 | depends on CYCLIC |
| 2720 | default y |
| 2721 | help |
| 2722 | This enables the 'cyclic' command which provides information about |
| 2723 | cyclic execution functions. This infrastructure allows registering |
| 2724 | functions to be executed cyclically, e.g. every 100ms. These commands |
| 2725 | are supported: |
| 2726 | |
| 2727 | cyclic list - list cyclic functions |
| 2728 | cyclic cyclic demo <cycletime_ms> <delay_us> - register cyclic |
| 2729 | demo function |
| 2730 | |
| 2731 | See doc/develop/cyclic.rst for more details. |
| 2732 | |
Simon Glass | 3bd25cb | 2017-04-26 22:28:08 -0600 | [diff] [blame] | 2733 | config CMD_DIAG |
| 2734 | bool "diag - Board diagnostics" |
| 2735 | help |
| 2736 | This command provides access to board diagnostic tests. These are |
| 2737 | called Power-on Self Tests (POST). The command allows listing of |
| 2738 | available tests and running either all the tests, or specific tests |
| 2739 | identified by name. |
| 2740 | |
Simon Glass | c81b460 | 2022-03-04 08:43:06 -0700 | [diff] [blame] | 2741 | config CMD_EVENT |
| 2742 | bool "event - Show information about events" |
Tom Rini | 448e2b6 | 2023-01-16 15:46:49 -0500 | [diff] [blame] | 2743 | depends on EVENT |
Simon Glass | c81b460 | 2022-03-04 08:43:06 -0700 | [diff] [blame] | 2744 | default y if EVENT_DEBUG |
| 2745 | help |
| 2746 | This enables the 'event' command which provides information about |
| 2747 | events and event-handler routines. This can help to device event |
| 2748 | hadling. |
| 2749 | |
Simon Glass | 1b33089 | 2017-05-17 03:25:39 -0600 | [diff] [blame] | 2750 | config CMD_IRQ |
| 2751 | bool "irq - Show information about interrupts" |
Pragnesh Patel | c5a7e5b | 2020-08-24 20:38:55 +0530 | [diff] [blame] | 2752 | depends on !ARM && !MIPS && !RISCV && !SH |
Simon Glass | 1b33089 | 2017-05-17 03:25:39 -0600 | [diff] [blame] | 2753 | help |
| 2754 | This enables two commands: |
| 2755 | |
| 2756 | interrupts - enable or disable interrupts |
| 2757 | irqinfo - print device-specific interrupt information |
Simon Glass | 6bac227 | 2017-05-17 03:25:40 -0600 | [diff] [blame] | 2758 | |
| 2759 | config CMD_KGDB |
| 2760 | bool "kgdb - Allow debugging of U-Boot with gdb" |
Michal Simek | b920550 | 2018-10-04 14:26:13 +0200 | [diff] [blame] | 2761 | depends on PPC |
Simon Glass | 6bac227 | 2017-05-17 03:25:40 -0600 | [diff] [blame] | 2762 | help |
| 2763 | This enables a 'kgdb' command which allows gdb to connect to U-Boot |
| 2764 | over a serial link for debugging purposes. This allows |
| 2765 | single-stepping, inspecting variables, etc. This is supported only |
| 2766 | on PowerPC at present. |
| 2767 | |
Simon Glass | d5f61f2 | 2017-12-04 13:48:26 -0700 | [diff] [blame] | 2768 | config CMD_LOG |
| 2769 | bool "log - Generation, control and access to logging" |
Heinrich Schuchardt | 83a1f93 | 2018-04-19 22:02:46 +0200 | [diff] [blame] | 2770 | select LOG |
Sean Anderson | 3e40976 | 2020-10-27 19:55:38 -0400 | [diff] [blame] | 2771 | select GETOPT |
Simon Glass | d5f61f2 | 2017-12-04 13:48:26 -0700 | [diff] [blame] | 2772 | help |
| 2773 | This provides access to logging features. It allows the output of |
| 2774 | log data to be controlled to a limited extent (setting up the default |
Simon Glass | ef11ed8 | 2017-12-04 13:48:27 -0700 | [diff] [blame] | 2775 | maximum log level for emitting of records). It also provides access |
| 2776 | to a command used for testing the log system. |
Simon Glass | d5f61f2 | 2017-12-04 13:48:26 -0700 | [diff] [blame] | 2777 | |
Simon Glass | ce058ae | 2017-08-04 16:34:59 -0600 | [diff] [blame] | 2778 | config CMD_TRACE |
| 2779 | bool "trace - Support tracing of function calls and timing" |
Simon Glass | 8905024 | 2021-11-24 09:26:39 -0700 | [diff] [blame] | 2780 | depends on TRACE |
| 2781 | default y |
Simon Glass | ce058ae | 2017-08-04 16:34:59 -0600 | [diff] [blame] | 2782 | help |
| 2783 | Enables a command to control using of function tracing within |
| 2784 | U-Boot. This allows recording of call traces including timing |
| 2785 | information. The command can write data to memory for exporting |
Simon Glass | a24a78d | 2019-04-08 13:20:51 -0600 | [diff] [blame] | 2786 | for analysis (e.g. using bootchart). See doc/README.trace for full |
Simon Glass | ce058ae | 2017-08-04 16:34:59 -0600 | [diff] [blame] | 2787 | details. |
| 2788 | |
Igor Opaniuk | 60b2f9e | 2018-06-03 21:56:39 +0300 | [diff] [blame] | 2789 | config CMD_AVB |
| 2790 | bool "avb - Android Verified Boot 2.0 operations" |
Igor Opaniuk | b0aa74a | 2018-07-17 14:33:25 +0300 | [diff] [blame] | 2791 | depends on AVB_VERIFY |
Igor Opaniuk | 60b2f9e | 2018-06-03 21:56:39 +0300 | [diff] [blame] | 2792 | help |
| 2793 | Enables a "avb" command to perform verification of partitions using |
| 2794 | Android Verified Boot 2.0 functionality. It includes such subcommands: |
| 2795 | avb init - initialize avb2 subsystem |
| 2796 | avb read_rb - read rollback index |
| 2797 | avb write_rb - write rollback index |
| 2798 | avb is_unlocked - check device lock state |
| 2799 | avb get_uuid - read and print uuid of a partition |
| 2800 | avb read_part - read data from partition |
| 2801 | avb read_part_hex - read data from partition and output to stdout |
| 2802 | avb write_part - write data to partition |
| 2803 | avb verify - run full verification chain |
Joel Peshkin | 4e9bce1 | 2021-04-11 11:21:58 +0200 | [diff] [blame] | 2804 | |
| 2805 | config CMD_STACKPROTECTOR_TEST |
| 2806 | bool "Test command for stack protector" |
| 2807 | depends on STACKPROTECTOR |
| 2808 | help |
| 2809 | Enable stackprot_test command |
| 2810 | The stackprot_test command will force a stack overrun to test |
| 2811 | the stack smashing detection mechanisms. |
| 2812 | |
Simon Glass | ac20a1b | 2017-04-26 22:27:52 -0600 | [diff] [blame] | 2813 | endmenu |
| 2814 | |
Heiko Schocher | 8f2fe0c | 2016-09-21 07:58:19 +0200 | [diff] [blame] | 2815 | config CMD_UBI |
| 2816 | tristate "Enable UBI - Unsorted block images commands" |
Heiko Schocher | 8f2fe0c | 2016-09-21 07:58:19 +0200 | [diff] [blame] | 2817 | select MTD_UBI |
| 2818 | help |
| 2819 | UBI is a software layer above MTD layer which admits use of LVM-like |
| 2820 | logical volumes on top of MTD devices, hides some complexities of |
| 2821 | flash chips like wear and bad blocks and provides some other useful |
| 2822 | capabilities. Please, consult the MTD web site for more details |
| 2823 | (www.linux-mtd.infradead.org). Activate this option if you want |
| 2824 | to use U-Boot UBI commands. |
Miquel Raynal | c58fb2c | 2018-09-29 12:58:29 +0200 | [diff] [blame] | 2825 | It is also strongly encouraged to also enable CONFIG_MTD to get full |
| 2826 | partition support. |
Heiko Schocher | 8f2fe0c | 2016-09-21 07:58:19 +0200 | [diff] [blame] | 2827 | |
Philippe Reynes | 83f7078 | 2020-03-23 19:20:47 +0100 | [diff] [blame] | 2828 | config CMD_UBI_RENAME |
| 2829 | bool "Enable rename" |
| 2830 | depends on CMD_UBI |
Philippe Reynes | 83f7078 | 2020-03-23 19:20:47 +0100 | [diff] [blame] | 2831 | help |
| 2832 | Enable a "ubi" command to rename ubi volume: |
| 2833 | ubi rename <oldname> <newname> |
| 2834 | |
Boris Brezillon | 173aafb | 2017-02-27 18:22:06 +0100 | [diff] [blame] | 2835 | config CMD_UBIFS |
| 2836 | tristate "Enable UBIFS - Unsorted block images filesystem commands" |
Maxime Ripard | 2bc734b | 2017-03-03 14:53:22 +0100 | [diff] [blame] | 2837 | depends on CMD_UBI |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 2838 | default y if CMD_UBI |
Karl Beldan | 24fc953 | 2017-07-12 16:11:47 +0000 | [diff] [blame] | 2839 | select LZO |
Pali Rohár | b257c4e | 2022-05-23 22:50:36 +0200 | [diff] [blame] | 2840 | select GZIP |
Boris Brezillon | 173aafb | 2017-02-27 18:22:06 +0100 | [diff] [blame] | 2841 | help |
| 2842 | UBIFS is a file system for flash devices which works on top of UBI. |
| 2843 | |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 2844 | config MMC_SPEED_MODE_SET |
| 2845 | bool "set speed mode using mmc command" |
| 2846 | depends on CMD_MMC |
| 2847 | default n |
| 2848 | help |
| 2849 | Enable setting speed mode using mmc rescan and mmc dev commands. |
| 2850 | The speed mode is provided as the last argument in these commands |
| 2851 | and is indicated using the index from enum bus_mode in |
| 2852 | include/mmc.h. A speed mode can be set only if it has already |
| 2853 | been enabled in the device tree. |
Alexey Romanov | 311106a | 2023-01-10 13:56:47 +0300 | [diff] [blame] | 2854 | |
| 2855 | config CMD_MESON |
| 2856 | bool "Amlogic Meson commands" |
| 2857 | depends on ARCH_MESON |
| 2858 | default y |
| 2859 | help |
| 2860 | Enable useful commands for the Meson Soc family developed by Amlogic Inc. |
Simon Glass | 72a8cf8 | 2016-01-17 20:53:51 -0700 | [diff] [blame] | 2861 | endmenu |