Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 |
| 4 | * NVIDIA Corporation <www.nvidia.com> |
| 5 | * |
| 6 | * Copyright 2014 Red Hat, Inc. |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H |
| 10 | #define _CONFIG_CMD_DISTRO_BOOTCMD_H |
| 11 | |
Stephen Warren | a2baeef | 2015-03-10 15:40:58 -0600 | [diff] [blame] | 12 | /* |
| 13 | * A note on error handling: It is possible for BOOT_TARGET_DEVICES to |
| 14 | * reference a device that is not enabled in the U-Boot configuration, e.g. |
| 15 | * it may include MMC in the list without CONFIG_CMD_MMC being enabled. Given |
| 16 | * that BOOT_TARGET_DEVICES is a macro that's expanded by the C pre-processor |
| 17 | * at compile time, it's not possible to detect and report such problems via |
| 18 | * a simple #ifdef/#error combination. Still, the code needs to report errors. |
| 19 | * The best way I've found to do this is to make BOOT_TARGET_DEVICES expand to |
| 20 | * reference a non-existent symbol, and have the name of that symbol encode |
| 21 | * the error message. Consequently, this file contains references to e.g. |
| 22 | * BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC. Given the |
| 23 | * prevalence of capitals here, this looks like a pre-processor macro and |
| 24 | * hence seems like it should be all capitals, but it's really an error |
| 25 | * message that includes some other pre-processor symbols in the text. |
| 26 | */ |
| 27 | |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 28 | #define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \ |
| 29 | "if " #devtypel " dev ${devnum}; then " \ |
AKASHI Takahiro | 6804288 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 30 | "devtype=" #devtypel "; " \ |
Sjoerd Simons | 275537b | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 31 | "run scan_dev_for_boot_part; " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 32 | "fi\0" |
| 33 | |
| 34 | #define BOOTENV_SHARED_BLKDEV(devtypel) \ |
| 35 | #devtypel "_boot=" \ |
| 36 | BOOTENV_SHARED_BLKDEV_BODY(devtypel) |
| 37 | |
| 38 | #define BOOTENV_DEV_BLKDEV(devtypeu, devtypel, instance) \ |
| 39 | "bootcmd_" #devtypel #instance "=" \ |
AKASHI Takahiro | 6804288 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 40 | "devnum=" #instance "; " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 41 | "run " #devtypel "_boot\0" |
| 42 | |
| 43 | #define BOOTENV_DEV_NAME_BLKDEV(devtypeu, devtypel, instance) \ |
| 44 | #devtypel #instance " " |
| 45 | |
Sjoerd Simons | 1d854d6 | 2015-04-13 22:54:24 +0200 | [diff] [blame] | 46 | #ifdef CONFIG_SANDBOX |
| 47 | #define BOOTENV_SHARED_HOST BOOTENV_SHARED_BLKDEV(host) |
| 48 | #define BOOTENV_DEV_HOST BOOTENV_DEV_BLKDEV |
| 49 | #define BOOTENV_DEV_NAME_HOST BOOTENV_DEV_NAME_BLKDEV |
| 50 | #else |
| 51 | #define BOOTENV_SHARED_HOST |
| 52 | #define BOOTENV_DEV_HOST \ |
| 53 | BOOT_TARGET_DEVICES_references_HOST_without_CONFIG_SANDBOX |
| 54 | #define BOOTENV_DEV_NAME_HOST \ |
| 55 | BOOT_TARGET_DEVICES_references_HOST_without_CONFIG_SANDBOX |
| 56 | #endif |
| 57 | |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 58 | #ifdef CONFIG_CMD_MMC |
| 59 | #define BOOTENV_SHARED_MMC BOOTENV_SHARED_BLKDEV(mmc) |
| 60 | #define BOOTENV_DEV_MMC BOOTENV_DEV_BLKDEV |
| 61 | #define BOOTENV_DEV_NAME_MMC BOOTENV_DEV_NAME_BLKDEV |
| 62 | #else |
| 63 | #define BOOTENV_SHARED_MMC |
| 64 | #define BOOTENV_DEV_MMC \ |
| 65 | BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC |
| 66 | #define BOOTENV_DEV_NAME_MMC \ |
| 67 | BOOT_TARGET_DEVICES_references_MMC_without_CONFIG_CMD_MMC |
| 68 | #endif |
| 69 | |
Roy Spliet | b97c626 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 70 | #ifdef CONFIG_CMD_UBIFS |
| 71 | #define BOOTENV_SHARED_UBIFS \ |
| 72 | "ubifs_boot=" \ |
Derald D. Woods | 5f5d150 | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 73 | "if ubi part ${bootubipart} && " \ |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 74 | "ubifsmount ubi0:${bootubivol}; " \ |
Derald D. Woods | 5f5d150 | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 75 | "then " \ |
AKASHI Takahiro | 6804288 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 76 | "devtype=ubi; " \ |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 77 | "devnum=ubi0; " \ |
| 78 | "bootfstype=ubifs; " \ |
| 79 | "distro_bootpart=${bootubivol}; " \ |
Derald D. Woods | 5f5d150 | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 80 | "run scan_dev_for_boot; " \ |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 81 | "ubifsumount; " \ |
Roy Spliet | b97c626 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 82 | "fi\0" |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 83 | #define BOOTENV_DEV_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol) \ |
| 84 | "bootcmd_ubifs" #instance "=" \ |
| 85 | "bootubipart=" #bootubipart "; " \ |
| 86 | "bootubivol=" #bootubivol "; " \ |
| 87 | "run ubifs_boot\0" |
| 88 | #define BOOTENV_DEV_NAME_UBIFS(devtypeu, devtypel, instance, bootubipart, bootubivol) \ |
| 89 | #devtypel #instance " " |
Roy Spliet | b97c626 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 90 | #else |
| 91 | #define BOOTENV_SHARED_UBIFS |
| 92 | #define BOOTENV_DEV_UBIFS \ |
| 93 | BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS |
| 94 | #define BOOTENV_DEV_NAME_UBIFS \ |
| 95 | BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS |
| 96 | #endif |
| 97 | |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 98 | #ifdef CONFIG_EFI_LOADER |
| 99 | #if defined(CONFIG_ARM64) |
| 100 | #define BOOTEFI_NAME "bootaa64.efi" |
| 101 | #elif defined(CONFIG_ARM) |
| 102 | #define BOOTEFI_NAME "bootarm.efi" |
Heinrich Schuchardt | 5b8a8bb | 2017-11-24 22:32:35 +0100 | [diff] [blame] | 103 | #elif defined(CONFIG_X86_RUN_32BIT) |
| 104 | #define BOOTEFI_NAME "bootia32.efi" |
| 105 | #elif defined(CONFIG_X86_RUN_64BIT) |
| 106 | #define BOOTEFI_NAME "bootx64.efi" |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 107 | #elif defined(CONFIG_ARCH_RV32I) |
Alexander Graf | 3ed3f8a | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 108 | #define BOOTEFI_NAME "bootriscv32.efi" |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 109 | #elif defined(CONFIG_ARCH_RV64I) |
Alexander Graf | 3ed3f8a | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 110 | #define BOOTEFI_NAME "bootriscv64.efi" |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 111 | #endif |
| 112 | #endif |
| 113 | |
| 114 | #ifdef BOOTEFI_NAME |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 115 | #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64) |
| 116 | /* |
| 117 | * On 32bit ARM systems there is a reasonable number of systems that follow |
| 118 | * the $soc-$board$boardver.dtb name scheme for their device trees. Use that |
| 119 | * scheme if we don't have an explicit fdtfile variable. |
| 120 | */ |
| 121 | #define BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
| 122 | "if test -z \"${fdtfile}\" -a -n \"${soc}\"; then " \ |
| 123 | "setenv efi_fdtfile ${soc}-${board}${boardver}.dtb; " \ |
| 124 | "fi; " |
| 125 | #else |
Peter Robinson | f7ae9bf | 2020-04-02 00:28:55 +0100 | [diff] [blame] | 126 | #ifndef BOOTENV_EFI_SET_FDTFILE_FALLBACK |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 127 | #define BOOTENV_EFI_SET_FDTFILE_FALLBACK |
| 128 | #endif |
Peter Robinson | f7ae9bf | 2020-04-02 00:28:55 +0100 | [diff] [blame] | 129 | #endif |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 130 | |
Heinrich Schuchardt | b2625e8 | 2021-01-15 19:02:50 +0100 | [diff] [blame] | 131 | #ifdef CONFIG_CMD_BOOTEFI_BOOTMGR |
| 132 | #define BOOTENV_EFI_BOOTMGR \ |
Michael Walle | 9c96299 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 133 | "boot_efi_bootmgr=" \ |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 134 | "if fdt addr -q ${fdt_addr_r}; then " \ |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 135 | "bootefi bootmgr ${fdt_addr_r};" \ |
| 136 | "else " \ |
Michael Walle | 9c96299 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 137 | "bootefi bootmgr;" \ |
Heinrich Schuchardt | b2625e8 | 2021-01-15 19:02:50 +0100 | [diff] [blame] | 138 | "fi\0" |
| 139 | #else |
| 140 | #define BOOTENV_EFI_BOOTMGR |
| 141 | #endif |
| 142 | |
| 143 | #define BOOTENV_SHARED_EFI \ |
| 144 | BOOTENV_EFI_BOOTMGR \ |
Michael Walle | 9c96299 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 145 | \ |
| 146 | "boot_efi_binary=" \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 147 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
| 148 | "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \ |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 149 | "if fdt addr -q ${fdt_addr_r}; then " \ |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 150 | "bootefi ${kernel_addr_r} ${fdt_addr_r};" \ |
Derald D. Woods | 5f5d150 | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 151 | "else " \ |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 152 | "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ |
| 153 | "fi\0" \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 154 | \ |
| 155 | "load_efi_dtb=" \ |
| 156 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 157 | "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 158 | \ |
| 159 | "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \ |
| 160 | "scan_dev_for_efi=" \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 161 | "setenv efi_fdtfile ${fdtfile}; " \ |
| 162 | BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
Matwey V. Kornilov | bdd8ab1 | 2022-08-09 18:54:07 +0300 | [diff] [blame^] | 163 | BOOTENV_RUN_EXTENSION_INIT \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 164 | "for prefix in ${efi_dtb_prefixes}; do " \ |
| 165 | "if test -e ${devtype} " \ |
| 166 | "${devnum}:${distro_bootpart} " \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 167 | "${prefix}${efi_fdtfile}; then " \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 168 | "run load_efi_dtb; " \ |
Matwey V. Kornilov | bdd8ab1 | 2022-08-09 18:54:07 +0300 | [diff] [blame^] | 169 | BOOTENV_RUN_EXTENSION_APPLY \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 170 | "fi;" \ |
| 171 | "done;" \ |
Michael Walle | 9c96299 | 2020-09-29 08:54:48 +0200 | [diff] [blame] | 172 | "run boot_efi_bootmgr;" \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 173 | "if test -e ${devtype} ${devnum}:${distro_bootpart} " \ |
| 174 | "efi/boot/"BOOTEFI_NAME"; then " \ |
| 175 | "echo Found EFI removable media binary " \ |
| 176 | "efi/boot/"BOOTEFI_NAME"; " \ |
| 177 | "run boot_efi_binary; " \ |
| 178 | "echo EFI LOAD FAILED: continuing...; " \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 179 | "fi; " \ |
| 180 | "setenv efi_fdtfile\0" |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 181 | #define SCAN_DEV_FOR_EFI "run scan_dev_for_efi;" |
| 182 | #else |
| 183 | #define BOOTENV_SHARED_EFI |
| 184 | #define SCAN_DEV_FOR_EFI |
| 185 | #endif |
| 186 | |
Simon Glass | ab3055a | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 187 | #ifdef CONFIG_SATA |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 188 | #define BOOTENV_SHARED_SATA BOOTENV_SHARED_BLKDEV(sata) |
| 189 | #define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV |
| 190 | #define BOOTENV_DEV_NAME_SATA BOOTENV_DEV_NAME_BLKDEV |
| 191 | #else |
| 192 | #define BOOTENV_SHARED_SATA |
| 193 | #define BOOTENV_DEV_SATA \ |
Simon Glass | ab3055a | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 194 | BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 195 | #define BOOTENV_DEV_NAME_SATA \ |
Simon Glass | ab3055a | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 196 | BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 197 | #endif |
| 198 | |
Heinrich Schuchardt | 58495f3 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 199 | #ifdef CONFIG_NVME |
| 200 | #define BOOTENV_RUN_NVME_INIT "run nvme_init; " |
| 201 | #define BOOTENV_SET_NVME_NEED_INIT "setenv nvme_need_init; " |
| 202 | #define BOOTENV_SHARED_NVME \ |
| 203 | "nvme_init=" \ |
| 204 | "if ${nvme_need_init}; then " \ |
| 205 | "setenv nvme_need_init false; " \ |
| 206 | "nvme scan; " \ |
| 207 | "fi\0" \ |
| 208 | \ |
| 209 | "nvme_boot=" \ |
Patrick Wildt | 28d43f2 | 2019-10-03 11:10:57 +0200 | [diff] [blame] | 210 | BOOTENV_RUN_PCI_ENUM \ |
Heinrich Schuchardt | 58495f3 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 211 | BOOTENV_RUN_NVME_INIT \ |
| 212 | BOOTENV_SHARED_BLKDEV_BODY(nvme) |
| 213 | #define BOOTENV_DEV_NVME BOOTENV_DEV_BLKDEV |
| 214 | #define BOOTENV_DEV_NAME_NVME BOOTENV_DEV_NAME_BLKDEV |
| 215 | #else |
| 216 | #define BOOTENV_RUN_NVME_INIT |
| 217 | #define BOOTENV_SET_NVME_NEED_INIT |
| 218 | #define BOOTENV_SHARED_NVME |
| 219 | #define BOOTENV_DEV_NVME \ |
| 220 | BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME |
| 221 | #define BOOTENV_DEV_NAME_NVME \ |
| 222 | BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME |
| 223 | #endif |
| 224 | |
Simon Glass | 8706b81 | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 225 | #ifdef CONFIG_SCSI |
Hans de Goede | dd5355e | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 226 | #define BOOTENV_RUN_SCSI_INIT "run scsi_init; " |
AKASHI Takahiro | 6804288 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 227 | #define BOOTENV_SET_SCSI_NEED_INIT "scsi_need_init=; " |
Hans de Goede | dd5355e | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 228 | #define BOOTENV_SHARED_SCSI \ |
| 229 | "scsi_init=" \ |
| 230 | "if ${scsi_need_init}; then " \ |
AKASHI Takahiro | 6804288 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 231 | "scsi_need_init=false; " \ |
Hans de Goede | dd5355e | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 232 | "scsi scan; " \ |
| 233 | "fi\0" \ |
| 234 | \ |
| 235 | "scsi_boot=" \ |
Neil Armstrong | 09259dc | 2021-09-17 09:37:05 +0200 | [diff] [blame] | 236 | BOOTENV_RUN_PCI_ENUM \ |
Hans de Goede | dd5355e | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 237 | BOOTENV_RUN_SCSI_INIT \ |
| 238 | BOOTENV_SHARED_BLKDEV_BODY(scsi) |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 239 | #define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV |
| 240 | #define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV |
| 241 | #else |
Hans de Goede | dd5355e | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 242 | #define BOOTENV_RUN_SCSI_INIT |
| 243 | #define BOOTENV_SET_SCSI_NEED_INIT |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 244 | #define BOOTENV_SHARED_SCSI |
| 245 | #define BOOTENV_DEV_SCSI \ |
Simon Glass | 8706b81 | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 246 | BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 247 | #define BOOTENV_DEV_NAME_SCSI \ |
Simon Glass | 8706b81 | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 248 | BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 249 | #endif |
| 250 | |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 251 | #ifdef CONFIG_IDE |
Joshua Watt | 279fd64 | 2019-06-20 16:31:35 -0500 | [diff] [blame] | 252 | #define BOOTENV_RUN_IDE_INIT "run ide_init; " |
| 253 | #define BOOTENV_SET_IDE_NEED_INIT "setenv ide_need_init; " |
| 254 | #define BOOTENV_SHARED_IDE \ |
| 255 | "ide_init=" \ |
| 256 | "if ${ide_need_init}; then " \ |
| 257 | "setenv ide_need_init false; " \ |
| 258 | "ide reset; " \ |
| 259 | "fi\0" \ |
| 260 | \ |
| 261 | "ide_boot=" \ |
| 262 | BOOTENV_RUN_IDE_INIT \ |
| 263 | BOOTENV_SHARED_BLKDEV_BODY(ide) |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 264 | #define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV |
| 265 | #define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV |
| 266 | #else |
Joshua Watt | 279fd64 | 2019-06-20 16:31:35 -0500 | [diff] [blame] | 267 | #define BOOTENV_RUN_IDE_INIT |
| 268 | #define BOOTENV_SET_IDE_NEED_INIT |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 269 | #define BOOTENV_SHARED_IDE |
| 270 | #define BOOTENV_DEV_IDE \ |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 271 | BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 272 | #define BOOTENV_DEV_NAME_IDE \ |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 273 | BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 274 | #endif |
| 275 | |
Simon Glass | a7be1dd | 2021-08-01 18:54:38 -0600 | [diff] [blame] | 276 | #if defined(CONFIG_PCI) |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 277 | #define BOOTENV_RUN_PCI_ENUM "run boot_pci_enum; " |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 278 | #define BOOTENV_SHARED_PCI \ |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 279 | "boot_pci_enum=pci enum\0" |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 280 | #else |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 281 | #define BOOTENV_RUN_PCI_ENUM |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 282 | #define BOOTENV_SHARED_PCI |
| 283 | #endif |
| 284 | |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 285 | #ifdef CONFIG_CMD_USB |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 286 | #define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; " |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 287 | #define BOOTENV_SHARED_USB \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 288 | "boot_net_usb_start=usb start\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 289 | "usb_boot=" \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 290 | "usb start; " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 291 | BOOTENV_SHARED_BLKDEV_BODY(usb) |
| 292 | #define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV |
| 293 | #define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV |
| 294 | #else |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 295 | #define BOOTENV_RUN_NET_USB_START |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 296 | #define BOOTENV_SHARED_USB |
| 297 | #define BOOTENV_DEV_USB \ |
| 298 | BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB |
| 299 | #define BOOTENV_DEV_NAME_USB \ |
| 300 | BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB |
| 301 | #endif |
| 302 | |
Lukas Auer | e8c4df4 | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 303 | #ifdef CONFIG_CMD_VIRTIO |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 304 | #define BOOTENV_RUN_VIRTIO_INIT "run virtio_init; " |
| 305 | #define BOOTENV_SET_VIRTIO_NEED_INIT "virtio_need_init=; " |
| 306 | #define BOOTENV_SHARED_VIRTIO \ |
| 307 | "virtio_init=" \ |
| 308 | "if ${virtio_need_init}; then " \ |
| 309 | "virtio_need_init=false; " \ |
| 310 | "virtio scan; " \ |
| 311 | "fi\0" \ |
| 312 | \ |
| 313 | "virtio_boot=" \ |
| 314 | BOOTENV_RUN_PCI_ENUM \ |
| 315 | BOOTENV_RUN_VIRTIO_INIT \ |
| 316 | BOOTENV_SHARED_BLKDEV_BODY(virtio) |
Lukas Auer | e8c4df4 | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 317 | #define BOOTENV_DEV_VIRTIO BOOTENV_DEV_BLKDEV |
| 318 | #define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV |
| 319 | #else |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 320 | #define BOOTENV_RUN_VIRTIO_INIT |
| 321 | #define BOOTENV_SET_VIRTIO_NEED_INIT |
Lukas Auer | e8c4df4 | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 322 | #define BOOTENV_SHARED_VIRTIO |
| 323 | #define BOOTENV_DEV_VIRTIO \ |
| 324 | BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO |
| 325 | #define BOOTENV_DEV_NAME_VIRTIO \ |
| 326 | BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO |
| 327 | #endif |
| 328 | |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 329 | #if defined(CONFIG_CMD_DHCP) |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 330 | #if defined(CONFIG_EFI_LOADER) |
Alexander Graf | 3ed3f8a | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 331 | /* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */ |
Simon Glass | 43635f7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 332 | #if defined(CONFIG_ARM64) || defined(__aarch64__) |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 333 | #define BOOTENV_EFI_PXE_ARCH "0xb" |
| 334 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000" |
Simon Glass | 43635f7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 335 | #elif defined(CONFIG_ARM) || defined(__arm__) |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 336 | #define BOOTENV_EFI_PXE_ARCH "0xa" |
| 337 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000" |
Simon Glass | 43635f7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 338 | #elif defined(CONFIG_X86) || defined(__x86_64__) |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 339 | #define BOOTENV_EFI_PXE_ARCH "0x7" |
| 340 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000" |
Simon Glass | 43635f7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 341 | #elif defined(__i386__) |
| 342 | #define BOOTENV_EFI_PXE_ARCH "0x6" |
| 343 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000" |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 344 | #elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32)) |
Alexander Graf | 3ed3f8a | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 345 | #define BOOTENV_EFI_PXE_ARCH "0x19" |
| 346 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000" |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 347 | #elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64)) |
Alexander Graf | 3ed3f8a | 2018-04-23 07:59:48 +0200 | [diff] [blame] | 348 | #define BOOTENV_EFI_PXE_ARCH "0x1b" |
| 349 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000" |
Simon Glass | 43635f7 | 2018-09-15 00:50:52 -0600 | [diff] [blame] | 350 | #elif defined(CONFIG_SANDBOX) |
| 351 | # error "sandbox EFI support is only supported on ARM and x86" |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 352 | #else |
| 353 | #error Please specify an EFI client identifier |
| 354 | #endif |
| 355 | |
| 356 | /* |
| 357 | * Ask the dhcp server for an EFI binary. If we get one, check for a |
| 358 | * device tree in the same folder. Then boot everything. If the file was |
| 359 | * not an EFI binary, we just return from the bootefi command and continue. |
| 360 | */ |
| 361 | #define BOOTENV_EFI_RUN_DHCP \ |
| 362 | "setenv efi_fdtfile ${fdtfile}; " \ |
| 363 | BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
| 364 | "setenv efi_old_vci ${bootp_vci};" \ |
| 365 | "setenv efi_old_arch ${bootp_arch};" \ |
| 366 | "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";" \ |
| 367 | "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";" \ |
| 368 | "if dhcp ${kernel_addr_r}; then " \ |
| 369 | "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};" \ |
Peter Hoyes | fbbaa59 | 2022-03-31 11:53:22 +0100 | [diff] [blame] | 370 | "if fdt addr -q ${fdt_addr_r}; then " \ |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 371 | "bootefi ${kernel_addr_r} ${fdt_addr_r}; " \ |
| 372 | "else " \ |
| 373 | "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ |
| 374 | "fi;" \ |
| 375 | "fi;" \ |
| 376 | "setenv bootp_vci ${efi_old_vci};" \ |
| 377 | "setenv bootp_arch ${efi_old_arch};" \ |
| 378 | "setenv efi_fdtfile;" \ |
| 379 | "setenv efi_old_arch;" \ |
| 380 | "setenv efi_old_vci;" |
| 381 | #else |
| 382 | #define BOOTENV_EFI_RUN_DHCP |
| 383 | #endif |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 384 | #define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \ |
| 385 | "bootcmd_dhcp=" \ |
Andre Przywara | 2df1e6c | 2021-07-12 00:07:09 +0100 | [diff] [blame] | 386 | "devtype=" #devtypel "; " \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 387 | BOOTENV_RUN_NET_USB_START \ |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 388 | BOOTENV_RUN_PCI_ENUM \ |
Stephen Warren | ed05d34 | 2015-01-19 16:39:11 -0700 | [diff] [blame] | 389 | "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 390 | "source ${scriptaddr}; " \ |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 391 | "fi;" \ |
| 392 | BOOTENV_EFI_RUN_DHCP \ |
| 393 | "\0" |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 394 | #define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \ |
| 395 | "dhcp " |
| 396 | #else |
| 397 | #define BOOTENV_DEV_DHCP \ |
| 398 | BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP |
| 399 | #define BOOTENV_DEV_NAME_DHCP \ |
| 400 | BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP |
| 401 | #endif |
| 402 | |
| 403 | #if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE) |
| 404 | #define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \ |
| 405 | "bootcmd_pxe=" \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 406 | BOOTENV_RUN_NET_USB_START \ |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 407 | BOOTENV_RUN_PCI_ENUM \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 408 | "dhcp; " \ |
| 409 | "if pxe get; then " \ |
| 410 | "pxe boot; " \ |
| 411 | "fi\0" |
| 412 | #define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \ |
| 413 | "pxe " |
| 414 | #else |
| 415 | #define BOOTENV_DEV_PXE \ |
| 416 | BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE |
| 417 | #define BOOTENV_DEV_NAME_PXE \ |
| 418 | BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE |
| 419 | #endif |
| 420 | |
Matwey V. Kornilov | bdd8ab1 | 2022-08-09 18:54:07 +0300 | [diff] [blame^] | 421 | #if defined(CONFIG_CMD_EXTENSION) |
| 422 | #define BOOTENV_RUN_EXTENSION_INIT "run extension_init; " |
| 423 | #define BOOTENV_RUN_EXTENSION_APPLY "run extension_apply; " |
| 424 | #define BOOTENV_SET_EXTENSION_NEED_INIT \ |
| 425 | "extension_need_init=; " \ |
| 426 | "setenv extension_overlay_addr ${fdtoverlay_addr_r}; " |
| 427 | #define BOOTENV_SHARED_EXTENSION \ |
| 428 | "extension_init=" \ |
| 429 | "echo Extension init...; " \ |
| 430 | "if ${extension_need_init}; then " \ |
| 431 | "extension_need_init=false; " \ |
| 432 | "extension scan; " \ |
| 433 | "fi\0" \ |
| 434 | \ |
| 435 | "extension_overlay_cmd=" \ |
| 436 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
| 437 | "${extension_overlay_addr} ${prefix}${extension_overlay_name}\0" \ |
| 438 | "extension_apply=" \ |
| 439 | "if fdt addr -q ${fdt_addr_r}; then " \ |
| 440 | "extension apply all; " \ |
| 441 | "fi\0" |
| 442 | #else |
| 443 | #define BOOTENV_RUN_EXTENSION_INIT |
| 444 | #define BOOTENV_RUN_EXTENSION_APPLY |
| 445 | #define BOOTENV_SET_EXTENSION_NEED_INIT |
| 446 | #define BOOTENV_SHARED_EXTENSION |
| 447 | #endif |
| 448 | |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 449 | #define BOOTENV_DEV_NAME(devtypeu, devtypel, instance, ...) \ |
| 450 | BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__) |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 451 | #define BOOTENV_BOOT_TARGETS \ |
| 452 | "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0" |
| 453 | |
Pali Rohár | dd54f6c | 2022-05-31 10:32:36 +0200 | [diff] [blame] | 454 | #define BOOTENV_DEV(devtypeu, devtypel, instance, ...) \ |
| 455 | BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance, ## __VA_ARGS__) |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 456 | #define BOOTENV \ |
Sjoerd Simons | 1d854d6 | 2015-04-13 22:54:24 +0200 | [diff] [blame] | 457 | BOOTENV_SHARED_HOST \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 458 | BOOTENV_SHARED_MMC \ |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 459 | BOOTENV_SHARED_PCI \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 460 | BOOTENV_SHARED_USB \ |
| 461 | BOOTENV_SHARED_SATA \ |
| 462 | BOOTENV_SHARED_SCSI \ |
Heinrich Schuchardt | 58495f3 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 463 | BOOTENV_SHARED_NVME \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 464 | BOOTENV_SHARED_IDE \ |
Roy Spliet | b97c626 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 465 | BOOTENV_SHARED_UBIFS \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 466 | BOOTENV_SHARED_EFI \ |
Lukas Auer | e8c4df4 | 2018-11-22 11:26:33 +0100 | [diff] [blame] | 467 | BOOTENV_SHARED_VIRTIO \ |
Matwey V. Kornilov | bdd8ab1 | 2022-08-09 18:54:07 +0300 | [diff] [blame^] | 468 | BOOTENV_SHARED_EXTENSION \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 469 | "boot_prefixes=/ /boot/\0" \ |
| 470 | "boot_scripts=boot.scr.uimg boot.scr\0" \ |
Stephen Warren | ed05d34 | 2015-01-19 16:39:11 -0700 | [diff] [blame] | 471 | "boot_script_dhcp=boot.scr.uimg\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 472 | BOOTENV_BOOT_TARGETS \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 473 | \ |
Martyn Welch | e897fc5 | 2018-11-06 12:23:53 +0000 | [diff] [blame] | 474 | "boot_syslinux_conf=extlinux/extlinux.conf\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 475 | "boot_extlinux=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 476 | "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \ |
Martyn Welch | e897fc5 | 2018-11-06 12:23:53 +0000 | [diff] [blame] | 477 | "${scriptaddr} ${prefix}${boot_syslinux_conf}\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 478 | \ |
| 479 | "scan_dev_for_extlinux=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 480 | "if test -e ${devtype} " \ |
| 481 | "${devnum}:${distro_bootpart} " \ |
Martyn Welch | e897fc5 | 2018-11-06 12:23:53 +0000 | [diff] [blame] | 482 | "${prefix}${boot_syslinux_conf}; then " \ |
| 483 | "echo Found ${prefix}${boot_syslinux_conf}; " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 484 | "run boot_extlinux; " \ |
| 485 | "echo SCRIPT FAILED: continuing...; " \ |
| 486 | "fi\0" \ |
| 487 | \ |
| 488 | "boot_a_script=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 489 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 490 | "${scriptaddr} ${prefix}${script}; " \ |
| 491 | "source ${scriptaddr}\0" \ |
| 492 | \ |
| 493 | "scan_dev_for_scripts=" \ |
| 494 | "for script in ${boot_scripts}; do " \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 495 | "if test -e ${devtype} " \ |
| 496 | "${devnum}:${distro_bootpart} " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 497 | "${prefix}${script}; then " \ |
| 498 | "echo Found U-Boot script " \ |
| 499 | "${prefix}${script}; " \ |
| 500 | "run boot_a_script; " \ |
| 501 | "echo SCRIPT FAILED: continuing...; " \ |
| 502 | "fi; " \ |
| 503 | "done\0" \ |
| 504 | \ |
| 505 | "scan_dev_for_boot=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 506 | "echo Scanning ${devtype} " \ |
| 507 | "${devnum}:${distro_bootpart}...; " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 508 | "for prefix in ${boot_prefixes}; do " \ |
| 509 | "run scan_dev_for_extlinux; " \ |
| 510 | "run scan_dev_for_scripts; " \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 511 | "done;" \ |
| 512 | SCAN_DEV_FOR_EFI \ |
| 513 | "\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 514 | \ |
Sjoerd Simons | 275537b | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 515 | "scan_dev_for_boot_part=" \ |
Sjoerd Simons | 5849a1e | 2015-02-25 23:23:52 +0100 | [diff] [blame] | 516 | "part list ${devtype} ${devnum} -bootable devplist; " \ |
| 517 | "env exists devplist || setenv devplist 1; " \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 518 | "for distro_bootpart in ${devplist}; do " \ |
| 519 | "if fstype ${devtype} " \ |
| 520 | "${devnum}:${distro_bootpart} " \ |
Sjoerd Simons | 275537b | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 521 | "bootfstype; then " \ |
| 522 | "run scan_dev_for_boot; " \ |
| 523 | "fi; " \ |
AKASHI Takahiro | 6804288 | 2018-12-04 15:46:55 +0900 | [diff] [blame] | 524 | "done; " \ |
| 525 | "setenv devplist\0" \ |
Sjoerd Simons | 275537b | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 526 | \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 527 | BOOT_TARGET_DEVICES(BOOTENV_DEV) \ |
| 528 | \ |
Sjoerd Simons | b85bbc3 | 2015-01-05 18:13:39 +0100 | [diff] [blame] | 529 | "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \ |
Heinrich Schuchardt | 58495f3 | 2018-12-21 02:18:16 +0100 | [diff] [blame] | 530 | BOOTENV_SET_NVME_NEED_INIT \ |
Joshua Watt | 279fd64 | 2019-06-20 16:31:35 -0500 | [diff] [blame] | 531 | BOOTENV_SET_IDE_NEED_INIT \ |
David Abdurachmanov | 9bee9e5 | 2019-07-22 11:38:11 +0300 | [diff] [blame] | 532 | BOOTENV_SET_VIRTIO_NEED_INIT \ |
Matwey V. Kornilov | bdd8ab1 | 2022-08-09 18:54:07 +0300 | [diff] [blame^] | 533 | BOOTENV_SET_EXTENSION_NEED_INIT \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 534 | "for target in ${boot_targets}; do " \ |
| 535 | "run bootcmd_${target}; " \ |
| 536 | "done\0" |
| 537 | |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 538 | #endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */ |