mirror of
https://github.com/armbian/build.git
synced 2025-09-17 11:41:11 +02:00
* `meson64`: `6.0`: g12a and g12b pinmux patches from Radxa * u-boot: `radxa-zero2`: Radxa's patches for the Zero2 on `v2022.10` * u-boot: `radxa-zero2`: use `v2022.10` plus Radxa's patches * `meson64` u-boot v2022.10: change `BOOT_TARGET_DEVICES` to try to boot USB, NVME and SCSI before SD, MMC, PXE, DHCP * `radxa-zero`: include v2022.10 standard patches (eg: boot from USB first)
20 lines
594 B
Diff
20 lines
594 B
Diff
diff --git a/include/configs/meson64.h b/include/configs/meson64.h
|
|
--- a/include/configs/meson64.h (revision 4debc57a3da6c3f4d3f89a637e99206f4cea0a96)
|
|
+++ b/include/configs/meson64.h (date 1668345216008)
|
|
@@ -64,12 +64,12 @@
|
|
#ifndef BOOT_TARGET_DEVICES
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(ROMUSB, romusb, na) \
|
|
- func(MMC, mmc, 0) \
|
|
- func(MMC, mmc, 1) \
|
|
- func(MMC, mmc, 2) \
|
|
BOOT_TARGET_DEVICES_USB(func) \
|
|
BOOT_TARGET_NVME(func) \
|
|
BOOT_TARGET_SCSI(func) \
|
|
+ func(MMC, mmc, 0) \
|
|
+ func(MMC, mmc, 1) \
|
|
+ func(MMC, mmc, 2) \
|
|
func(PXE, pxe, na) \
|
|
func(DHCP, dhcp, na)
|
|
#endif
|