configs: migrate CONFIG_VIDEO_BMP_RLE8 to defconfigs
[platform/kernel/u-boot.git] / include / config_distro_bootcmd.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2014
4  * NVIDIA Corporation <www.nvidia.com>
5  *
6  * Copyright 2014 Red Hat, Inc.
7  */
8
9 #ifndef _CONFIG_CMD_DISTRO_BOOTCMD_H
10 #define _CONFIG_CMD_DISTRO_BOOTCMD_H
11
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
28 #define BOOTENV_SHARED_BLKDEV_BODY(devtypel) \
29                 "if " #devtypel " dev ${devnum}; then " \
30                         "devtype=" #devtypel "; " \
31                         "run scan_dev_for_boot_part; " \
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                 "devnum=" #instance "; " \
41                 "run " #devtypel "_boot\0"
42
43 #define BOOTENV_DEV_NAME_BLKDEV(devtypeu, devtypel, instance) \
44         #devtypel #instance " "
45
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
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
70 #ifdef CONFIG_CMD_UBIFS
71 #define BOOTENV_SHARED_UBIFS \
72         "ubifs_boot=" \
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                         "devtype=ubi; " \
81                         "run scan_dev_for_boot; " \
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
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"
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"
102 #elif defined(CONFIG_ARCH_RV32I)
103 #define BOOTEFI_NAME "bootriscv32.efi"
104 #elif defined(CONFIG_ARCH_RV64I)
105 #define BOOTEFI_NAME "bootriscv64.efi"
106 #endif
107 #endif
108
109 #ifdef BOOTEFI_NAME
110 #if defined(CONFIG_ARM) && !defined(CONFIG_ARM64)
111 /*
112  * On 32bit ARM systems there is a reasonable number of systems that follow
113  * the $soc-$board$boardver.dtb name scheme for their device trees. Use that
114  * scheme if we don't have an explicit fdtfile variable.
115  */
116 #define BOOTENV_EFI_SET_FDTFILE_FALLBACK                                  \
117         "if test -z \"${fdtfile}\" -a -n \"${soc}\"; then "               \
118           "setenv efi_fdtfile ${soc}-${board}${boardver}.dtb; "           \
119         "fi; "
120 #else
121 #define BOOTENV_EFI_SET_FDTFILE_FALLBACK
122 #endif
123
124
125 #define BOOTENV_SHARED_EFI                                                \
126         "boot_efi_bootmgr="                                               \
127                 "if fdt addr ${fdt_addr_r}; then "                        \
128                         "bootefi bootmgr ${fdt_addr_r};"                  \
129                 "else "                                                   \
130                         "bootefi bootmgr;"                                \
131                 "fi\0"                                                    \
132         \
133         "boot_efi_binary="                                                \
134                 "load ${devtype} ${devnum}:${distro_bootpart} "           \
135                         "${kernel_addr_r} efi/boot/"BOOTEFI_NAME"; "      \
136                 "if fdt addr ${fdt_addr_r}; then "                        \
137                         "bootefi ${kernel_addr_r} ${fdt_addr_r};"         \
138                 "else "                                                   \
139                         "bootefi ${kernel_addr_r} ${fdtcontroladdr};"     \
140                 "fi\0"                                                    \
141         \
142         "load_efi_dtb="                                                   \
143                 "load ${devtype} ${devnum}:${distro_bootpart} "           \
144                         "${fdt_addr_r} ${prefix}${efi_fdtfile}\0"         \
145         \
146         "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0"                        \
147         "scan_dev_for_efi="                                               \
148                 "setenv efi_fdtfile ${fdtfile}; "                         \
149                 BOOTENV_EFI_SET_FDTFILE_FALLBACK                          \
150                 "for prefix in ${efi_dtb_prefixes}; do "                  \
151                         "if test -e ${devtype} "                          \
152                                         "${devnum}:${distro_bootpart} "   \
153                                         "${prefix}${efi_fdtfile}; then "  \
154                                 "run load_efi_dtb; "                      \
155                         "fi;"                                             \
156                 "done;"                                                   \
157                 "run boot_efi_bootmgr;"                                   \
158                 "if test -e ${devtype} ${devnum}:${distro_bootpart} "     \
159                                         "efi/boot/"BOOTEFI_NAME"; then "  \
160                                 "echo Found EFI removable media binary "  \
161                                         "efi/boot/"BOOTEFI_NAME"; "       \
162                                 "run boot_efi_binary; "                   \
163                                 "echo EFI LOAD FAILED: continuing...; "   \
164                 "fi; "                                                    \
165                 "setenv efi_fdtfile\0"
166 #define SCAN_DEV_FOR_EFI "run scan_dev_for_efi;"
167 #else
168 #define BOOTENV_SHARED_EFI
169 #define SCAN_DEV_FOR_EFI
170 #endif
171
172 #ifdef CONFIG_SATA
173 #define BOOTENV_SHARED_SATA     BOOTENV_SHARED_BLKDEV(sata)
174 #define BOOTENV_DEV_SATA        BOOTENV_DEV_BLKDEV
175 #define BOOTENV_DEV_NAME_SATA   BOOTENV_DEV_NAME_BLKDEV
176 #else
177 #define BOOTENV_SHARED_SATA
178 #define BOOTENV_DEV_SATA \
179         BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
180 #define BOOTENV_DEV_NAME_SATA \
181         BOOT_TARGET_DEVICES_references_SATA_without_CONFIG_SATA
182 #endif
183
184 #ifdef CONFIG_NVME
185 #define BOOTENV_RUN_NVME_INIT "run nvme_init; "
186 #define BOOTENV_SET_NVME_NEED_INIT "setenv nvme_need_init; "
187 #define BOOTENV_SHARED_NVME \
188         "nvme_init=" \
189                 "if ${nvme_need_init}; then " \
190                         "setenv nvme_need_init false; " \
191                         "nvme scan; " \
192                 "fi\0" \
193         \
194         "nvme_boot=" \
195                 BOOTENV_RUN_PCI_ENUM \
196                 BOOTENV_RUN_NVME_INIT \
197                 BOOTENV_SHARED_BLKDEV_BODY(nvme)
198 #define BOOTENV_DEV_NVME        BOOTENV_DEV_BLKDEV
199 #define BOOTENV_DEV_NAME_NVME   BOOTENV_DEV_NAME_BLKDEV
200 #else
201 #define BOOTENV_RUN_NVME_INIT
202 #define BOOTENV_SET_NVME_NEED_INIT
203 #define BOOTENV_SHARED_NVME
204 #define BOOTENV_DEV_NVME \
205         BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
206 #define BOOTENV_DEV_NAME_NVME \
207         BOOT_TARGET_DEVICES_references_NVME_without_CONFIG_NVME
208 #endif
209
210 #ifdef CONFIG_SCSI
211 #define BOOTENV_RUN_SCSI_INIT "run scsi_init; "
212 #define BOOTENV_SET_SCSI_NEED_INIT "scsi_need_init=; "
213 #define BOOTENV_SHARED_SCSI \
214         "scsi_init=" \
215                 "if ${scsi_need_init}; then " \
216                         "scsi_need_init=false; " \
217                         "scsi scan; " \
218                 "fi\0" \
219         \
220         "scsi_boot=" \
221                 BOOTENV_RUN_SCSI_INIT \
222                 BOOTENV_SHARED_BLKDEV_BODY(scsi)
223 #define BOOTENV_DEV_SCSI        BOOTENV_DEV_BLKDEV
224 #define BOOTENV_DEV_NAME_SCSI   BOOTENV_DEV_NAME_BLKDEV
225 #else
226 #define BOOTENV_RUN_SCSI_INIT
227 #define BOOTENV_SET_SCSI_NEED_INIT
228 #define BOOTENV_SHARED_SCSI
229 #define BOOTENV_DEV_SCSI \
230         BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
231 #define BOOTENV_DEV_NAME_SCSI \
232         BOOT_TARGET_DEVICES_references_SCSI_without_CONFIG_SCSI
233 #endif
234
235 #ifdef CONFIG_IDE
236 #define BOOTENV_RUN_IDE_INIT "run ide_init; "
237 #define BOOTENV_SET_IDE_NEED_INIT "setenv ide_need_init; "
238 #define BOOTENV_SHARED_IDE \
239         "ide_init=" \
240                 "if ${ide_need_init}; then " \
241                         "setenv ide_need_init false; " \
242                         "ide reset; " \
243                 "fi\0" \
244         \
245         "ide_boot=" \
246                 BOOTENV_RUN_IDE_INIT \
247                 BOOTENV_SHARED_BLKDEV_BODY(ide)
248 #define BOOTENV_DEV_IDE         BOOTENV_DEV_BLKDEV
249 #define BOOTENV_DEV_NAME_IDE    BOOTENV_DEV_NAME_BLKDEV
250 #else
251 #define BOOTENV_RUN_IDE_INIT
252 #define BOOTENV_SET_IDE_NEED_INIT
253 #define BOOTENV_SHARED_IDE
254 #define BOOTENV_DEV_IDE \
255         BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
256 #define BOOTENV_DEV_NAME_IDE \
257         BOOT_TARGET_DEVICES_references_IDE_without_CONFIG_IDE
258 #endif
259
260 #if defined(CONFIG_DM_PCI)
261 #define BOOTENV_RUN_PCI_ENUM "run boot_pci_enum; "
262 #define BOOTENV_SHARED_PCI \
263         "boot_pci_enum=pci enum\0"
264 #else
265 #define BOOTENV_RUN_PCI_ENUM
266 #define BOOTENV_SHARED_PCI
267 #endif
268
269 #ifdef CONFIG_CMD_USB
270 #define BOOTENV_RUN_NET_USB_START "run boot_net_usb_start; "
271 #define BOOTENV_SHARED_USB \
272         "boot_net_usb_start=usb start\0" \
273         "usb_boot=" \
274                 "usb start; " \
275                 BOOTENV_SHARED_BLKDEV_BODY(usb)
276 #define BOOTENV_DEV_USB         BOOTENV_DEV_BLKDEV
277 #define BOOTENV_DEV_NAME_USB    BOOTENV_DEV_NAME_BLKDEV
278 #else
279 #define BOOTENV_RUN_NET_USB_START
280 #define BOOTENV_SHARED_USB
281 #define BOOTENV_DEV_USB \
282         BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
283 #define BOOTENV_DEV_NAME_USB \
284         BOOT_TARGET_DEVICES_references_USB_without_CONFIG_CMD_USB
285 #endif
286
287 #ifdef CONFIG_CMD_VIRTIO
288 #define BOOTENV_RUN_VIRTIO_INIT "run virtio_init; "
289 #define BOOTENV_SET_VIRTIO_NEED_INIT "virtio_need_init=; "
290 #define BOOTENV_SHARED_VIRTIO \
291         "virtio_init=" \
292                 "if ${virtio_need_init}; then " \
293                         "virtio_need_init=false; " \
294                         "virtio scan; " \
295                 "fi\0" \
296         \
297         "virtio_boot=" \
298                 BOOTENV_RUN_PCI_ENUM \
299                 BOOTENV_RUN_VIRTIO_INIT \
300                 BOOTENV_SHARED_BLKDEV_BODY(virtio)
301 #define BOOTENV_DEV_VIRTIO      BOOTENV_DEV_BLKDEV
302 #define BOOTENV_DEV_NAME_VIRTIO BOOTENV_DEV_NAME_BLKDEV
303 #else
304 #define BOOTENV_RUN_VIRTIO_INIT
305 #define BOOTENV_SET_VIRTIO_NEED_INIT
306 #define BOOTENV_SHARED_VIRTIO
307 #define BOOTENV_DEV_VIRTIO \
308         BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
309 #define BOOTENV_DEV_NAME_VIRTIO \
310         BOOT_TARGET_DEVICES_references_VIRTIO_without_CONFIG_CMD_VIRTIO
311 #endif
312
313 #if defined(CONFIG_CMD_DHCP)
314 #if defined(CONFIG_EFI_LOADER)
315 /* http://www.iana.org/assignments/dhcpv6-parameters/dhcpv6-parameters.xml */
316 #if defined(CONFIG_ARM64) || defined(__aarch64__)
317 #define BOOTENV_EFI_PXE_ARCH "0xb"
318 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00011:UNDI:003000"
319 #elif defined(CONFIG_ARM) || defined(__arm__)
320 #define BOOTENV_EFI_PXE_ARCH "0xa"
321 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00010:UNDI:003000"
322 #elif defined(CONFIG_X86) || defined(__x86_64__)
323 #define BOOTENV_EFI_PXE_ARCH "0x7"
324 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00007:UNDI:003000"
325 #elif defined(__i386__)
326 #define BOOTENV_EFI_PXE_ARCH "0x6"
327 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00006:UNDI:003000"
328 #elif defined(CONFIG_ARCH_RV32I) || ((defined(__riscv) && __riscv_xlen == 32))
329 #define BOOTENV_EFI_PXE_ARCH "0x19"
330 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00025:UNDI:003000"
331 #elif defined(CONFIG_ARCH_RV64I) || ((defined(__riscv) && __riscv_xlen == 64))
332 #define BOOTENV_EFI_PXE_ARCH "0x1b"
333 #define BOOTENV_EFI_PXE_VCI "PXEClient:Arch:00027:UNDI:003000"
334 #elif defined(CONFIG_SANDBOX)
335 # error "sandbox EFI support is only supported on ARM and x86"
336 #else
337 #error Please specify an EFI client identifier
338 #endif
339
340 /*
341  * Ask the dhcp server for an EFI binary. If we get one, check for a
342  * device tree in the same folder. Then boot everything. If the file was
343  * not an EFI binary, we just return from the bootefi command and continue.
344  */
345 #define BOOTENV_EFI_RUN_DHCP \
346         "setenv efi_fdtfile ${fdtfile}; "                                 \
347         BOOTENV_EFI_SET_FDTFILE_FALLBACK                                  \
348         "setenv efi_old_vci ${bootp_vci};"                                \
349         "setenv efi_old_arch ${bootp_arch};"                              \
350         "setenv bootp_vci " BOOTENV_EFI_PXE_VCI ";"                       \
351         "setenv bootp_arch " BOOTENV_EFI_PXE_ARCH ";"                     \
352         "if dhcp ${kernel_addr_r}; then "                                 \
353                 "tftpboot ${fdt_addr_r} dtb/${efi_fdtfile};"              \
354                 "if fdt addr ${fdt_addr_r}; then "                        \
355                         "bootefi ${kernel_addr_r} ${fdt_addr_r}; "        \
356                 "else "                                                   \
357                         "bootefi ${kernel_addr_r} ${fdtcontroladdr};"     \
358                 "fi;"                                                     \
359         "fi;"                                                             \
360         "setenv bootp_vci ${efi_old_vci};"                                \
361         "setenv bootp_arch ${efi_old_arch};"                              \
362         "setenv efi_fdtfile;"                                             \
363         "setenv efi_old_arch;"                                            \
364         "setenv efi_old_vci;"
365 #else
366 #define BOOTENV_EFI_RUN_DHCP
367 #endif
368 #define BOOTENV_DEV_DHCP(devtypeu, devtypel, instance) \
369         "bootcmd_dhcp=" \
370                 BOOTENV_RUN_NET_USB_START \
371                 BOOTENV_RUN_PCI_ENUM \
372                 "if dhcp ${scriptaddr} ${boot_script_dhcp}; then " \
373                         "source ${scriptaddr}; " \
374                 "fi;" \
375                 BOOTENV_EFI_RUN_DHCP \
376                 "\0"
377 #define BOOTENV_DEV_NAME_DHCP(devtypeu, devtypel, instance) \
378         "dhcp "
379 #else
380 #define BOOTENV_DEV_DHCP \
381         BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
382 #define BOOTENV_DEV_NAME_DHCP \
383         BOOT_TARGET_DEVICES_references_DHCP_without_CONFIG_CMD_DHCP
384 #endif
385
386 #if defined(CONFIG_CMD_DHCP) && defined(CONFIG_CMD_PXE)
387 #define BOOTENV_DEV_PXE(devtypeu, devtypel, instance) \
388         "bootcmd_pxe=" \
389                 BOOTENV_RUN_NET_USB_START \
390                 BOOTENV_RUN_PCI_ENUM \
391                 "dhcp; " \
392                 "if pxe get; then " \
393                         "pxe boot; " \
394                 "fi\0"
395 #define BOOTENV_DEV_NAME_PXE(devtypeu, devtypel, instance) \
396         "pxe "
397 #else
398 #define BOOTENV_DEV_PXE \
399         BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
400 #define BOOTENV_DEV_NAME_PXE \
401         BOOT_TARGET_DEVICES_references_PXE_without_CONFIG_CMD_DHCP_or_PXE
402 #endif
403
404 #define BOOTENV_DEV_NAME(devtypeu, devtypel, instance) \
405         BOOTENV_DEV_NAME_##devtypeu(devtypeu, devtypel, instance)
406 #define BOOTENV_BOOT_TARGETS \
407         "boot_targets=" BOOT_TARGET_DEVICES(BOOTENV_DEV_NAME) "\0"
408
409 #define BOOTENV_DEV(devtypeu, devtypel, instance) \
410         BOOTENV_DEV_##devtypeu(devtypeu, devtypel, instance)
411 #define BOOTENV \
412         BOOTENV_SHARED_HOST \
413         BOOTENV_SHARED_MMC \
414         BOOTENV_SHARED_PCI \
415         BOOTENV_SHARED_USB \
416         BOOTENV_SHARED_SATA \
417         BOOTENV_SHARED_SCSI \
418         BOOTENV_SHARED_NVME \
419         BOOTENV_SHARED_IDE \
420         BOOTENV_SHARED_UBIFS \
421         BOOTENV_SHARED_EFI \
422         BOOTENV_SHARED_VIRTIO \
423         "boot_prefixes=/ /boot/\0" \
424         "boot_scripts=boot.scr.uimg boot.scr\0" \
425         "boot_script_dhcp=boot.scr.uimg\0" \
426         BOOTENV_BOOT_TARGETS \
427         \
428         "boot_syslinux_conf=extlinux/extlinux.conf\0" \
429         "boot_extlinux="                                                  \
430                 "sysboot ${devtype} ${devnum}:${distro_bootpart} any "    \
431                         "${scriptaddr} ${prefix}${boot_syslinux_conf}\0"  \
432         \
433         "scan_dev_for_extlinux="                                          \
434                 "if test -e ${devtype} "                                  \
435                                 "${devnum}:${distro_bootpart} "           \
436                                 "${prefix}${boot_syslinux_conf}; then "   \
437                         "echo Found ${prefix}${boot_syslinux_conf}; "     \
438                         "run boot_extlinux; "                             \
439                         "echo SCRIPT FAILED: continuing...; "             \
440                 "fi\0"                                                    \
441         \
442         "boot_a_script="                                                  \
443                 "load ${devtype} ${devnum}:${distro_bootpart} "           \
444                         "${scriptaddr} ${prefix}${script}; "              \
445                 "source ${scriptaddr}\0"                                  \
446         \
447         "scan_dev_for_scripts="                                           \
448                 "for script in ${boot_scripts}; do "                      \
449                         "if test -e ${devtype} "                          \
450                                         "${devnum}:${distro_bootpart} "   \
451                                         "${prefix}${script}; then "       \
452                                 "echo Found U-Boot script "               \
453                                         "${prefix}${script}; "            \
454                                 "run boot_a_script; "                     \
455                                 "echo SCRIPT FAILED: continuing...; "     \
456                         "fi; "                                            \
457                 "done\0"                                                  \
458         \
459         "scan_dev_for_boot="                                              \
460                 "echo Scanning ${devtype} "                               \
461                                 "${devnum}:${distro_bootpart}...; "       \
462                 "for prefix in ${boot_prefixes}; do "                     \
463                         "run scan_dev_for_extlinux; "                     \
464                         "run scan_dev_for_scripts; "                      \
465                 "done;"                                                   \
466                 SCAN_DEV_FOR_EFI                                          \
467                 "\0"                                                      \
468         \
469         "scan_dev_for_boot_part="                                         \
470                 "part list ${devtype} ${devnum} -bootable devplist; "     \
471                 "env exists devplist || setenv devplist 1; "              \
472                 "for distro_bootpart in ${devplist}; do "                 \
473                         "if fstype ${devtype} "                           \
474                                         "${devnum}:${distro_bootpart} "   \
475                                         "bootfstype; then "               \
476                                 "run scan_dev_for_boot; "                 \
477                         "fi; "                                            \
478                 "done; "                                                  \
479                 "setenv devplist\0"                                       \
480         \
481         BOOT_TARGET_DEVICES(BOOTENV_DEV)                                  \
482         \
483         "distro_bootcmd=" BOOTENV_SET_SCSI_NEED_INIT                      \
484                 BOOTENV_SET_NVME_NEED_INIT                                \
485                 BOOTENV_SET_IDE_NEED_INIT                                 \
486                 BOOTENV_SET_VIRTIO_NEED_INIT                              \
487                 "for target in ${boot_targets}; do "                      \
488                         "run bootcmd_${target}; "                         \
489                 "done\0"
490
491 #ifndef CONFIG_BOOTCOMMAND
492 #define CONFIG_BOOTCOMMAND "run distro_bootcmd"
493 #endif
494
495 #endif  /* _CONFIG_CMD_DISTRO_BOOTCMD_H */