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