odroidc2: u-boot: use minimal patchset for v22.01 u-boot

- symptoms:
  - no video display in u-boot
  - can't boot from SD (but does from eMMC)
- this has proven to solve nothing, but is still neat
- real problem is probably the FIP?
This commit is contained in:
Ricardo Pardini
2022-12-12 18:29:15 +01:00
parent 0eb441c9cd
commit faa0d7ee8f
2 changed files with 27 additions and 0 deletions

View File

@@ -6,3 +6,4 @@ KERNEL_TARGET="current,edge"
FULL_DESKTOP="yes" FULL_DESKTOP="yes"
ASOUND_STATE="asound.state.mesongx" ASOUND_STATE="asound.state.mesongx"
BOOTBRANCH_BOARD="tag:v2022.01" BOOTBRANCH_BOARD="tag:v2022.01"
BOOTPATCHDIR="v2022.01"

View File

@@ -0,0 +1,26 @@
Subject: [PATCH] meson64 boot stuff first
---
Index: include/configs/meson64.h
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/include/configs/meson64.h b/include/configs/meson64.h
--- a/include/configs/meson64.h (revision d637294e264adfeb29f390dfc393106fd4d41b17)
+++ b/include/configs/meson64.h (revision 53886e58a1b76a466bf6c8cb75e70dfefe97cd02)
@@ -71,12 +71,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