Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 1 | menu "Boot options" |
| 2 | |
| 3 | menu "Boot images" |
| 4 | |
| 5 | config ANDROID_BOOT_IMAGE |
| 6 | bool "Enable support for Android Boot Images" |
| 7 | default y if FASTBOOT |
| 8 | help |
| 9 | This enables support for booting images which use the Android |
| 10 | image format header. |
| 11 | |
| 12 | config FIT |
| 13 | bool "Support Flattened Image Tree" |
Alexandru Gagniuc | 92055e1 | 2021-09-02 19:54:21 -0500 | [diff] [blame] | 14 | select HASH |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 15 | select MD5 |
| 16 | select SHA1 |
Alexandru Gagniuc | eb5171d | 2021-09-02 19:54:17 -0500 | [diff] [blame] | 17 | imply SHA256 |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 18 | help |
| 19 | This option allows you to boot the new uImage structure, |
| 20 | Flattened Image Tree. FIT is formally a FDT, which can include |
| 21 | images of various types (kernel, FDT blob, ramdisk, etc.) |
| 22 | in a single blob. To boot this new uImage structure, |
| 23 | pass the address of the blob to the "bootm" command. |
| 24 | FIT is very flexible, supporting compression, multiple images, |
| 25 | multiple configurations, verification through hashing and also |
| 26 | verified boot (secure boot using RSA). |
| 27 | |
Simon Glass | d6b318d | 2021-12-18 11:27:50 -0700 | [diff] [blame] | 28 | config TIMESTAMP |
| 29 | bool "Show image date and time when displaying image information" |
| 30 | default y if CMD_DATE |
| 31 | help |
| 32 | When CONFIG_TIMESTAMP is selected, the timestamp (date and time) of |
| 33 | an image is printed by image commands like bootm or iminfo. This |
| 34 | is shown as 'Timestamp: xxx' and 'Created: xxx'. If this option is |
| 35 | enabled, then U-Boot requires FITs to have a timestamp. If a FIT is |
| 36 | loaded that does not, the message 'Wrong FIT format: no timestamp' |
| 37 | is shown. |
| 38 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 39 | config FIT_EXTERNAL_OFFSET |
| 40 | hex "FIT external data offset" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 41 | depends on FIT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 42 | default 0x0 |
| 43 | help |
| 44 | This specifies a data offset in fit image. |
| 45 | The offset is from data payload offset to the beginning of |
| 46 | fit image header. When specifies a offset, specific data |
| 47 | could be put in the hole between data payload and fit image |
| 48 | header, such as CSF data on i.MX platform. |
| 49 | |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 50 | config FIT_FULL_CHECK |
| 51 | bool "Do a full check of the FIT before using it" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 52 | depends on FIT |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 53 | default y |
| 54 | help |
| 55 | Enable this do a full check of the FIT to make sure it is valid. This |
| 56 | helps to protect against carefully crafted FITs which take advantage |
| 57 | of bugs or omissions in the code. This includes a bad structure, |
| 58 | multiple root nodes and the like. |
| 59 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 60 | config FIT_SIGNATURE |
| 61 | bool "Enable signature verification of FIT uImages" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 62 | depends on DM && FIT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 63 | select HASH |
Alexandru Gagniuc | 61416fe | 2021-07-29 11:47:18 -0500 | [diff] [blame] | 64 | imply RSA |
| 65 | imply RSA_VERIFY |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 66 | select IMAGE_SIGN_INFO |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 67 | select FIT_FULL_CHECK |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 68 | help |
| 69 | This option enables signature verification of FIT uImages, |
| 70 | using a hash signed and verified using RSA. If |
| 71 | CONFIG_SHA_PROG_HW_ACCEL is defined, i.e support for progressive |
| 72 | hashing is available using hardware, then the RSA library will use |
| 73 | it. See doc/uImage.FIT/signature.txt for more details. |
| 74 | |
| 75 | WARNING: When relying on signed FIT images with a required signature |
| 76 | check the legacy image format is disabled by default, so that |
| 77 | unsigned images cannot be loaded. If a board needs the legacy image |
| 78 | format support in this case, enable it using |
| 79 | CONFIG_LEGACY_IMAGE_FORMAT. |
| 80 | |
| 81 | config FIT_SIGNATURE_MAX_SIZE |
| 82 | hex "Max size of signed FIT structures" |
| 83 | depends on FIT_SIGNATURE |
| 84 | default 0x10000000 |
| 85 | help |
| 86 | This option sets a max size in bytes for verified FIT uImages. |
| 87 | A sane value of 256MB protects corrupted DTB structures from overlapping |
| 88 | device memory. Assure this size does not extend past expected storage |
| 89 | space. |
| 90 | |
Simon Glass | ad74aed | 2021-07-14 17:05:31 -0500 | [diff] [blame] | 91 | config FIT_RSASSA_PSS |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 92 | bool "Support rsassa-pss signature scheme of FIT image contents" |
| 93 | depends on FIT_SIGNATURE |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 94 | help |
| 95 | Enable this to support the pss padding algorithm as described |
| 96 | in the rfc8017 (https://tools.ietf.org/html/rfc8017). |
| 97 | |
| 98 | config FIT_CIPHER |
| 99 | bool "Enable ciphering data in a FIT uImages" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 100 | depends on DM && FIT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 101 | select AES |
| 102 | help |
| 103 | Enable the feature of data ciphering/unciphering in the tool mkimage |
| 104 | and in the u-boot support of the FIT image. |
| 105 | |
| 106 | config FIT_VERBOSE |
| 107 | bool "Show verbose messages when FIT images fail" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 108 | depends on FIT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 109 | help |
| 110 | Generally a system will have valid FIT images so debug messages |
| 111 | are a waste of code space. If you are debugging your images then |
| 112 | you can enable this option to get more verbose information about |
| 113 | failures. |
| 114 | |
| 115 | config FIT_BEST_MATCH |
| 116 | bool "Select the best match for the kernel device tree" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 117 | depends on FIT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 118 | help |
| 119 | When no configuration is explicitly selected, default to the |
| 120 | one whose fdt's compatibility field best matches that of |
| 121 | U-Boot itself. A match is considered "best" if it matches the |
| 122 | most specific compatibility entry of U-Boot's fdt's root node. |
| 123 | The order of entries in the configuration's fdt is ignored. |
| 124 | |
| 125 | config FIT_IMAGE_POST_PROCESS |
| 126 | bool "Enable post-processing of FIT artifacts after loading by U-Boot" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 127 | depends on FIT |
Siew Chin Lim | 1bc2089 | 2021-03-01 20:04:11 +0800 | [diff] [blame] | 128 | depends on TI_SECURE_DEVICE || SOCFPGA_SECURE_VAB_AUTH |
Andrew Davis | 042e87e | 2022-05-04 15:52:28 -0500 | [diff] [blame] | 129 | default y if TI_SECURE_DEVICE |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 130 | help |
| 131 | Allows doing any sort of manipulation to blobs after they got extracted |
| 132 | from FIT images like stripping off headers or modifying the size of the |
| 133 | blob, verification, authentication, decryption etc. in a platform or |
| 134 | board specific way. In order to use this feature a platform or board- |
| 135 | specific implementation of board_fit_image_post_process() must be |
| 136 | provided. Also, anything done during this post-processing step would |
| 137 | need to be comprehended in how the images were prepared before being |
| 138 | injected into the FIT creation (i.e. the blobs would have been pre- |
| 139 | processed before being added to the FIT image). |
| 140 | |
Ravik Hasija | 7a01882 | 2021-01-27 14:01:48 -0800 | [diff] [blame] | 141 | config FIT_PRINT |
| 142 | bool "Support FIT printing" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 143 | depends on FIT |
Ravik Hasija | 7a01882 | 2021-01-27 14:01:48 -0800 | [diff] [blame] | 144 | default y |
| 145 | help |
| 146 | Support printing the content of the fitImage in a verbose manner. |
| 147 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 148 | config SPL_FIT |
| 149 | bool "Support Flattened Image Tree within SPL" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 150 | depends on SPL && FIT |
Alexandru Gagniuc | 92055e1 | 2021-09-02 19:54:21 -0500 | [diff] [blame] | 151 | select SPL_HASH |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 152 | select SPL_OF_LIBFDT |
| 153 | |
| 154 | config SPL_FIT_PRINT |
| 155 | bool "Support FIT printing within SPL" |
| 156 | depends on SPL_FIT |
| 157 | help |
| 158 | Support printing the content of the fitImage in a verbose manner in SPL. |
| 159 | |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 160 | config SPL_FIT_FULL_CHECK |
| 161 | bool "Do a full check of the FIT before using it" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 162 | depends on SPL_FIT |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 163 | help |
| 164 | Enable this do a full check of the FIT to make sure it is valid. This |
| 165 | helps to protect against carefully crafted FITs which take advantage |
| 166 | of bugs or omissions in the code. This includes a bad structure, |
| 167 | multiple root nodes and the like. |
| 168 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 169 | config SPL_FIT_SIGNATURE |
| 170 | bool "Enable signature verification of FIT firmware within SPL" |
| 171 | depends on SPL_DM |
Klaus Heinrich Kiwi | bdb7f26 | 2021-02-09 15:41:54 -0300 | [diff] [blame] | 172 | depends on SPL_LOAD_FIT || SPL_LOAD_FIT_FULL |
Klaus Heinrich Kiwi | 6ce2813 | 2021-02-09 15:41:53 -0300 | [diff] [blame] | 173 | select FIT_SIGNATURE |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 174 | select SPL_FIT |
Simon Glass | 0c6bdbb | 2021-07-10 21:14:25 -0600 | [diff] [blame] | 175 | select SPL_CRYPTO |
Alexandru Gagniuc | 0721209 | 2021-09-02 19:54:19 -0500 | [diff] [blame] | 176 | select SPL_HASH |
Alexandru Gagniuc | 61416fe | 2021-07-29 11:47:18 -0500 | [diff] [blame] | 177 | imply SPL_RSA |
| 178 | imply SPL_RSA_VERIFY |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 179 | select SPL_IMAGE_SIGN_INFO |
Simon Glass | 6f3c2d8 | 2021-02-15 17:08:10 -0700 | [diff] [blame] | 180 | select SPL_FIT_FULL_CHECK |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 181 | |
Simon Glass | b53541f | 2021-09-25 19:43:39 -0600 | [diff] [blame] | 182 | config SPL_FIT_SIGNATURE_MAX_SIZE |
| 183 | hex "Max size of signed FIT structures in SPL" |
| 184 | depends on SPL_FIT_SIGNATURE |
| 185 | default 0x10000000 |
| 186 | help |
| 187 | This option sets a max size in bytes for verified FIT uImages. |
| 188 | A sane value of 256MB protects corrupted DTB structures from overlapping |
| 189 | device memory. Assure this size does not extend past expected storage |
| 190 | space. |
| 191 | |
Philippe Reynes | 5d39c93 | 2021-10-15 11:35:03 +0200 | [diff] [blame] | 192 | config SPL_FIT_RSASSA_PSS |
| 193 | bool "Support rsassa-pss signature scheme of FIT image contents in SPL" |
| 194 | depends on SPL_FIT_SIGNATURE |
| 195 | help |
| 196 | Enable this to support the pss padding algorithm as described |
| 197 | in the rfc8017 (https://tools.ietf.org/html/rfc8017) in SPL. |
| 198 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 199 | config SPL_LOAD_FIT |
| 200 | bool "Enable SPL loading U-Boot as a FIT (basic fitImage features)" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 201 | depends on SPL && FIT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 202 | select SPL_FIT |
| 203 | help |
| 204 | Normally with the SPL framework a legacy image is generated as part |
| 205 | of the build. This contains U-Boot along with information as to |
| 206 | where it should be loaded. This option instead enables generation |
| 207 | of a FIT (Flat Image Tree) which provides more flexibility. In |
| 208 | particular it can handle selecting from multiple device tree |
| 209 | and passing the correct one to U-Boot. |
| 210 | |
Alexandru Gagniuc | df51ae7 | 2021-03-29 12:05:15 -0500 | [diff] [blame] | 211 | This path has the following limitations: |
| 212 | |
Bin Meng | 6e847f6 | 2021-05-10 20:23:29 +0800 | [diff] [blame] | 213 | 1. "loadables" images, other than FDTs, which do not have a "load" |
Alexandru Gagniuc | df51ae7 | 2021-03-29 12:05:15 -0500 | [diff] [blame] | 214 | property will not be loaded. This limitation also applies to FPGA |
| 215 | images with the correct "compatible" string. |
Oleksandr Suvorov | a3a1afb | 2022-07-22 17:16:13 +0300 | [diff] [blame] | 216 | 2. For FPGA images, the supported "compatible" list is in the |
| 217 | doc/uImage.FIT/source_file_format.txt. |
Alexandru Gagniuc | df51ae7 | 2021-03-29 12:05:15 -0500 | [diff] [blame] | 218 | 3. FDTs are only loaded for images with an "os" property of "u-boot". |
| 219 | "linux" images are also supported with Falcon boot mode. |
| 220 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 221 | config SPL_LOAD_FIT_ADDRESS |
| 222 | hex "load address of fit image" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 223 | depends on SPL_LOAD_FIT || SPL_RAM_SUPPORT || TPL_RAM_SUPPORT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 224 | default 0x0 |
| 225 | help |
| 226 | Specify the load address of the fit image that will be loaded |
| 227 | by SPL. |
| 228 | |
| 229 | config SPL_LOAD_FIT_APPLY_OVERLAY |
| 230 | bool "Enable SPL applying DT overlays from FIT" |
| 231 | depends on SPL_LOAD_FIT |
| 232 | select OF_LIBFDT_OVERLAY |
| 233 | help |
| 234 | The device tree is loaded from the FIT image. Allow the SPL is to |
| 235 | also load device-tree overlays from the FIT image an apply them |
| 236 | over the device tree. |
| 237 | |
| 238 | config SPL_LOAD_FIT_APPLY_OVERLAY_BUF_SZ |
| 239 | depends on SPL_LOAD_FIT_APPLY_OVERLAY |
| 240 | default 0x10000 |
| 241 | hex "size of temporary buffer used to load the overlays" |
| 242 | help |
| 243 | The size of the area where the overlays will be loaded and |
| 244 | uncompress. Must be at least as large as biggest overlay |
| 245 | (uncompressed) |
| 246 | |
| 247 | config SPL_LOAD_FIT_FULL |
| 248 | bool "Enable SPL loading U-Boot as a FIT (full fitImage features)" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 249 | depends on FIT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 250 | select SPL_FIT |
| 251 | help |
| 252 | Normally with the SPL framework a legacy image is generated as part |
| 253 | of the build. This contains U-Boot along with information as to |
| 254 | where it should be loaded. This option instead enables generation |
| 255 | of a FIT (Flat Image Tree) which provides more flexibility. In |
| 256 | particular it can handle selecting from multiple device tree |
| 257 | and passing the correct one to U-Boot. |
| 258 | |
| 259 | config SPL_FIT_IMAGE_POST_PROCESS |
| 260 | bool "Enable post-processing of FIT artifacts after loading by the SPL" |
| 261 | depends on SPL_LOAD_FIT |
Andrew Davis | 042e87e | 2022-05-04 15:52:28 -0500 | [diff] [blame] | 262 | default y if TI_SECURE_DEVICE |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 263 | help |
| 264 | Allows doing any sort of manipulation to blobs after they got extracted |
| 265 | from the U-Boot FIT image like stripping off headers or modifying the |
| 266 | size of the blob, verification, authentication, decryption etc. in a |
| 267 | platform or board specific way. In order to use this feature a platform |
| 268 | or board-specific implementation of board_fit_image_post_process() must |
| 269 | be provided. Also, anything done during this post-processing step would |
| 270 | need to be comprehended in how the images were prepared before being |
| 271 | injected into the FIT creation (i.e. the blobs would have been pre- |
| 272 | processed before being added to the FIT image). |
| 273 | |
| 274 | config SPL_FIT_SOURCE |
| 275 | string ".its source file for U-Boot FIT image" |
| 276 | depends on SPL_FIT |
| 277 | help |
| 278 | Specifies a (platform specific) FIT source file to generate the |
| 279 | U-Boot FIT image. This could specify further image to load and/or |
| 280 | execute. |
| 281 | |
| 282 | config USE_SPL_FIT_GENERATOR |
| 283 | bool "Use a script to generate the .its script" |
Tom Rini | 90c7888 | 2022-12-04 10:14:20 -0500 | [diff] [blame] | 284 | depends on SPL_FIT |
Simon Glass | 31f35e8 | 2023-01-07 14:07:19 -0700 | [diff] [blame] | 285 | default y if SPL_FIT && ARCH_ZYNQMP |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 286 | |
| 287 | config SPL_FIT_GENERATOR |
| 288 | string ".its file generator script for U-Boot FIT image" |
| 289 | depends on USE_SPL_FIT_GENERATOR |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 290 | default "arch/arm/mach-zynqmp/mkimage_fit_atf.sh" if SPL_LOAD_FIT && ARCH_ZYNQMP |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 291 | help |
| 292 | Specifies a (platform specific) script file to generate the FIT |
| 293 | source file used to build the U-Boot FIT image file. This gets |
| 294 | passed a list of supported device tree file stub names to |
| 295 | include in the generated image. |
| 296 | |
Simon Glass | 4218456 | 2022-10-20 18:23:13 -0600 | [diff] [blame] | 297 | if VPL |
| 298 | |
| 299 | config VPL_FIT |
| 300 | bool "Support Flattened Image Tree within VPL" |
| 301 | depends on VPL |
| 302 | default y |
| 303 | select VPL_HASH |
| 304 | select VPL_OF_LIBFDT |
| 305 | |
| 306 | config VPL_FIT_PRINT |
| 307 | bool "Support FIT printing within VPL" |
| 308 | depends on VPL_FIT |
| 309 | default y |
| 310 | help |
| 311 | Support printing the content of the fitImage in a verbose manner in VPL. |
| 312 | |
| 313 | config VPL_FIT_FULL_CHECK |
| 314 | bool "Do a full check of the FIT before using it" |
| 315 | default y |
| 316 | help |
| 317 | Enable this do a full check of the FIT to make sure it is valid. This |
| 318 | helps to protect against carefully crafted FITs which take advantage |
| 319 | of bugs or omissions in the code. This includes a bad structure, |
| 320 | multiple root nodes and the like. |
| 321 | |
| 322 | config VPL_FIT_SIGNATURE |
| 323 | bool "Enable signature verification of FIT firmware within VPL" |
| 324 | depends on VPL_DM |
Simon Glass | 4218456 | 2022-10-20 18:23:13 -0600 | [diff] [blame] | 325 | default y |
| 326 | select FIT_SIGNATURE |
| 327 | select VPL_FIT |
| 328 | select VPL_CRYPTO |
| 329 | select VPL_HASH |
| 330 | imply VPL_RSA |
| 331 | imply VPL_RSA_VERIFY |
| 332 | select VPL_IMAGE_SIGN_INFO |
| 333 | select VPL_FIT_FULL_CHECK |
| 334 | |
| 335 | config VPL_FIT_SIGNATURE_MAX_SIZE |
| 336 | hex "Max size of signed FIT structures in VPL" |
| 337 | depends on VPL_FIT_SIGNATURE |
| 338 | default 0x10000000 |
| 339 | help |
| 340 | This option sets a max size in bytes for verified FIT uImages. |
| 341 | A sane value of 256MB protects corrupted DTB structures from overlapping |
| 342 | device memory. Assure this size does not extend past expected storage |
| 343 | space. |
| 344 | |
| 345 | endif # VPL |
| 346 | |
John Keeping | be43a35 | 2022-07-28 11:19:15 +0100 | [diff] [blame] | 347 | config PXE_UTILS |
| 348 | bool |
| 349 | select MENU |
| 350 | help |
| 351 | Utilities for parsing PXE file formats. |
| 352 | |
Simon Glass | a0c739c | 2023-03-24 16:58:13 -0400 | [diff] [blame^] | 353 | config BOOT_DEFAULTS |
| 354 | bool # Common defaults for standard boot and distroboot |
| 355 | imply USE_BOOTCOMMAND |
| 356 | select CMD_ENV_EXISTS |
| 357 | select CMD_EXT2 |
| 358 | select CMD_EXT4 |
| 359 | select CMD_FAT |
| 360 | select CMD_FS_GENERIC |
| 361 | select CMD_PART if PARTITIONS |
| 362 | select CMD_DHCP if CMD_NET |
| 363 | select CMD_PING if CMD_NET |
| 364 | select CMD_PXE if CMD_NET |
| 365 | select SUPPORT_RAW_INITRD |
| 366 | select ENV_VARS_UBOOT_CONFIG |
| 367 | select CMD_BOOTI if ARM64 |
| 368 | select CMD_BOOTZ if ARM && !ARM64 |
| 369 | imply CMD_MII if NET |
| 370 | imply USB_STORAGE |
| 371 | imply EFI_PARTITION |
| 372 | imply ISO_PARTITION |
| 373 | help |
| 374 | These are not required but are commonly needed to support a good |
| 375 | selection of booting methods. Enable this to improve the capability |
| 376 | of U-Boot to boot various images. Currently much functionality is |
| 377 | tied to enabling the command that exercises it. |
| 378 | |
Simon Glass | ef5e389 | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 379 | config BOOTSTD |
| 380 | bool "Standard boot support" |
| 381 | default y |
| 382 | depends on DM && OF_CONTROL && BLK |
| 383 | help |
| 384 | U-Boot supports a standard way of locating something to boot, |
| 385 | typically an Operating System such as Linux, provided by a distro such |
| 386 | as Arch Linux or Debian. Enable this to support iterating through |
| 387 | available bootdevs and using bootmeths to find bootflows suitable for |
| 388 | booting. |
| 389 | |
| 390 | Standard boot is not a standard way of booting, just a framework |
| 391 | within U-Boot for supporting all the different ways that exist. |
| 392 | |
| 393 | Terminology: |
| 394 | |
| 395 | - bootdev - a device which can hold a distro (e.g. MMC) |
| 396 | - bootmeth - a method to scan a bootdev to find bootflows (owned by |
| 397 | U-Boot) |
| 398 | - bootflow - a description of how to boot (owned by the distro) |
| 399 | |
| 400 | config BOOTSTD_FULL |
| 401 | bool "Enhanced features for standard boot" |
| 402 | default y if SANDBOX |
| 403 | help |
| 404 | This enables various useful features for standard boot, which are not |
| 405 | essential for operation: |
| 406 | |
| 407 | - bootdev, bootmeth commands |
| 408 | - extra features in the bootflow command |
| 409 | - support for selecting the ordering of bootmeths ("bootmeth order") |
| 410 | - support for selecting the ordering of bootdevs using the devicetree |
| 411 | as well as the "boot_targets" environment variable |
| 412 | |
Simon Glass | 4218456 | 2022-10-20 18:23:13 -0600 | [diff] [blame] | 413 | config SPL_BOOTSTD |
| 414 | bool "Standard boot support in VPL" |
| 415 | depends on SPL && SPL_DM && SPL_OF_CONTROL && SPL_BLK |
| 416 | default y if VPL |
| 417 | help |
| 418 | This enables standard boot in SPL. This is neeeded so that VBE |
| 419 | (Verified Boot for Embedded) can be used, since it depends on standard |
| 420 | boot. It is enabled by default since the main purpose of VPL is to |
| 421 | handle the firmware part of VBE. |
| 422 | |
| 423 | config VPL_BOOTSTD |
| 424 | bool "Standard boot support in VPL" |
| 425 | depends on VPL && VPL_DM && VPL_OF_CONTROL && VPL_BLK |
| 426 | default y |
| 427 | help |
| 428 | This enables standard boot in SPL. This is neeeded so that VBE |
| 429 | (Verified Boot for Embedded) can be used, since it depends on standard |
| 430 | boot. It is enabled by default since the main purpose of VPL is to |
| 431 | handle the firmware part of VBE. |
| 432 | |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 433 | if BOOTSTD |
| 434 | |
Simon Glass | 22353fa | 2023-01-28 15:00:21 -0700 | [diff] [blame] | 435 | config BOOTSTD_DEFAULTS |
| 436 | bool "Select some common defaults for standard boot" |
| 437 | depends on BOOTSTD |
| 438 | imply USE_BOOTCOMMAND |
Simon Glass | a0c739c | 2023-03-24 16:58:13 -0400 | [diff] [blame^] | 439 | select BOOT_DEFAULTS |
Simon Glass | 22353fa | 2023-01-28 15:00:21 -0700 | [diff] [blame] | 440 | help |
| 441 | These are not required but are commonly needed to support a good |
| 442 | selection of booting methods. Enable this to improve the capability |
| 443 | of U-Boot to boot various images. |
| 444 | |
Simon Glass | a91492b | 2022-04-24 23:31:27 -0600 | [diff] [blame] | 445 | config BOOTSTD_BOOTCOMMAND |
| 446 | bool "Use bootstd to boot" |
| 447 | default y if !DISTRO_DEFAULTS |
| 448 | help |
| 449 | Enable this to select a default boot-command suitable for booting |
| 450 | with standard boot. This can be overridden by the board if needed, |
| 451 | but the default command should be enough for most boards which use |
| 452 | standard boot. |
| 453 | |
| 454 | For now this is only selected if distro boot is NOT used, since |
| 455 | standard boot does not support all of the features of distro boot |
| 456 | yet. |
| 457 | |
Simon Glass | bc06aa0 | 2022-07-30 15:52:21 -0600 | [diff] [blame] | 458 | config BOOTMETH_GLOBAL |
| 459 | bool |
| 460 | help |
| 461 | Add support for global bootmeths. This feature is used by VBE and |
| 462 | EFI bootmgr, since they take full control over which bootdevs are |
| 463 | selected to boot. |
| 464 | |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 465 | config BOOTMETH_DISTRO |
| 466 | bool "Bootdev support for distro boot" |
John Keeping | be43a35 | 2022-07-28 11:19:15 +0100 | [diff] [blame] | 467 | select PXE_UTILS |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 468 | default y |
| 469 | help |
| 470 | Enables support for distro boot using bootdevs. This makes the |
| 471 | bootdevs look for a 'extlinux/extlinux.conf' on each filesystem |
| 472 | they scan. |
| 473 | |
| 474 | This provides a way to try out standard boot on an existing boot flow. |
| 475 | |
Simon Glass | dab2c28 | 2022-04-24 23:31:16 -0600 | [diff] [blame] | 476 | config BOOTMETH_DISTRO_PXE |
| 477 | bool "Bootdev support for distro boot over network" |
| 478 | depends on CMD_PXE && CMD_NET && DM_ETH |
| 479 | default y |
| 480 | help |
| 481 | Enables support for distro boot using bootdevs. This makes the |
| 482 | bootdevs look for a 'extlinux/extlinux.conf' on the tftp server. |
| 483 | |
| 484 | This provides a way to try out standard boot on an existing boot flow. |
| 485 | |
Simon Glass | acfa9bd | 2022-04-24 23:31:17 -0600 | [diff] [blame] | 486 | config BOOTMETH_EFILOADER |
| 487 | bool "Bootdev support for EFI boot" |
| 488 | depends on CMD_BOOTEFI |
| 489 | default y |
| 490 | help |
| 491 | Enables support for EFI boot using bootdevs. This makes the |
| 492 | bootdevs look for a 'boot<arch>.efi' on each filesystem |
| 493 | they scan. The resulting file is booted after enabling U-Boot's |
| 494 | EFI loader support. |
| 495 | |
| 496 | The <arch> depends on the architecture of the board: |
| 497 | |
| 498 | aa64 - aarch64 (ARM 64-bit) |
| 499 | arm - ARM 32-bit |
| 500 | ia32 - x86 32-bit |
| 501 | x64 - x86 64-bit |
| 502 | riscv32 - RISC-V 32-bit |
| 503 | riscv64 - RISC-V 64-bit |
| 504 | |
| 505 | This provides a way to try out standard boot on an existing boot flow. |
| 506 | |
Simon Glass | 4c7418f | 2022-07-30 15:52:32 -0600 | [diff] [blame] | 507 | config BOOTMETH_VBE |
| 508 | bool "Bootdev support for Verified Boot for Embedded" |
| 509 | depends on FIT |
| 510 | default y |
| 511 | select BOOTMETH_GLOBAL |
Tom Rini | 448e2b6 | 2023-01-16 15:46:49 -0500 | [diff] [blame] | 512 | select EVENT |
Simon Glass | 4c7418f | 2022-07-30 15:52:32 -0600 | [diff] [blame] | 513 | help |
| 514 | Enables support for VBE boot. This is a standard boot method which |
| 515 | supports selection of various firmware components, seleciton of an OS to |
| 516 | boot as well as updating these using fwupd. |
| 517 | |
Simon Glass | 4218456 | 2022-10-20 18:23:13 -0600 | [diff] [blame] | 518 | config SPL_BOOTMETH_VBE |
| 519 | bool "Bootdev support for Verified Boot for Embedded (SPL)" |
| 520 | depends on SPL && FIT |
Tom Rini | 448e2b6 | 2023-01-16 15:46:49 -0500 | [diff] [blame] | 521 | select EVENT |
Simon Glass | 4218456 | 2022-10-20 18:23:13 -0600 | [diff] [blame] | 522 | default y if VPL |
| 523 | help |
| 524 | Enables support for VBE boot. This is a standard boot method which |
| 525 | supports selection of various firmware components, seleciton of an OS to |
| 526 | boot as well as updating these using fwupd. |
| 527 | |
| 528 | config VPL_BOOTMETH_VBE |
| 529 | bool "Bootdev support for Verified Boot for Embedded (VPL)" |
| 530 | depends on VPL && FIT |
Tom Rini | 448e2b6 | 2023-01-16 15:46:49 -0500 | [diff] [blame] | 531 | select EVENT |
Simon Glass | 4218456 | 2022-10-20 18:23:13 -0600 | [diff] [blame] | 532 | default y |
| 533 | help |
| 534 | Enables support for VBE boot. This is a standard boot method which |
| 535 | supports selection of various firmware components, seleciton of an OS to |
| 536 | boot as well as updating these using fwupd. |
| 537 | |
Simon Glass | cb47e21 | 2022-07-30 15:52:33 -0600 | [diff] [blame] | 538 | if BOOTMETH_VBE |
| 539 | |
| 540 | config BOOTMETH_VBE_SIMPLE |
| 541 | bool "Bootdev support for VBE 'simple' method" |
| 542 | default y |
| 543 | help |
| 544 | Enables support for VBE 'simple' boot. This allows updating a single |
| 545 | firmware image in boot media such as MMC. It does not support any sort |
| 546 | of rollback, recovery or A/B boot. |
| 547 | |
Simon Glass | 4218456 | 2022-10-20 18:23:13 -0600 | [diff] [blame] | 548 | config BOOTMETH_VBE_SIMPLE_OS |
| 549 | bool "Bootdev support for VBE 'simple' method OS phase" |
| 550 | default y |
| 551 | help |
| 552 | Enables support for the OS parts of VBE 'simple' boot. This includes |
| 553 | fixing up the device tree with the required VBE information, ready |
| 554 | for booting into the OS. This option is only enabled for U-Boot |
| 555 | proper, since it is the phase where device tree fixups happen. |
| 556 | |
| 557 | config SPL_BOOTMETH_VBE_SIMPLE |
| 558 | bool "Bootdev support for VBE 'simple' method (SPL)" |
| 559 | depends on SPL |
| 560 | default y if VPL |
| 561 | help |
| 562 | Enables support for VBE 'simple' boot. This allows updating a single |
| 563 | firmware image in boot media such as MMC. It does not support any sort |
| 564 | of rollback, recovery or A/B boot. |
| 565 | |
| 566 | config VPL_BOOTMETH_VBE_SIMPLE |
| 567 | bool "Bootdev support for VBE 'simple' method (VPL)" |
| 568 | depends on VPL |
| 569 | default y |
| 570 | help |
| 571 | Enables support for VBE 'simple' boot. This allows updating a single |
| 572 | firmware image in boot media such as MMC. It does not support any sort |
| 573 | of rollback, recovery or A/B boot. |
| 574 | |
| 575 | config SPL_BOOTMETH_VBE_SIMPLE_FW |
| 576 | bool "Bootdev support for VBE 'simple' method firmware phase (SPL)" |
| 577 | depends on VPL |
| 578 | default y |
| 579 | help |
| 580 | Enables support for the firmware parts of VBE 'simple' boot. This |
| 581 | includes an SPL loader which locates the correct U-Boot to boot into. |
| 582 | This option should really only be enabled for VPL, since it is the |
| 583 | phase where the SPL + U-Boot decision should be made. But for now, |
| 584 | SPL does its own FIT-configuration selection. |
| 585 | |
| 586 | config VPL_BOOTMETH_VBE_SIMPLE_FW |
| 587 | bool "Bootdev support for VBE 'simple' method firmware phase (VPL)" |
| 588 | depends on VPL |
| 589 | default y |
| 590 | help |
| 591 | Enables support for the firmware parts of VBE 'simple' boot. This |
| 592 | includes an SPL loader which locates the correct SPL to boot into. |
| 593 | This option enabled for VPL, since it is the phase where the SPL |
| 594 | decision is made. |
| 595 | |
Simon Glass | cb47e21 | 2022-07-30 15:52:33 -0600 | [diff] [blame] | 596 | endif # BOOTMETH_VBE |
| 597 | |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 598 | config EXPO |
| 599 | bool "Support for expos - groups of scenes displaying a UI" |
Simon Glass | 0041b1c | 2023-01-28 15:00:18 -0700 | [diff] [blame] | 600 | depends on VIDEO |
Simon Glass | 87c6f8a | 2023-01-06 08:52:36 -0600 | [diff] [blame] | 601 | default y if BOOTMETH_VBE |
| 602 | help |
| 603 | An expo is a way of presenting and collecting information from the |
| 604 | user. It consists of a collection of 'scenes' of which only one is |
| 605 | presented at a time. An expo is typically used to show a boot menu |
| 606 | and allow settings to be changed. |
| 607 | |
| 608 | The expo can be presented in graphics form using a vidconsole, or in |
| 609 | text form on a serial console. |
| 610 | |
Simon Glass | 126947b | 2022-04-24 23:31:20 -0600 | [diff] [blame] | 611 | config BOOTMETH_SANDBOX |
| 612 | def_bool y |
| 613 | depends on SANDBOX |
| 614 | help |
| 615 | This is a sandbox bootmeth driver used for testing. It always returns |
| 616 | -ENOTSUPP when attempting to boot. |
| 617 | |
Simon Glass | d940924 | 2022-04-24 23:31:22 -0600 | [diff] [blame] | 618 | config BOOTMETH_SCRIPT |
| 619 | bool "Bootdev support for U-Boot scripts" |
| 620 | default y if BOOTSTD_FULL |
| 621 | help |
| 622 | Enables support for booting a distro via a U-Boot script. This makes |
| 623 | the bootdevs look for a 'boot/boot.scr' file which can be used to |
| 624 | boot the distro. |
| 625 | |
| 626 | This provides a way to try out standard boot on an existing boot flow. |
| 627 | It is not enabled by default to save space. |
| 628 | |
Simon Glass | 31aefaf | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 629 | endif |
| 630 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 631 | config LEGACY_IMAGE_FORMAT |
| 632 | bool "Enable support for the legacy image format" |
Andrew Davis | 52dc334 | 2022-05-04 15:52:27 -0500 | [diff] [blame] | 633 | default y if !FIT_SIGNATURE && !TI_SECURE_DEVICE |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 634 | help |
| 635 | This option enables the legacy image format. It is enabled by |
| 636 | default for backward compatibility, unless FIT_SIGNATURE is |
| 637 | set where it is disabled so that unsigned images cannot be |
| 638 | loaded. If a board needs the legacy image format support in this |
| 639 | case, enable it here. |
| 640 | |
Simon Glass | aefa34f | 2020-09-10 20:21:19 -0600 | [diff] [blame] | 641 | config SUPPORT_RAW_INITRD |
| 642 | bool "Enable raw initrd images" |
| 643 | help |
| 644 | Note, defining the SUPPORT_RAW_INITRD allows user to supply |
| 645 | kernel with raw initrd images. The syntax is slightly different, the |
| 646 | address of the initrd must be augmented by it's size, in the following |
| 647 | format: "<initrd address>:<initrd size>". |
| 648 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 649 | config OF_BOARD_SETUP |
| 650 | bool "Set up board-specific details in device tree before boot" |
| 651 | depends on OF_LIBFDT |
| 652 | help |
| 653 | This causes U-Boot to call ft_board_setup() before booting into |
| 654 | the Operating System. This function can set up various |
| 655 | board-specific information in the device tree for use by the OS. |
| 656 | The device tree is then passed to the OS. |
| 657 | |
| 658 | config OF_SYSTEM_SETUP |
| 659 | bool "Set up system-specific details in device tree before boot" |
| 660 | depends on OF_LIBFDT |
| 661 | help |
| 662 | This causes U-Boot to call ft_system_setup() before booting into |
| 663 | the Operating System. This function can set up various |
| 664 | system-specific information in the device tree for use by the OS. |
| 665 | The device tree is then passed to the OS. |
| 666 | |
| 667 | config OF_STDOUT_VIA_ALIAS |
| 668 | bool "Update the device-tree stdout alias from U-Boot" |
| 669 | depends on OF_LIBFDT |
| 670 | help |
| 671 | This uses U-Boot's serial alias from the aliases node to update |
| 672 | the device tree passed to the OS. The "linux,stdout-path" property |
| 673 | in the chosen node is set to point to the correct serial node. |
| 674 | This option currently references CONFIG_CONS_INDEX, which is |
| 675 | incorrect when used with device tree as this option does not |
| 676 | exist / should not be used. |
| 677 | |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 678 | config HAVE_TEXT_BASE |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 679 | bool |
| 680 | depends on !NIOS2 && !XTENSA |
| 681 | depends on !EFI_APP |
| 682 | default y |
| 683 | |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 684 | config TEXT_BASE |
| 685 | depends on HAVE_TEXT_BASE |
Tom Rini | 55adabb | 2021-07-09 10:39:21 -0400 | [diff] [blame] | 686 | default 0x0 if POSITION_INDEPENDENT |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 687 | default 0x80800000 if ARCH_OMAP2PLUS || ARCH_K3 |
Icenowy Zheng | b6ffd58 | 2022-01-29 10:23:09 -0500 | [diff] [blame] | 688 | default 0x81700000 if MACH_SUNIV |
| 689 | default 0x2a000000 if MACH_SUN9I |
Andre Przywara | 1bf98bd | 2022-07-03 00:47:20 +0100 | [diff] [blame] | 690 | default 0x4a000000 if SUNXI_MINIMUM_DRAM_MB >= 256 |
| 691 | default 0x42e00000 if SUNXI_MINIMUM_DRAM_MB >= 64 |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 692 | hex "Text Base" |
| 693 | help |
| 694 | The address in memory that U-Boot will be running from, initially. |
| 695 | |
Tom Rini | e4d741f | 2022-03-24 17:18:05 -0400 | [diff] [blame] | 696 | config HAVE_SYS_MONITOR_BASE |
| 697 | bool |
| 698 | depends on ARC || MIPS || M68K || NIOS2 || PPC || XTENSA || X86 \ |
Tom Rini | cc1015f | 2022-07-23 13:05:01 -0400 | [diff] [blame] | 699 | || ENV_IS_IN_FLASH || MTD_NOR_FLASH |
Tom Rini | e4d741f | 2022-03-24 17:18:05 -0400 | [diff] [blame] | 700 | depends on !EFI_APP |
| 701 | default y |
| 702 | |
| 703 | config SYS_MONITOR_BASE |
| 704 | depends on HAVE_SYS_MONITOR_BASE |
| 705 | hex "Physical start address of boot monitor code" |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 706 | default TEXT_BASE |
Tom Rini | e4d741f | 2022-03-24 17:18:05 -0400 | [diff] [blame] | 707 | help |
| 708 | The physical start address of boot monitor code (which is the same as |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 709 | CONFIG_TEXT_BASE when linking) and the same as CFG_SYS_FLASH_BASE |
Tom Rini | e4d741f | 2022-03-24 17:18:05 -0400 | [diff] [blame] | 710 | when booting from flash. |
| 711 | |
| 712 | config SPL_SYS_MONITOR_BASE |
| 713 | depends on MPC85xx && SPL && HAVE_SYS_MONITOR_BASE |
| 714 | hex "Physical start address of SPL monitor code" |
| 715 | default SPL_TEXT_BASE |
| 716 | |
| 717 | config TPL_SYS_MONITOR_BASE |
| 718 | depends on MPC85xx && TPL && HAVE_SYS_MONITOR_BASE |
| 719 | hex "Physical start address of TPL monitor code" |
| 720 | |
Tom Rini | 2f8a6db | 2021-12-14 13:36:40 -0500 | [diff] [blame] | 721 | config DYNAMIC_SYS_CLK_FREQ |
| 722 | bool "Determine CPU clock frequency at run-time" |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 723 | help |
Tom Rini | 2f8a6db | 2021-12-14 13:36:40 -0500 | [diff] [blame] | 724 | Implement a get_board_sys_clk function that will determine the CPU |
| 725 | clock frequency at run time, rather than define it statically. |
| 726 | |
| 727 | config SYS_CLK_FREQ |
| 728 | depends on !DYNAMIC_SYS_CLK_FREQ |
| 729 | int "CPU clock frequency" |
| 730 | default 125000000 if ARCH_LS1012A |
| 731 | default 100000000 if ARCH_P2020 || ARCH_T1024 || ARCH_T1042 || \ |
| 732 | ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3 |
| 733 | default 66666666 if ARCH_P1010 || ARCH_P1020 || ARCH_T4240 |
| 734 | default 66660000 if ARCH_T2080 |
| 735 | default 33333333 if RCAR_GEN3 |
| 736 | default 24000000 if ARCH_EXYNOS |
| 737 | default 20000000 if RCAR_GEN2 |
| 738 | default 0 |
| 739 | help |
| 740 | A static value for the CPU frequency. Note that if not required |
| 741 | for a given SoC, this can be left at 0. |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 742 | |
| 743 | config ARCH_FIXUP_FDT_MEMORY |
| 744 | bool "Enable arch_fixup_memory_banks() call" |
| 745 | default y |
| 746 | help |
| 747 | Enable FDT memory map syncup before OS boot. This feature can be |
| 748 | used for booting OS with different memory setup where the part of |
| 749 | the memory location should be used for different purpose. |
| 750 | |
Simon Glass | 96d0aa9 | 2020-11-04 09:57:35 -0700 | [diff] [blame] | 751 | config CHROMEOS |
| 752 | bool "Support booting Chrome OS" |
| 753 | help |
| 754 | Chrome OS requires U-Boot to set up a table indicating the boot mode |
| 755 | (e.g. Developer mode) and a few other things. Enable this if you are |
| 756 | booting on a Chromebook to avoid getting an error about an invalid |
| 757 | firmware ID. |
| 758 | |
| 759 | config CHROMEOS_VBOOT |
| 760 | bool "Support Chrome OS verified boot" |
| 761 | help |
| 762 | This is intended to enable the full Chrome OS verified boot support |
| 763 | in U-Boot. It is not actually implemented in the U-Boot source code |
| 764 | at present, so this option is always set to 'n'. It allows |
| 765 | distinguishing between booting Chrome OS in a basic way (developer |
| 766 | mode) and a full boot. |
| 767 | |
Tom Rini | 5a44618 | 2022-06-25 11:02:44 -0400 | [diff] [blame] | 768 | config SYS_RAMBOOT |
| 769 | bool |
| 770 | |
Tom Rini | d8ef01e | 2021-08-24 23:11:49 -0400 | [diff] [blame] | 771 | config RAMBOOT_PBL |
| 772 | bool "Freescale PBL(pre-boot loader) image format support" |
Tom Rini | 5a44618 | 2022-06-25 11:02:44 -0400 | [diff] [blame] | 773 | select SYS_RAMBOOT if PPC |
Tom Rini | d8ef01e | 2021-08-24 23:11:49 -0400 | [diff] [blame] | 774 | help |
| 775 | Some SoCs use PBL to load RCW and/or pre-initialization instructions. |
| 776 | For more details refer to doc/README.pblimage |
| 777 | |
Tom Rini | d433c74 | 2022-03-23 17:20:03 -0400 | [diff] [blame] | 778 | choice |
Tom Rini | ec9efcf | 2022-12-28 10:52:51 -0500 | [diff] [blame] | 779 | prompt "Freescale PBL (or predecessor) load location" |
Tom Rini | d433c74 | 2022-03-23 17:20:03 -0400 | [diff] [blame] | 780 | depends on RAMBOOT_PBL || ((TARGET_P1010RDB_PA || TARGET_P1010RDB_PB \ |
| 781 | || TARGET_P1020RDB_PC || TARGET_P1020RDB_PD || TARGET_P2020RDB) \ |
| 782 | && !CMD_NAND) |
| 783 | |
| 784 | config SDCARD |
Tom Rini | ec9efcf | 2022-12-28 10:52:51 -0500 | [diff] [blame] | 785 | bool "Freescale PBL (or similar) is found on SD card" |
Tom Rini | d433c74 | 2022-03-23 17:20:03 -0400 | [diff] [blame] | 786 | |
| 787 | config SPIFLASH |
Tom Rini | ec9efcf | 2022-12-28 10:52:51 -0500 | [diff] [blame] | 788 | bool "Freescale PBL (or similar) is found on SPI flash" |
| 789 | |
| 790 | config NO_PBL |
| 791 | bool "Freescale PBL (or similar) is not used in this case" |
Tom Rini | d433c74 | 2022-03-23 17:20:03 -0400 | [diff] [blame] | 792 | |
| 793 | endchoice |
| 794 | |
Tom Rini | d8e8461 | 2022-06-20 08:07:42 -0400 | [diff] [blame] | 795 | config FSL_FIXED_MMC_LOCATION |
| 796 | bool "PBL MMC is at a fixed location" |
| 797 | depends on SDCARD && !RAMBOOT_PBL |
| 798 | |
| 799 | config ESDHC_HC_BLK_ADDR |
| 800 | def_bool y |
| 801 | depends on FSL_FIXED_MMC_LOCATION && (ARCH_BSC9131 || ARCH_BSC9132 || ARCH_P1010) |
| 802 | help |
| 803 | In High Capacity SD Cards (> 2 GBytes), the 32-bit source address and |
| 804 | code length of these soc specify the memory address in block address |
| 805 | format. Block length is fixed to 512 bytes as per the SD High |
| 806 | Capacity specification. |
| 807 | |
Tom Rini | d8ef01e | 2021-08-24 23:11:49 -0400 | [diff] [blame] | 808 | config SYS_FSL_PBL_PBI |
| 809 | string "PBI(pre-boot instructions) commands for the PBL image" |
| 810 | depends on RAMBOOT_PBL |
| 811 | help |
| 812 | PBI commands can be used to configure SoC before it starts the execution. |
| 813 | Please refer doc/README.pblimage for more details. |
| 814 | |
| 815 | config SYS_FSL_PBL_RCW |
| 816 | string "Aadditional RCW (Power on reset configuration) for the PBL image" |
| 817 | depends on RAMBOOT_PBL |
| 818 | help |
| 819 | Enables addition of RCW (Power on reset configuration) in built image. |
| 820 | Please refer doc/README.pblimage for more details. |
| 821 | |
Tom Rini | bb20a10 | 2022-06-25 11:02:46 -0400 | [diff] [blame] | 822 | config SYS_BOOT_RAMDISK_HIGH |
| 823 | depends on CMD_BOOTM || CMD_BOOTI || CMD_BOOTZ |
| 824 | depends on !(NIOS2 || SANDBOX || SH || XTENSA) |
| 825 | def_bool y |
Simon Glass | febb985 | 2023-03-24 16:58:12 -0400 | [diff] [blame] | 826 | select LMB |
Tom Rini | bb20a10 | 2022-06-25 11:02:46 -0400 | [diff] [blame] | 827 | help |
| 828 | Enable initrd_high functionality. If defined then the initrd_high |
| 829 | feature is enabled and the boot* ramdisk subcommand is enabled. |
| 830 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 831 | endmenu # Boot images |
| 832 | |
Simon Glass | c9d4abe | 2023-03-24 16:58:11 -0400 | [diff] [blame] | 833 | config DISTRO_DEFAULTS |
| 834 | bool "Select defaults suitable for booting general purpose Linux distributions" |
Simon Glass | a0c739c | 2023-03-24 16:58:13 -0400 | [diff] [blame^] | 835 | select BOOT_DEFAULTS |
Simon Glass | c9d4abe | 2023-03-24 16:58:11 -0400 | [diff] [blame] | 836 | select AUTO_COMPLETE |
| 837 | select CMDLINE_EDITING |
Simon Glass | c9d4abe | 2023-03-24 16:58:11 -0400 | [diff] [blame] | 838 | select CMD_SYSBOOT |
Simon Glass | c9d4abe | 2023-03-24 16:58:11 -0400 | [diff] [blame] | 839 | select HUSH_PARSER |
Simon Glass | c9d4abe | 2023-03-24 16:58:11 -0400 | [diff] [blame] | 840 | select SYS_LONGHELP |
Simon Glass | c9d4abe | 2023-03-24 16:58:11 -0400 | [diff] [blame] | 841 | help |
| 842 | Select this to enable various options and commands which are suitable |
| 843 | for building u-boot for booting general purpose Linux distributions. |
| 844 | |
Simon Glass | 75e65cc | 2020-09-10 20:21:14 -0600 | [diff] [blame] | 845 | menu "Boot timing" |
| 846 | |
| 847 | config BOOTSTAGE |
| 848 | bool "Boot timing and reporting" |
| 849 | help |
| 850 | Enable recording of boot time while booting. To use it, insert |
| 851 | calls to bootstage_mark() with a suitable BOOTSTAGE_ID from |
| 852 | bootstage.h. Only a single entry is recorded for each ID. You can |
| 853 | give the entry a name with bootstage_mark_name(). You can also |
| 854 | record elapsed time in a particular stage using bootstage_start() |
| 855 | before starting and bootstage_accum() when finished. Bootstage will |
| 856 | add up all the accumulated time and report it. |
| 857 | |
| 858 | Normally, IDs are defined in bootstage.h but a small number of |
| 859 | additional 'user' IDs can be used by passing BOOTSTAGE_ID_ALLOC |
| 860 | as the ID. |
| 861 | |
| 862 | Calls to show_boot_progress() will also result in log entries but |
| 863 | these will not have names. |
| 864 | |
| 865 | config SPL_BOOTSTAGE |
| 866 | bool "Boot timing and reported in SPL" |
Tom Rini | b340199 | 2022-06-10 23:03:09 -0400 | [diff] [blame] | 867 | depends on BOOTSTAGE && SPL |
Simon Glass | 75e65cc | 2020-09-10 20:21:14 -0600 | [diff] [blame] | 868 | help |
| 869 | Enable recording of boot time in SPL. To make this visible to U-Boot |
| 870 | proper, enable BOOTSTAGE_STASH as well. This will stash the timing |
| 871 | information when SPL finishes and load it when U-Boot proper starts |
| 872 | up. |
| 873 | |
| 874 | config TPL_BOOTSTAGE |
| 875 | bool "Boot timing and reported in TPL" |
Tom Rini | 8bea4bf | 2022-06-08 08:24:39 -0400 | [diff] [blame] | 876 | depends on BOOTSTAGE && TPL |
Simon Glass | 75e65cc | 2020-09-10 20:21:14 -0600 | [diff] [blame] | 877 | help |
| 878 | Enable recording of boot time in SPL. To make this visible to U-Boot |
| 879 | proper, enable BOOTSTAGE_STASH as well. This will stash the timing |
| 880 | information when TPL finishes and load it when U-Boot proper starts |
| 881 | up. |
| 882 | |
| 883 | config BOOTSTAGE_REPORT |
| 884 | bool "Display a detailed boot timing report before booting the OS" |
| 885 | depends on BOOTSTAGE |
| 886 | help |
| 887 | Enable output of a boot time report just before the OS is booted. |
| 888 | This shows how long it took U-Boot to go through each stage of the |
| 889 | boot process. The report looks something like this: |
| 890 | |
| 891 | Timer summary in microseconds: |
| 892 | Mark Elapsed Stage |
| 893 | 0 0 reset |
| 894 | 3,575,678 3,575,678 board_init_f start |
| 895 | 3,575,695 17 arch_cpu_init A9 |
| 896 | 3,575,777 82 arch_cpu_init done |
| 897 | 3,659,598 83,821 board_init_r start |
| 898 | 3,910,375 250,777 main_loop |
| 899 | 29,916,167 26,005,792 bootm_start |
| 900 | 30,361,327 445,160 start_kernel |
| 901 | |
| 902 | config BOOTSTAGE_RECORD_COUNT |
| 903 | int "Number of boot stage records to store" |
Simon Glass | 939b04e | 2021-02-03 06:00:49 -0700 | [diff] [blame] | 904 | depends on BOOTSTAGE |
Simon Glass | 75e65cc | 2020-09-10 20:21:14 -0600 | [diff] [blame] | 905 | default 30 |
| 906 | help |
| 907 | This is the size of the bootstage record list and is the maximum |
| 908 | number of bootstage records that can be recorded. |
| 909 | |
| 910 | config SPL_BOOTSTAGE_RECORD_COUNT |
| 911 | int "Number of boot stage records to store for SPL" |
Simon Glass | 939b04e | 2021-02-03 06:00:49 -0700 | [diff] [blame] | 912 | depends on SPL_BOOTSTAGE |
Simon Glass | 75e65cc | 2020-09-10 20:21:14 -0600 | [diff] [blame] | 913 | default 5 |
| 914 | help |
| 915 | This is the size of the bootstage record list and is the maximum |
| 916 | number of bootstage records that can be recorded. |
| 917 | |
| 918 | config TPL_BOOTSTAGE_RECORD_COUNT |
| 919 | int "Number of boot stage records to store for TPL" |
Simon Glass | 939b04e | 2021-02-03 06:00:49 -0700 | [diff] [blame] | 920 | depends on TPL_BOOTSTAGE |
Simon Glass | 75e65cc | 2020-09-10 20:21:14 -0600 | [diff] [blame] | 921 | default 5 |
| 922 | help |
| 923 | This is the size of the bootstage record list and is the maximum |
| 924 | number of bootstage records that can be recorded. |
| 925 | |
| 926 | config BOOTSTAGE_FDT |
| 927 | bool "Store boot timing information in the OS device tree" |
| 928 | depends on BOOTSTAGE |
| 929 | help |
| 930 | Stash the bootstage information in the FDT. A root 'bootstage' |
| 931 | node is created with each bootstage id as a child. Each child |
| 932 | has a 'name' property and either 'mark' containing the |
| 933 | mark time in microseconds, or 'accum' containing the |
| 934 | accumulated time for that bootstage id in microseconds. |
| 935 | For example: |
| 936 | |
| 937 | bootstage { |
| 938 | 154 { |
| 939 | name = "board_init_f"; |
| 940 | mark = <3575678>; |
| 941 | }; |
| 942 | 170 { |
| 943 | name = "lcd"; |
| 944 | accum = <33482>; |
| 945 | }; |
| 946 | }; |
| 947 | |
| 948 | Code in the Linux kernel can find this in /proc/devicetree. |
| 949 | |
| 950 | config BOOTSTAGE_STASH |
| 951 | bool "Stash the boot timing information in memory before booting OS" |
| 952 | depends on BOOTSTAGE |
| 953 | help |
| 954 | Some OSes do not support device tree. Bootstage can instead write |
| 955 | the boot timing information in a binary format at a given address. |
| 956 | This happens through a call to bootstage_stash(), typically in |
| 957 | the CPU's cleanup_before_linux() function. You can use the |
| 958 | 'bootstage stash' and 'bootstage unstash' commands to do this on |
| 959 | the command line. |
| 960 | |
| 961 | config BOOTSTAGE_STASH_ADDR |
| 962 | hex "Address to stash boot timing information" |
| 963 | default 0 |
| 964 | help |
| 965 | Provide an address which will not be overwritten by the OS when it |
| 966 | starts, so that it can read this information when ready. |
| 967 | |
| 968 | config BOOTSTAGE_STASH_SIZE |
| 969 | hex "Size of boot timing stash region" |
| 970 | default 0x1000 |
| 971 | help |
| 972 | This should be large enough to hold the bootstage stash. A value of |
| 973 | 4096 (4KiB) is normally plenty. |
| 974 | |
| 975 | config SHOW_BOOT_PROGRESS |
| 976 | bool "Show boot progress in a board-specific manner" |
| 977 | help |
| 978 | Defining this option allows to add some board-specific code (calling |
| 979 | a user-provided function show_boot_progress(int) that enables you to |
| 980 | show the system's boot progress on some display (for example, some |
| 981 | LEDs) on your board. At the moment, the following checkpoints are |
| 982 | implemented: |
| 983 | |
| 984 | Legacy uImage format: |
| 985 | |
| 986 | Arg Where When |
| 987 | 1 common/cmd_bootm.c before attempting to boot an image |
| 988 | -1 common/cmd_bootm.c Image header has bad magic number |
| 989 | 2 common/cmd_bootm.c Image header has correct magic number |
| 990 | -2 common/cmd_bootm.c Image header has bad checksum |
| 991 | 3 common/cmd_bootm.c Image header has correct checksum |
| 992 | -3 common/cmd_bootm.c Image data has bad checksum |
| 993 | 4 common/cmd_bootm.c Image data has correct checksum |
| 994 | -4 common/cmd_bootm.c Image is for unsupported architecture |
| 995 | 5 common/cmd_bootm.c Architecture check OK |
| 996 | -5 common/cmd_bootm.c Wrong Image Type (not kernel, multi) |
| 997 | 6 common/cmd_bootm.c Image Type check OK |
| 998 | -6 common/cmd_bootm.c gunzip uncompression error |
| 999 | -7 common/cmd_bootm.c Unimplemented compression type |
| 1000 | 7 common/cmd_bootm.c Uncompression OK |
| 1001 | 8 common/cmd_bootm.c No uncompress/copy overwrite error |
| 1002 | -9 common/cmd_bootm.c Unsupported OS (not Linux, BSD, VxWorks, QNX) |
| 1003 | |
| 1004 | 9 common/image.c Start initial ramdisk verification |
| 1005 | -10 common/image.c Ramdisk header has bad magic number |
| 1006 | -11 common/image.c Ramdisk header has bad checksum |
| 1007 | 10 common/image.c Ramdisk header is OK |
| 1008 | -12 common/image.c Ramdisk data has bad checksum |
| 1009 | 11 common/image.c Ramdisk data has correct checksum |
| 1010 | 12 common/image.c Ramdisk verification complete, start loading |
| 1011 | -13 common/image.c Wrong Image Type (not PPC Linux ramdisk) |
| 1012 | 13 common/image.c Start multifile image verification |
| 1013 | 14 common/image.c No initial ramdisk, no multifile, continue. |
| 1014 | |
| 1015 | 15 arch/<arch>/lib/bootm.c All preparation done, transferring control to OS |
| 1016 | |
| 1017 | -30 arch/powerpc/lib/board.c Fatal error, hang the system |
| 1018 | -31 post/post.c POST test failed, detected by post_output_backlog() |
| 1019 | -32 post/post.c POST test failed, detected by post_run_single() |
| 1020 | |
| 1021 | 34 common/cmd_doc.c before loading a Image from a DOC device |
| 1022 | -35 common/cmd_doc.c Bad usage of "doc" command |
| 1023 | 35 common/cmd_doc.c correct usage of "doc" command |
| 1024 | -36 common/cmd_doc.c No boot device |
| 1025 | 36 common/cmd_doc.c correct boot device |
| 1026 | -37 common/cmd_doc.c Unknown Chip ID on boot device |
| 1027 | 37 common/cmd_doc.c correct chip ID found, device available |
| 1028 | -38 common/cmd_doc.c Read Error on boot device |
| 1029 | 38 common/cmd_doc.c reading Image header from DOC device OK |
| 1030 | -39 common/cmd_doc.c Image header has bad magic number |
| 1031 | 39 common/cmd_doc.c Image header has correct magic number |
| 1032 | -40 common/cmd_doc.c Error reading Image from DOC device |
| 1033 | 40 common/cmd_doc.c Image header has correct magic number |
| 1034 | 41 common/cmd_ide.c before loading a Image from a IDE device |
| 1035 | -42 common/cmd_ide.c Bad usage of "ide" command |
| 1036 | 42 common/cmd_ide.c correct usage of "ide" command |
| 1037 | -43 common/cmd_ide.c No boot device |
| 1038 | 43 common/cmd_ide.c boot device found |
| 1039 | -44 common/cmd_ide.c Device not available |
| 1040 | 44 common/cmd_ide.c Device available |
| 1041 | -45 common/cmd_ide.c wrong partition selected |
| 1042 | 45 common/cmd_ide.c partition selected |
| 1043 | -46 common/cmd_ide.c Unknown partition table |
| 1044 | 46 common/cmd_ide.c valid partition table found |
| 1045 | -47 common/cmd_ide.c Invalid partition type |
| 1046 | 47 common/cmd_ide.c correct partition type |
| 1047 | -48 common/cmd_ide.c Error reading Image Header on boot device |
| 1048 | 48 common/cmd_ide.c reading Image Header from IDE device OK |
| 1049 | -49 common/cmd_ide.c Image header has bad magic number |
| 1050 | 49 common/cmd_ide.c Image header has correct magic number |
| 1051 | -50 common/cmd_ide.c Image header has bad checksum |
| 1052 | 50 common/cmd_ide.c Image header has correct checksum |
| 1053 | -51 common/cmd_ide.c Error reading Image from IDE device |
| 1054 | 51 common/cmd_ide.c reading Image from IDE device OK |
| 1055 | 52 common/cmd_nand.c before loading a Image from a NAND device |
| 1056 | -53 common/cmd_nand.c Bad usage of "nand" command |
| 1057 | 53 common/cmd_nand.c correct usage of "nand" command |
| 1058 | -54 common/cmd_nand.c No boot device |
| 1059 | 54 common/cmd_nand.c boot device found |
| 1060 | -55 common/cmd_nand.c Unknown Chip ID on boot device |
| 1061 | 55 common/cmd_nand.c correct chip ID found, device available |
| 1062 | -56 common/cmd_nand.c Error reading Image Header on boot device |
| 1063 | 56 common/cmd_nand.c reading Image Header from NAND device OK |
| 1064 | -57 common/cmd_nand.c Image header has bad magic number |
| 1065 | 57 common/cmd_nand.c Image header has correct magic number |
| 1066 | -58 common/cmd_nand.c Error reading Image from NAND device |
| 1067 | 58 common/cmd_nand.c reading Image from NAND device OK |
| 1068 | |
| 1069 | -60 common/env_common.c Environment has a bad CRC, using default |
| 1070 | |
| 1071 | 64 net/eth.c starting with Ethernet configuration. |
| 1072 | -64 net/eth.c no Ethernet found. |
| 1073 | 65 net/eth.c Ethernet found. |
| 1074 | |
| 1075 | -80 common/cmd_net.c usage wrong |
| 1076 | 80 common/cmd_net.c before calling net_loop() |
| 1077 | -81 common/cmd_net.c some error in net_loop() occurred |
| 1078 | 81 common/cmd_net.c net_loop() back without error |
| 1079 | -82 common/cmd_net.c size == 0 (File with size 0 loaded) |
| 1080 | 82 common/cmd_net.c trying automatic boot |
| 1081 | 83 common/cmd_net.c running "source" command |
| 1082 | -83 common/cmd_net.c some error in automatic boot or "source" command |
| 1083 | 84 common/cmd_net.c end without errors |
| 1084 | |
| 1085 | FIT uImage format: |
| 1086 | |
| 1087 | Arg Where When |
| 1088 | 100 common/cmd_bootm.c Kernel FIT Image has correct format |
| 1089 | -100 common/cmd_bootm.c Kernel FIT Image has incorrect format |
| 1090 | 101 common/cmd_bootm.c No Kernel subimage unit name, using configuration |
| 1091 | -101 common/cmd_bootm.c Can't get configuration for kernel subimage |
| 1092 | 102 common/cmd_bootm.c Kernel unit name specified |
| 1093 | -103 common/cmd_bootm.c Can't get kernel subimage node offset |
| 1094 | 103 common/cmd_bootm.c Found configuration node |
| 1095 | 104 common/cmd_bootm.c Got kernel subimage node offset |
| 1096 | -104 common/cmd_bootm.c Kernel subimage hash verification failed |
| 1097 | 105 common/cmd_bootm.c Kernel subimage hash verification OK |
| 1098 | -105 common/cmd_bootm.c Kernel subimage is for unsupported architecture |
| 1099 | 106 common/cmd_bootm.c Architecture check OK |
| 1100 | -106 common/cmd_bootm.c Kernel subimage has wrong type |
| 1101 | 107 common/cmd_bootm.c Kernel subimage type OK |
| 1102 | -107 common/cmd_bootm.c Can't get kernel subimage data/size |
| 1103 | 108 common/cmd_bootm.c Got kernel subimage data/size |
| 1104 | -108 common/cmd_bootm.c Wrong image type (not legacy, FIT) |
| 1105 | -109 common/cmd_bootm.c Can't get kernel subimage type |
| 1106 | -110 common/cmd_bootm.c Can't get kernel subimage comp |
| 1107 | -111 common/cmd_bootm.c Can't get kernel subimage os |
| 1108 | -112 common/cmd_bootm.c Can't get kernel subimage load address |
| 1109 | -113 common/cmd_bootm.c Image uncompress/copy overwrite error |
| 1110 | |
| 1111 | 120 common/image.c Start initial ramdisk verification |
| 1112 | -120 common/image.c Ramdisk FIT image has incorrect format |
| 1113 | 121 common/image.c Ramdisk FIT image has correct format |
| 1114 | 122 common/image.c No ramdisk subimage unit name, using configuration |
| 1115 | -122 common/image.c Can't get configuration for ramdisk subimage |
| 1116 | 123 common/image.c Ramdisk unit name specified |
| 1117 | -124 common/image.c Can't get ramdisk subimage node offset |
| 1118 | 125 common/image.c Got ramdisk subimage node offset |
| 1119 | -125 common/image.c Ramdisk subimage hash verification failed |
| 1120 | 126 common/image.c Ramdisk subimage hash verification OK |
| 1121 | -126 common/image.c Ramdisk subimage for unsupported architecture |
| 1122 | 127 common/image.c Architecture check OK |
| 1123 | -127 common/image.c Can't get ramdisk subimage data/size |
| 1124 | 128 common/image.c Got ramdisk subimage data/size |
| 1125 | 129 common/image.c Can't get ramdisk load address |
| 1126 | -129 common/image.c Got ramdisk load address |
| 1127 | |
| 1128 | -130 common/cmd_doc.c Incorrect FIT image format |
| 1129 | 131 common/cmd_doc.c FIT image format OK |
| 1130 | |
| 1131 | -140 common/cmd_ide.c Incorrect FIT image format |
| 1132 | 141 common/cmd_ide.c FIT image format OK |
| 1133 | |
| 1134 | -150 common/cmd_nand.c Incorrect FIT image format |
| 1135 | 151 common/cmd_nand.c FIT image format OK |
| 1136 | |
Marek Vasut | b55881d | 2021-10-23 03:06:03 +0200 | [diff] [blame] | 1137 | config SPL_SHOW_BOOT_PROGRESS |
Jan Kiszka | c1df3d5 | 2021-11-03 15:09:36 +0100 | [diff] [blame] | 1138 | bool "Show boot progress in a board-specific manner in SPL" |
Marek Vasut | b55881d | 2021-10-23 03:06:03 +0200 | [diff] [blame] | 1139 | depends on SPL |
| 1140 | help |
| 1141 | Defining this option allows to add some board-specific code (calling |
| 1142 | a user-provided function show_boot_progress(int) that enables you to |
| 1143 | show the system's boot progress on some display (for example, some |
| 1144 | LEDs) on your board. For details see SHOW_BOOT_PROGRESS. |
| 1145 | |
Simon Glass | 75e65cc | 2020-09-10 20:21:14 -0600 | [diff] [blame] | 1146 | endmenu |
| 1147 | |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1148 | menu "Boot media" |
| 1149 | |
| 1150 | config NOR_BOOT |
| 1151 | bool "Support for booting from NOR flash" |
| 1152 | depends on NOR |
| 1153 | help |
| 1154 | Enabling this will make a U-Boot binary that is capable of being |
| 1155 | booted via NOR. In this case we will enable certain pinmux early |
| 1156 | as the ROM only partially sets up pinmux. We also default to using |
| 1157 | NOR for environment. |
| 1158 | |
| 1159 | config NAND_BOOT |
| 1160 | bool "Support for booting from NAND flash" |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1161 | imply MTD_RAW_NAND |
| 1162 | help |
| 1163 | Enabling this will make a U-Boot binary that is capable of being |
| 1164 | booted via NAND flash. This is not a must, some SoCs need this, |
| 1165 | some not. |
| 1166 | |
| 1167 | config ONENAND_BOOT |
| 1168 | bool "Support for booting from ONENAND" |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1169 | imply MTD_RAW_NAND |
| 1170 | help |
| 1171 | Enabling this will make a U-Boot binary that is capable of being |
| 1172 | booted via ONENAND. This is not a must, some SoCs need this, |
| 1173 | some not. |
| 1174 | |
| 1175 | config QSPI_BOOT |
| 1176 | bool "Support for booting from QSPI flash" |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1177 | help |
| 1178 | Enabling this will make a U-Boot binary that is capable of being |
| 1179 | booted via QSPI flash. This is not a must, some SoCs need this, |
| 1180 | some not. |
| 1181 | |
| 1182 | config SATA_BOOT |
| 1183 | bool "Support for booting from SATA" |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1184 | help |
| 1185 | Enabling this will make a U-Boot binary that is capable of being |
| 1186 | booted via SATA. This is not a must, some SoCs need this, |
| 1187 | some not. |
| 1188 | |
| 1189 | config SD_BOOT |
| 1190 | bool "Support for booting from SD/EMMC" |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1191 | help |
| 1192 | Enabling this will make a U-Boot binary that is capable of being |
| 1193 | booted via SD/EMMC. This is not a must, some SoCs need this, |
| 1194 | some not. |
| 1195 | |
Tom Rini | 66e0e2b | 2021-12-11 14:55:50 -0500 | [diff] [blame] | 1196 | config SD_BOOT_QSPI |
| 1197 | bool "Support for booting from SD/EMMC and enable QSPI" |
| 1198 | help |
| 1199 | Enabling this will make a U-Boot binary that is capable of being |
| 1200 | booted via SD/EMMC while enabling QSPI on the platform as well. This |
| 1201 | is not a must, some SoCs need this, some not. |
| 1202 | |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1203 | config SPI_BOOT |
| 1204 | bool "Support for booting from SPI flash" |
Simon Glass | 7b6baa3 | 2020-09-10 20:21:15 -0600 | [diff] [blame] | 1205 | help |
| 1206 | Enabling this will make a U-Boot binary that is capable of being |
| 1207 | booted via SPI flash. This is not a must, some SoCs need this, |
| 1208 | some not. |
| 1209 | |
| 1210 | endmenu |
| 1211 | |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1212 | menu "Autoboot options" |
| 1213 | |
| 1214 | config AUTOBOOT |
| 1215 | bool "Autoboot" |
| 1216 | default y |
| 1217 | help |
| 1218 | This enables the autoboot. See doc/README.autoboot for detail. |
| 1219 | |
Simon Glass | 95fd4f3 | 2020-09-10 20:21:17 -0600 | [diff] [blame] | 1220 | config BOOTDELAY |
| 1221 | int "delay in seconds before automatically booting" |
| 1222 | default 2 |
| 1223 | depends on AUTOBOOT |
| 1224 | help |
| 1225 | Delay before automatically running bootcmd; |
| 1226 | set to 0 to autoboot with no delay, but you can stop it by key input. |
| 1227 | set to -1 to disable autoboot. |
| 1228 | set to -2 to autoboot with no delay and not check for abort |
| 1229 | |
| 1230 | If this value is >= 0 then it is also used for the default delay |
| 1231 | before starting the default entry in bootmenu. If it is < 0 then |
| 1232 | a default value of 10s is used. |
| 1233 | |
| 1234 | See doc/README.autoboot for details. |
| 1235 | |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1236 | config AUTOBOOT_KEYED |
| 1237 | bool "Stop autobooting via specific input key / string" |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1238 | help |
| 1239 | This option enables stopping (aborting) of the automatic |
| 1240 | boot feature only by issuing a specific input key or |
| 1241 | string. If not enabled, any input key will abort the |
| 1242 | U-Boot automatic booting process and bring the device |
| 1243 | to the U-Boot prompt for user input. |
| 1244 | |
Steffen Jaeckel | d199c3a | 2021-07-08 15:57:38 +0200 | [diff] [blame] | 1245 | config AUTOBOOT_FLUSH_STDIN |
| 1246 | bool "Enable flushing stdin before starting to read the password" |
| 1247 | depends on AUTOBOOT_KEYED && !SANDBOX |
| 1248 | help |
| 1249 | When this option is enabled stdin buffer will be flushed before |
| 1250 | starting to read the password. |
| 1251 | This can't be enabled for the sandbox as flushing stdin would |
| 1252 | break the autoboot unit tests. |
| 1253 | |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1254 | config AUTOBOOT_PROMPT |
| 1255 | string "Autoboot stop prompt" |
| 1256 | depends on AUTOBOOT_KEYED |
| 1257 | default "Autoboot in %d seconds\\n" |
| 1258 | help |
| 1259 | This string is displayed before the boot delay selected by |
| 1260 | CONFIG_BOOTDELAY starts. If it is not defined there is no |
| 1261 | output indicating that autoboot is in progress. |
| 1262 | |
| 1263 | Note that this define is used as the (only) argument to a |
| 1264 | printf() call, so it may contain '%' format specifications, |
| 1265 | provided that it also includes, sepearated by commas exactly |
| 1266 | like in a printf statement, the required arguments. It is |
| 1267 | the responsibility of the user to select only such arguments |
| 1268 | that are valid in the given context. |
| 1269 | |
| 1270 | config AUTOBOOT_ENCRYPTION |
| 1271 | bool "Enable encryption in autoboot stopping" |
| 1272 | depends on AUTOBOOT_KEYED |
| 1273 | help |
| 1274 | This option allows a string to be entered into U-Boot to stop the |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 1275 | autoboot. |
| 1276 | The behavior depends whether CONFIG_CRYPT_PW from lib is enabled |
| 1277 | or not. |
| 1278 | In case CONFIG_CRYPT_PW is enabled, the string will be forwarded |
| 1279 | to the crypt-based functionality and be compared against the |
| 1280 | string in the environment variable 'bootstopkeycrypt'. |
| 1281 | In case CONFIG_CRYPT_PW is disabled the string itself is hashed |
| 1282 | and compared against the hash in the environment variable |
| 1283 | 'bootstopkeysha256'. |
| 1284 | If it matches in either case then boot stops and |
| 1285 | a command-line prompt is presented. |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1286 | This provides a way to ship a secure production device which can also |
| 1287 | be accessed at the U-Boot command line. |
| 1288 | |
Steffen Jaeckel | 3319874 | 2021-07-08 15:57:39 +0200 | [diff] [blame] | 1289 | config AUTOBOOT_SHA256_FALLBACK |
| 1290 | bool "Allow fallback from crypt-hashed password to sha256" |
| 1291 | depends on AUTOBOOT_ENCRYPTION && CRYPT_PW |
| 1292 | help |
| 1293 | This option adds support to fall back from crypt-hashed |
| 1294 | passwords to checking a SHA256 hashed password in case the |
| 1295 | 'bootstopusesha256' environment variable is set to 'true'. |
| 1296 | |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1297 | config AUTOBOOT_DELAY_STR |
| 1298 | string "Delay autobooting via specific input key / string" |
| 1299 | depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION |
| 1300 | help |
| 1301 | This option delays the automatic boot feature by issuing |
| 1302 | a specific input key or string. If CONFIG_AUTOBOOT_DELAY_STR |
| 1303 | or the environment variable "bootdelaykey" is specified |
| 1304 | and this string is received from console input before |
| 1305 | autoboot starts booting, U-Boot gives a command prompt. The |
| 1306 | U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is |
| 1307 | used, otherwise it never times out. |
| 1308 | |
| 1309 | config AUTOBOOT_STOP_STR |
| 1310 | string "Stop autobooting via specific input key / string" |
| 1311 | depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION |
| 1312 | help |
| 1313 | This option enables stopping (aborting) of the automatic |
| 1314 | boot feature only by issuing a specific input key or |
| 1315 | string. If CONFIG_AUTOBOOT_STOP_STR or the environment |
| 1316 | variable "bootstopkey" is specified and this string is |
| 1317 | received from console input before autoboot starts booting, |
| 1318 | U-Boot gives a command prompt. The U-Boot prompt never |
| 1319 | times out, even if CONFIG_BOOT_RETRY_TIME is used. |
| 1320 | |
| 1321 | config AUTOBOOT_KEYED_CTRLC |
| 1322 | bool "Enable Ctrl-C autoboot interruption" |
| 1323 | depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1324 | help |
| 1325 | This option allows for the boot sequence to be interrupted |
| 1326 | by ctrl-c, in addition to the "bootdelaykey" and "bootstopkey". |
| 1327 | Setting this variable provides an escape sequence from the |
| 1328 | limited "password" strings. |
| 1329 | |
Steffen Jaeckel | 6c0ce6d | 2021-07-08 15:57:37 +0200 | [diff] [blame] | 1330 | config AUTOBOOT_NEVER_TIMEOUT |
| 1331 | bool "Make the password entry never time-out" |
| 1332 | depends on AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION && CRYPT_PW |
| 1333 | help |
| 1334 | This option removes the timeout from the password entry |
| 1335 | when the user first presses the <Enter> key before entering |
| 1336 | any other character. |
| 1337 | |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 1338 | config AUTOBOOT_STOP_STR_ENABLE |
| 1339 | bool "Enable fixed string to stop autobooting" |
| 1340 | depends on AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION |
| 1341 | help |
| 1342 | This option enables the feature to add a fixed stop |
| 1343 | string that is defined at compile time. |
| 1344 | In every case it will be tried to load the stop |
| 1345 | string from the environment. |
| 1346 | In case this is enabled and there is no stop string |
| 1347 | in the environment, this will be used as default value. |
| 1348 | |
| 1349 | config AUTOBOOT_STOP_STR_CRYPT |
| 1350 | string "Stop autobooting via crypt-hashed password" |
| 1351 | depends on AUTOBOOT_STOP_STR_ENABLE && CRYPT_PW |
| 1352 | help |
| 1353 | This option adds the feature to only stop the autobooting, |
| 1354 | and therefore boot into the U-Boot prompt, when the input |
| 1355 | string / password matches a values that is hashed via |
| 1356 | one of the supported crypt-style password hashing options |
| 1357 | and saved in the environment variable "bootstopkeycrypt". |
| 1358 | |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1359 | config AUTOBOOT_STOP_STR_SHA256 |
Steffen Jaeckel | 25c8b9f | 2021-07-08 15:57:40 +0200 | [diff] [blame] | 1360 | string "Stop autobooting via SHA256 hashed password" |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 1361 | depends on AUTOBOOT_STOP_STR_ENABLE |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1362 | help |
| 1363 | This option adds the feature to only stop the autobooting, |
| 1364 | and therefore boot into the U-Boot prompt, when the input |
| 1365 | string / password matches a values that is encypted via |
Joel Peshkin | 652b504 | 2020-11-21 17:18:59 -0800 | [diff] [blame] | 1366 | a SHA256 hash and saved in the environment variable |
| 1367 | "bootstopkeysha256". If the value in that variable |
| 1368 | includes a ":", the portion prior to the ":" will be treated |
| 1369 | as a salt value. |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1370 | |
| 1371 | config AUTOBOOT_USE_MENUKEY |
| 1372 | bool "Allow a specify key to run a menu from the environment" |
| 1373 | depends on !AUTOBOOT_KEYED |
| 1374 | help |
| 1375 | If a specific key is pressed to stop autoboot, then the commands in |
| 1376 | the environment variable 'menucmd' are executed before boot starts. |
| 1377 | |
| 1378 | config AUTOBOOT_MENUKEY |
| 1379 | int "ASCII value of boot key to show a menu" |
| 1380 | default 0 |
| 1381 | depends on AUTOBOOT_USE_MENUKEY |
| 1382 | help |
| 1383 | If this key is pressed to stop autoboot, then the commands in the |
| 1384 | environment variable 'menucmd' will be executed before boot starts. |
| 1385 | For example, 33 means "!" in ASCII, so pressing ! at boot would take |
| 1386 | this action. |
| 1387 | |
| 1388 | config AUTOBOOT_MENU_SHOW |
| 1389 | bool "Show a menu on boot" |
| 1390 | depends on CMD_BOOTMENU |
| 1391 | help |
| 1392 | This enables the boot menu, controlled by environment variables |
| 1393 | defined by the board. The menu starts after running the 'preboot' |
| 1394 | environmnent variable (if enabled) and before handling the boot delay. |
| 1395 | See README.bootmenu for more details. |
| 1396 | |
Masahisa Kojima | 83f7363 | 2022-05-26 19:09:38 +0900 | [diff] [blame] | 1397 | config BOOTMENU_DISABLE_UBOOT_CONSOLE |
| 1398 | bool "Disallow bootmenu to enter the U-Boot console" |
| 1399 | depends on AUTOBOOT_MENU_SHOW |
| 1400 | help |
| 1401 | If this option is enabled, user can not enter the U-Boot console from |
| 1402 | bootmenu. It increases the system security. |
| 1403 | |
Tom Rini | 69c8a81 | 2022-03-11 09:12:04 -0500 | [diff] [blame] | 1404 | config BOOT_RETRY |
| 1405 | bool "Boot retry feature" |
| 1406 | help |
| 1407 | Allow for having the U-Boot command prompt time out and attempt |
| 1408 | to boot again. If the environment variable "bootretry" is found then |
| 1409 | its value is used, otherwise the retry timeout is |
| 1410 | CONFIG_BOOT_RETRY_TIME. CONFIG_BOOT_RETRY_MIN is optional and |
| 1411 | defaults to CONFIG_BOOT_RETRY_TIME. All times are in seconds. |
| 1412 | |
| 1413 | config BOOT_RETRY_TIME |
| 1414 | int "Timeout in seconds before attempting to boot again" |
| 1415 | depends on BOOT_RETRY |
| 1416 | help |
| 1417 | Time in seconds before the U-Boot prompt will timeout and boot will |
| 1418 | be attempted again. |
| 1419 | |
| 1420 | config BOOT_RETRY_MIN |
| 1421 | int "Minimum timeout in seconds for 'bootretry'" |
| 1422 | depends on BOOT_RETRY |
| 1423 | default BOOT_RETRY_TIME |
| 1424 | help |
| 1425 | The minimum time in seconds that "bootretry" can be set to. |
| 1426 | |
| 1427 | config RESET_TO_RETRY |
| 1428 | bool "Reset the board to retry autoboot" |
| 1429 | depends on BOOT_RETRY |
| 1430 | help |
| 1431 | After the countdown timed out, the board will be reset to restart |
| 1432 | again. |
| 1433 | |
Simon Glass | 98eed0d | 2020-09-10 20:21:16 -0600 | [diff] [blame] | 1434 | endmenu |
| 1435 | |
Philippe Reynes | 9822074 | 2022-03-28 22:56:59 +0200 | [diff] [blame] | 1436 | menu "Image support" |
| 1437 | |
| 1438 | config IMAGE_PRE_LOAD |
| 1439 | bool "Image pre-load support" |
| 1440 | help |
| 1441 | Enable an image pre-load stage in the SPL. |
| 1442 | This pre-load stage allows to do some manipulation |
| 1443 | or check (for example signature check) on an image |
| 1444 | before launching it. |
| 1445 | |
| 1446 | config SPL_IMAGE_PRE_LOAD |
| 1447 | bool "Image pre-load support within SPL" |
| 1448 | depends on SPL && IMAGE_PRE_LOAD |
| 1449 | help |
| 1450 | Enable an image pre-load stage in the SPL. |
| 1451 | This pre-load stage allows to do some manipulation |
| 1452 | or check (for example signature check) on an image |
| 1453 | before launching it. |
| 1454 | |
| 1455 | config IMAGE_PRE_LOAD_SIG |
| 1456 | bool "Image pre-load signature support" |
| 1457 | depends on IMAGE_PRE_LOAD |
| 1458 | select FIT_SIGNATURE |
| 1459 | select RSA |
| 1460 | select RSA_VERIFY_WITH_PKEY |
| 1461 | help |
| 1462 | Enable signature check support in the pre-load stage. |
| 1463 | For this feature a very simple header is added before |
| 1464 | the image with few fields: |
| 1465 | - a magic |
| 1466 | - the image size |
| 1467 | - the signature |
| 1468 | All other information (header size, type of signature, |
| 1469 | ...) are provided in the node /image/pre-load/sig of |
| 1470 | u-boot. |
| 1471 | |
| 1472 | config SPL_IMAGE_PRE_LOAD_SIG |
| 1473 | bool "Image pre-load signature support witin SPL" |
| 1474 | depends on SPL_IMAGE_PRE_LOAD && IMAGE_PRE_LOAD_SIG |
| 1475 | select SPL_FIT_SIGNATURE |
| 1476 | select SPL_RSA |
| 1477 | select SPL_RSA_VERIFY_WITH_PKEY |
| 1478 | help |
| 1479 | Enable signature check support in the pre-load stage in the SPL. |
| 1480 | For this feature a very simple header is added before |
| 1481 | the image with few fields: |
| 1482 | - a magic |
| 1483 | - the image size |
| 1484 | - the signature |
| 1485 | All other information (header size, type of signature, |
| 1486 | ...) are provided in the node /image/pre-load/sig of |
| 1487 | u-boot. |
| 1488 | |
| 1489 | endmenu |
| 1490 | |
Simon Glass | fe5db25 | 2020-09-10 20:21:18 -0600 | [diff] [blame] | 1491 | config USE_BOOTARGS |
| 1492 | bool "Enable boot arguments" |
| 1493 | help |
| 1494 | Provide boot arguments to bootm command. Boot arguments are specified |
| 1495 | in CONFIG_BOOTARGS option. Enable this option to be able to specify |
| 1496 | CONFIG_BOOTARGS string. If this option is disabled, CONFIG_BOOTARGS |
| 1497 | will be undefined and won't take any space in U-Boot image. |
| 1498 | |
| 1499 | config BOOTARGS |
| 1500 | string "Boot arguments" |
| 1501 | depends on USE_BOOTARGS && !USE_DEFAULT_ENV_FILE |
| 1502 | help |
| 1503 | This can be used to pass arguments to the bootm command. The value of |
| 1504 | CONFIG_BOOTARGS goes into the environment value "bootargs". Note that |
| 1505 | this value will also override the "chosen" node in FDT blob. |
| 1506 | |
Simon Glass | 51bb338 | 2020-11-05 10:33:48 -0700 | [diff] [blame] | 1507 | config BOOTARGS_SUBST |
| 1508 | bool "Support substituting strings in boot arguments" |
| 1509 | help |
| 1510 | This allows substituting string values in the boot arguments. These |
| 1511 | are applied after the commandline has been built. |
| 1512 | |
| 1513 | One use for this is to insert the root-disk UUID into the command |
| 1514 | line where bootargs contains "root=${uuid}" |
| 1515 | |
| 1516 | setenv bootargs "console= root=${uuid}" |
| 1517 | # Set the 'uuid' environment variable |
| 1518 | part uuid mmc 2:2 uuid |
| 1519 | |
| 1520 | # Command-line substitution will put the real uuid into the |
| 1521 | # kernel command line |
| 1522 | bootm |
| 1523 | |
Simon Glass | fe5db25 | 2020-09-10 20:21:18 -0600 | [diff] [blame] | 1524 | config USE_BOOTCOMMAND |
| 1525 | bool "Enable a default value for bootcmd" |
| 1526 | help |
| 1527 | Provide a default value for the bootcmd entry in the environment. If |
| 1528 | autoboot is enabled this is what will be run automatically. Enable |
| 1529 | this option to be able to specify CONFIG_BOOTCOMMAND as a string. If |
| 1530 | this option is disabled, CONFIG_BOOTCOMMAND will be undefined and |
| 1531 | won't take any space in U-Boot image. |
| 1532 | |
| 1533 | config BOOTCOMMAND |
| 1534 | string "bootcmd value" |
| 1535 | depends on USE_BOOTCOMMAND && !USE_DEFAULT_ENV_FILE |
Simon Glass | a91492b | 2022-04-24 23:31:27 -0600 | [diff] [blame] | 1536 | default "bootflow scan -lb" if BOOTSTD_BOOTCOMMAND && CMD_BOOTFLOW_FULL |
| 1537 | default "bootflow scan" if BOOTSTD_BOOTCOMMAND && !CMD_BOOTFLOW_FULL |
| 1538 | default "run distro_bootcmd" if !BOOTSTD_BOOTCOMMAND && DISTRO_DEFAULTS |
Simon Glass | fe5db25 | 2020-09-10 20:21:18 -0600 | [diff] [blame] | 1539 | help |
| 1540 | This is the string of commands that will be used as bootcmd and if |
| 1541 | AUTOBOOT is set, automatically run. |
| 1542 | |
| 1543 | config USE_PREBOOT |
| 1544 | bool "Enable preboot" |
| 1545 | help |
| 1546 | When this option is enabled, the existence of the environment |
| 1547 | variable "preboot" will be checked immediately before starting the |
| 1548 | CONFIG_BOOTDELAY countdown and/or running the auto-boot command resp. |
| 1549 | entering interactive mode. |
| 1550 | |
| 1551 | This feature is especially useful when "preboot" is automatically |
| 1552 | generated or modified. For example, the boot code can modify the |
| 1553 | "preboot" when a user holds down a certain combination of keys. |
| 1554 | |
| 1555 | config PREBOOT |
| 1556 | string "preboot default value" |
| 1557 | depends on USE_PREBOOT && !USE_DEFAULT_ENV_FILE |
Patrick Delaunay | 87459da | 2020-10-12 09:47:50 +0200 | [diff] [blame] | 1558 | default "usb start" if USB_KEYBOARD |
Simon Glass | fe5db25 | 2020-09-10 20:21:18 -0600 | [diff] [blame] | 1559 | default "" |
| 1560 | help |
| 1561 | This is the default of "preboot" environment variable. |
| 1562 | |
Pali Rohár | 2827c2f | 2022-07-10 13:42:55 +0200 | [diff] [blame] | 1563 | config PREBOOT_DEFINED |
| 1564 | bool |
| 1565 | default y if PREBOOT != "" |
| 1566 | |
Simon Glass | 832876a | 2020-09-10 20:21:20 -0600 | [diff] [blame] | 1567 | config DEFAULT_FDT_FILE |
| 1568 | string "Default fdt file" |
| 1569 | help |
| 1570 | This option is used to set the default fdt file to boot OS. |
| 1571 | |
Dzmitry Sankouski | 12a3e1a | 2022-02-22 21:49:52 +0300 | [diff] [blame] | 1572 | config SAVE_PREV_BL_FDT_ADDR |
| 1573 | depends on ARM |
| 1574 | bool "Saves fdt address, passed by the previous bootloader, to env var" |
| 1575 | help |
| 1576 | When u-boot is used as a chain-loaded bootloader (replacing OS kernel), |
| 1577 | enable this option to save fdt address, passed by the |
| 1578 | previous bootloader for future use. |
| 1579 | Address is saved to `prevbl_fdt_addr` environment variable. |
| 1580 | |
| 1581 | If no fdt was provided by previous bootloader, no env variables |
| 1582 | will be created. |
| 1583 | |
| 1584 | config SAVE_PREV_BL_INITRAMFS_START_ADDR |
| 1585 | depends on ARM |
| 1586 | bool "Saves initramfs address, passed by the previous bootloader, to env var" |
| 1587 | help |
| 1588 | When u-boot is used as a chain-loaded bootloader(replacing OS kernel), |
| 1589 | enable this option to save initramfs address, passed by the |
| 1590 | previous bootloader for future use. |
| 1591 | Address is saved to `prevbl_initrd_start_addr` environment variable. |
| 1592 | |
| 1593 | If no initramfs was provided by previous bootloader, no env variables |
| 1594 | will be created. |
| 1595 | |
Simon Glass | cf29816 | 2020-09-10 20:21:13 -0600 | [diff] [blame] | 1596 | endmenu # Booting |