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 " \ |
| 30 | "setenv 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 "=" \ |
| 40 | "setenv devnum " #instance "; " \ |
| 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 | "env exists bootubipart || " \ |
| 74 | "env set bootubipart UBI; " \ |
| 75 | "env exists bootubivol || " \ |
| 76 | "env set bootubivol boot; " \ |
| 77 | "if ubi part ${bootubipart} && " \ |
| 78 | "ubifsmount ubi${devnum}:${bootubivol}; " \ |
| 79 | "then " \ |
| 80 | "setenv devtype ubi; " \ |
| 81 | "run scan_dev_for_boot; " \ |
Roy Spliet | b97c626 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 82 | "fi\0" |
| 83 | #define BOOTENV_DEV_UBIFS BOOTENV_DEV_BLKDEV |
| 84 | #define BOOTENV_DEV_NAME_UBIFS BOOTENV_DEV_NAME_BLKDEV |
| 85 | #else |
| 86 | #define BOOTENV_SHARED_UBIFS |
| 87 | #define BOOTENV_DEV_UBIFS \ |
| 88 | BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS |
| 89 | #define BOOTENV_DEV_NAME_UBIFS \ |
| 90 | BOOT_TARGET_DEVICES_references_UBIFS_without_CONFIG_CMD_UBIFS |
| 91 | #endif |
| 92 | |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 93 | #ifdef CONFIG_EFI_LOADER |
| 94 | #if defined(CONFIG_ARM64) |
| 95 | #define BOOTEFI_NAME "bootaa64.efi" |
| 96 | #elif defined(CONFIG_ARM) |
| 97 | #define BOOTEFI_NAME "bootarm.efi" |
Heinrich Schuchardt | 5b8a8bb | 2017-11-24 22:32:35 +0100 | [diff] [blame] | 98 | #elif defined(CONFIG_X86_RUN_32BIT) |
| 99 | #define BOOTEFI_NAME "bootia32.efi" |
| 100 | #elif defined(CONFIG_X86_RUN_64BIT) |
| 101 | #define BOOTEFI_NAME "bootx64.efi" |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 102 | #endif |
| 103 | #endif |
| 104 | |
| 105 | #ifdef BOOTEFI_NAME |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 106 | #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64) |
| 107 | /* |
| 108 | * On 32bit ARM systems there is a reasonable number of systems that follow |
| 109 | * the $soc-$board$boardver.dtb name scheme for their device trees. Use that |
| 110 | * scheme if we don't have an explicit fdtfile variable. |
| 111 | */ |
| 112 | #define BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
| 113 | "if test -z \"${fdtfile}\" -a -n \"${soc}\"; then " \ |
| 114 | "setenv efi_fdtfile ${soc}-${board}${boardver}.dtb; " \ |
| 115 | "fi; " |
| 116 | #else |
| 117 | #define BOOTENV_EFI_SET_FDTFILE_FALLBACK |
| 118 | #endif |
| 119 | |
| 120 | |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 121 | #define BOOTENV_SHARED_EFI \ |
| 122 | "boot_efi_binary=" \ |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 123 | "if fdt addr ${fdt_addr_r}; then " \ |
| 124 | "bootefi bootmgr ${fdt_addr_r};" \ |
| 125 | "else " \ |
| 126 | "bootefi bootmgr ${fdtcontroladdr};" \ |
| 127 | "fi;" \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 128 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
| 129 | "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; " \ |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 130 | "if fdt addr ${fdt_addr_r}; then " \ |
| 131 | "bootefi ${kernel_addr_r} ${fdt_addr_r};" \ |
Derald D. Woods | 5f5d150 | 2018-01-20 21:16:13 -0600 | [diff] [blame] | 132 | "else " \ |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 133 | "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ |
| 134 | "fi\0" \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 135 | \ |
| 136 | "load_efi_dtb=" \ |
| 137 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 138 | "${fdt_addr_r} ${prefix}${efi_fdtfile}\0" \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 139 | \ |
| 140 | "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \ |
| 141 | "scan_dev_for_efi=" \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 142 | "setenv efi_fdtfile ${fdtfile}; " \ |
| 143 | BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 144 | "for prefix in ${efi_dtb_prefixes}; do " \ |
| 145 | "if test -e ${devtype} " \ |
| 146 | "${devnum}:${distro_bootpart} " \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 147 | "${prefix}${efi_fdtfile}; then " \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 148 | "run load_efi_dtb; " \ |
| 149 | "fi;" \ |
| 150 | "done;" \ |
| 151 | "if test -e ${devtype} ${devnum}:${distro_bootpart} " \ |
| 152 | "efi/boot/"BOOTEFI_NAME"; then " \ |
| 153 | "echo Found EFI removable media binary " \ |
| 154 | "efi/boot/"BOOTEFI_NAME"; " \ |
| 155 | "run boot_efi_binary; " \ |
| 156 | "echo EFI LOAD FAILED: continuing...; " \ |
Alexander Graf | a2f9dfa | 2016-04-14 16:07:54 +0200 | [diff] [blame] | 157 | "fi; " \ |
| 158 | "setenv efi_fdtfile\0" |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 159 | #define SCAN_DEV_FOR_EFI "run scan_dev_for_efi;" |
| 160 | #else |
| 161 | #define BOOTENV_SHARED_EFI |
| 162 | #define SCAN_DEV_FOR_EFI |
| 163 | #endif |
| 164 | |
Simon Glass | ab3055a | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 165 | #ifdef CONFIG_SATA |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 166 | #define BOOTENV_SHARED_SATA BOOTENV_SHARED_BLKDEV(sata) |
| 167 | #define BOOTENV_DEV_SATA BOOTENV_DEV_BLKDEV |
| 168 | #define BOOTENV_DEV_NAME_SATA BOOTENV_DEV_NAME_BLKDEV |
| 169 | #else |
| 170 | #define BOOTENV_SHARED_SATA |
| 171 | #define BOOTENV_DEV_SATA \ |
Simon Glass | ab3055a | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 172 | BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 173 | #define BOOTENV_DEV_NAME_SATA \ |
Simon Glass | ab3055a | 2017-06-14 21:28:25 -0600 | [diff] [blame] | 174 | BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 175 | #endif |
| 176 | |
Simon Glass | 8706b81 | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 177 | #ifdef CONFIG_SCSI |
Hans de Goede | dd5355e | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 178 | #define BOOTENV_RUN_SCSI_INIT "run scsi_init; " |
| 179 | #define BOOTENV_SET_SCSI_NEED_INIT "setenv scsi_need_init; " |
| 180 | #define BOOTENV_SHARED_SCSI \ |
| 181 | "scsi_init=" \ |
| 182 | "if ${scsi_need_init}; then " \ |
| 183 | "setenv scsi_need_init false; " \ |
| 184 | "scsi scan; " \ |
| 185 | "fi\0" \ |
| 186 | \ |
| 187 | "scsi_boot=" \ |
| 188 | BOOTENV_RUN_SCSI_INIT \ |
| 189 | BOOTENV_SHARED_BLKDEV_BODY(scsi) |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 190 | #define BOOTENV_DEV_SCSI BOOTENV_DEV_BLKDEV |
| 191 | #define BOOTENV_DEV_NAME_SCSI BOOTENV_DEV_NAME_BLKDEV |
| 192 | #else |
Hans de Goede | dd5355e | 2014-09-16 09:26:23 +0200 | [diff] [blame] | 193 | #define BOOTENV_RUN_SCSI_INIT |
| 194 | #define BOOTENV_SET_SCSI_NEED_INIT |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 195 | #define BOOTENV_SHARED_SCSI |
| 196 | #define BOOTENV_DEV_SCSI \ |
Simon Glass | 8706b81 | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 197 | BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 198 | #define BOOTENV_DEV_NAME_SCSI \ |
Simon Glass | 8706b81 | 2016-05-01 11:36:02 -0600 | [diff] [blame] | 199 | BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 200 | #endif |
| 201 | |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 202 | #ifdef CONFIG_IDE |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 203 | #define BOOTENV_SHARED_IDE BOOTENV_SHARED_BLKDEV(ide) |
| 204 | #define BOOTENV_DEV_IDE BOOTENV_DEV_BLKDEV |
| 205 | #define BOOTENV_DEV_NAME_IDE BOOTENV_DEV_NAME_BLKDEV |
| 206 | #else |
| 207 | #define BOOTENV_SHARED_IDE |
| 208 | #define BOOTENV_DEV_IDE \ |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 209 | BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 210 | #define BOOTENV_DEV_NAME_IDE \ |
Simon Glass | b569a01 | 2017-05-17 03:25:30 -0600 | [diff] [blame] | 211 | BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 212 | #endif |
| 213 | |
Simon Glass | 03b2ba7 | 2017-08-04 16:34:35 -0600 | [diff] [blame] | 214 | #if defined(CONFIG_DM_PCI) |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 215 | #define BOOTENV_RUN_NET_PCI_ENUM "run boot_net_pci_enum; " |
| 216 | #define BOOTENV_SHARED_PCI \ |
| 217 | "boot_net_pci_enum=pci enum\0" |
| 218 | #else |
| 219 | #define BOOTENV_RUN_NET_PCI_ENUM |
| 220 | #define BOOTENV_SHARED_PCI |
| 221 | #endif |
| 222 | |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 223 | #ifdef CONFIG_CMD_USB |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 224 | #define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; " |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 225 | #define BOOTENV_SHARED_USB \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 226 | "boot_net_usb_start=usb start\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 227 | "usb_boot=" \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 228 | "usb start; " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 229 | BOOTENV_SHARED_BLKDEV_BODY(usb) |
| 230 | #define BOOTENV_DEV_USB BOOTENV_DEV_BLKDEV |
| 231 | #define BOOTENV_DEV_NAME_USB BOOTENV_DEV_NAME_BLKDEV |
| 232 | #else |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 233 | #define BOOTENV_RUN_NET_USB_START |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 234 | #define BOOTENV_SHARED_USB |
| 235 | #define BOOTENV_DEV_USB \ |
| 236 | BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB |
| 237 | #define BOOTENV_DEV_NAME_USB \ |
| 238 | BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB |
| 239 | #endif |
| 240 | |
| 241 | #if defined(CONFIG_CMD_DHCP) |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 242 | #if defined(CONFIG_EFI_LOADER) |
| 243 | #if defined(CONFIG_ARM64) |
| 244 | #define BOOTENV_EFI_PXE_ARCH "0xb" |
| 245 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000" |
| 246 | #elif defined(CONFIG_ARM) |
| 247 | #define BOOTENV_EFI_PXE_ARCH "0xa" |
| 248 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000" |
| 249 | #elif defined(CONFIG_X86) |
| 250 | /* Always assume we're running 64bit */ |
| 251 | #define BOOTENV_EFI_PXE_ARCH "0x7" |
| 252 | #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000" |
| 253 | #else |
| 254 | #error Please specify an EFI client identifier |
| 255 | #endif |
| 256 | |
| 257 | /* |
| 258 | * Ask the dhcp server for an EFI binary. If we get one, check for a |
| 259 | * device tree in the same folder. Then boot everything. If the file was |
| 260 | * not an EFI binary, we just return from the bootefi command and continue. |
| 261 | */ |
| 262 | #define BOOTENV_EFI_RUN_DHCP \ |
| 263 | "setenv efi_fdtfile ${fdtfile}; " \ |
| 264 | BOOTENV_EFI_SET_FDTFILE_FALLBACK \ |
| 265 | "setenv efi_old_vci ${bootp_vci};" \ |
| 266 | "setenv efi_old_arch ${bootp_arch};" \ |
| 267 | "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";" \ |
| 268 | "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";" \ |
| 269 | "if dhcp ${kernel_addr_r}; then " \ |
| 270 | "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};" \ |
| 271 | "if fdt addr ${fdt_addr_r}; then " \ |
| 272 | "bootefi ${kernel_addr_r} ${fdt_addr_r}; " \ |
| 273 | "else " \ |
| 274 | "bootefi ${kernel_addr_r} ${fdtcontroladdr};" \ |
| 275 | "fi;" \ |
| 276 | "fi;" \ |
| 277 | "setenv bootp_vci ${efi_old_vci};" \ |
| 278 | "setenv bootp_arch ${efi_old_arch};" \ |
| 279 | "setenv efi_fdtfile;" \ |
| 280 | "setenv efi_old_arch;" \ |
| 281 | "setenv efi_old_vci;" |
| 282 | #else |
| 283 | #define BOOTENV_EFI_RUN_DHCP |
| 284 | #endif |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 285 | #define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \ |
| 286 | "bootcmd_dhcp=" \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 287 | BOOTENV_RUN_NET_USB_START \ |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 288 | BOOTENV_RUN_NET_PCI_ENUM \ |
Stephen Warren | ed05d34 | 2015-01-19 16:39:11 -0700 | [diff] [blame] | 289 | "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 290 | "source ${scriptaddr}; " \ |
Alexander Graf | 3661aac | 2016-05-06 21:01:07 +0200 | [diff] [blame] | 291 | "fi;" \ |
| 292 | BOOTENV_EFI_RUN_DHCP \ |
| 293 | "\0" |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 294 | #define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \ |
| 295 | "dhcp " |
| 296 | #else |
| 297 | #define BOOTENV_DEV_DHCP \ |
| 298 | BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP |
| 299 | #define BOOTENV_DEV_NAME_DHCP \ |
| 300 | BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP |
| 301 | #endif |
| 302 | |
| 303 | #if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE) |
| 304 | #define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \ |
| 305 | "bootcmd_pxe=" \ |
Stephen Warren | 4c739fb | 2016-01-26 11:10:12 -0700 | [diff] [blame] | 306 | BOOTENV_RUN_NET_USB_START \ |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 307 | BOOTENV_RUN_NET_PCI_ENUM \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 308 | "dhcp; " \ |
| 309 | "if pxe get; then " \ |
| 310 | "pxe boot; " \ |
| 311 | "fi\0" |
| 312 | #define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \ |
| 313 | "pxe " |
| 314 | #else |
| 315 | #define BOOTENV_DEV_PXE \ |
| 316 | BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE |
| 317 | #define BOOTENV_DEV_NAME_PXE \ |
| 318 | BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE |
| 319 | #endif |
| 320 | |
| 321 | #define BOOTENV_DEV_NAME(devtypeu, devtypel, instance) \ |
| 322 | BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance) |
| 323 | #define BOOTENV_BOOT_TARGETS \ |
| 324 | "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0" |
| 325 | |
| 326 | #define BOOTENV_DEV(devtypeu, devtypel, instance) \ |
| 327 | BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance) |
| 328 | #define BOOTENV \ |
Sjoerd Simons | 1d854d6 | 2015-04-13 22:54:24 +0200 | [diff] [blame] | 329 | BOOTENV_SHARED_HOST \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 330 | BOOTENV_SHARED_MMC \ |
Stephen Warren | 3a74c64 | 2016-01-26 11:10:13 -0700 | [diff] [blame] | 331 | BOOTENV_SHARED_PCI \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 332 | BOOTENV_SHARED_USB \ |
| 333 | BOOTENV_SHARED_SATA \ |
| 334 | BOOTENV_SHARED_SCSI \ |
| 335 | BOOTENV_SHARED_IDE \ |
Roy Spliet | b97c626 | 2015-09-17 18:46:59 -0400 | [diff] [blame] | 336 | BOOTENV_SHARED_UBIFS \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 337 | BOOTENV_SHARED_EFI \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 338 | "boot_prefixes=/ /boot/\0" \ |
| 339 | "boot_scripts=boot.scr.uimg boot.scr\0" \ |
Stephen Warren | ed05d34 | 2015-01-19 16:39:11 -0700 | [diff] [blame] | 340 | "boot_script_dhcp=boot.scr.uimg\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 341 | BOOTENV_BOOT_TARGETS \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 342 | \ |
| 343 | "boot_extlinux=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 344 | "sysboot ${devtype} ${devnum}:${distro_bootpart} any " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 345 | "${scriptaddr} ${prefix}extlinux/extlinux.conf\0" \ |
| 346 | \ |
| 347 | "scan_dev_for_extlinux=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 348 | "if test -e ${devtype} " \ |
| 349 | "${devnum}:${distro_bootpart} " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 350 | "${prefix}extlinux/extlinux.conf; then " \ |
| 351 | "echo Found ${prefix}extlinux/extlinux.conf; " \ |
| 352 | "run boot_extlinux; " \ |
| 353 | "echo SCRIPT FAILED: continuing...; " \ |
| 354 | "fi\0" \ |
| 355 | \ |
| 356 | "boot_a_script=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 357 | "load ${devtype} ${devnum}:${distro_bootpart} " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 358 | "${scriptaddr} ${prefix}${script}; " \ |
| 359 | "source ${scriptaddr}\0" \ |
| 360 | \ |
| 361 | "scan_dev_for_scripts=" \ |
| 362 | "for script in ${boot_scripts}; do " \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 363 | "if test -e ${devtype} " \ |
| 364 | "${devnum}:${distro_bootpart} " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 365 | "${prefix}${script}; then " \ |
| 366 | "echo Found U-Boot script " \ |
| 367 | "${prefix}${script}; " \ |
| 368 | "run boot_a_script; " \ |
| 369 | "echo SCRIPT FAILED: continuing...; " \ |
| 370 | "fi; " \ |
| 371 | "done\0" \ |
| 372 | \ |
| 373 | "scan_dev_for_boot=" \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 374 | "echo Scanning ${devtype} " \ |
| 375 | "${devnum}:${distro_bootpart}...; " \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 376 | "for prefix in ${boot_prefixes}; do " \ |
| 377 | "run scan_dev_for_extlinux; " \ |
| 378 | "run scan_dev_for_scripts; " \ |
Alexander Graf | 41ee316 | 2016-03-10 00:26:15 +0100 | [diff] [blame] | 379 | "done;" \ |
| 380 | SCAN_DEV_FOR_EFI \ |
| 381 | "\0" \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 382 | \ |
Sjoerd Simons | 275537b | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 383 | "scan_dev_for_boot_part=" \ |
Sjoerd Simons | 5849a1e | 2015-02-25 23:23:52 +0100 | [diff] [blame] | 384 | "part list ${devtype} ${devnum} -bootable devplist; " \ |
| 385 | "env exists devplist || setenv devplist 1; " \ |
Sjoerd Simons | a92f11c | 2015-08-28 15:01:54 +0200 | [diff] [blame] | 386 | "for distro_bootpart in ${devplist}; do " \ |
| 387 | "if fstype ${devtype} " \ |
| 388 | "${devnum}:${distro_bootpart} " \ |
Sjoerd Simons | 275537b | 2015-01-05 18:13:38 +0100 | [diff] [blame] | 389 | "bootfstype; then " \ |
| 390 | "run scan_dev_for_boot; " \ |
| 391 | "fi; " \ |
| 392 | "done\0" \ |
| 393 | \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 394 | BOOT_TARGET_DEVICES(BOOTENV_DEV) \ |
| 395 | \ |
Sjoerd Simons | b85bbc3 | 2015-01-05 18:13:39 +0100 | [diff] [blame] | 396 | "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT \ |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 397 | "for target in ${boot_targets}; do " \ |
| 398 | "run bootcmd_${target}; " \ |
| 399 | "done\0" |
| 400 | |
Sjoerd Simons | b85bbc3 | 2015-01-05 18:13:39 +0100 | [diff] [blame] | 401 | #ifndef CONFIG_BOOTCOMMAND |
| 402 | #define CONFIG_BOOTCOMMAND "run distro_bootcmd" |
| 403 | #endif |
| 404 | |
Dennis Gilmore | 5d7c337 | 2014-07-30 16:37:14 -0600 | [diff] [blame] | 405 | #endif /* _CONFIG_CMD_DISTRO_BOOTCMD_H */ |