mirror of
https://github.com/armbian/build.git
synced 2025-08-14 15:16:58 +02:00
* adapted efuse and gmac patches to u-boot v2021.04 * enlarge SPL stack size to 0x8000 (caused u-boot freeze after SPL loading) * fix signed/unsigned comparison (caused u-boot freeze before SPL loading) * enable back size optimization flag commit 0363085a3bec3f76db8937f24ef81fc38f89549f Author: Paolo Sabatino <paolo.sabatino@gmail.com> Date: Sat Apr 3 16:02:14 2021 +0000 rk322x: bump u-boot to v2021.01 (fix dtb load address in .its, revert offending mainline patch)
27 lines
843 B
Diff
27 lines
843 B
Diff
From 3f12642b5947ee63e1e6fe08df558206d1b4daff Mon Sep 17 00:00:00 2001
|
|
From: Paolo Sabatino <paolo.sabatino@gmail.com>
|
|
Date: Sat, 3 Apr 2021 19:38:20 +0000
|
|
Subject: [PATCH] Fix signed/unsigned comparison causing massive headache on
|
|
gcc-arm >= 8.0 due to valid images being unable to boot
|
|
|
|
---
|
|
drivers/core/lists.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/core/lists.c b/drivers/core/lists.c
|
|
index e06e4e853d..c355f0752f 100644
|
|
--- a/drivers/core/lists.c
|
|
+++ b/drivers/core/lists.c
|
|
@@ -58,7 +58,7 @@ static int bind_drivers_pass(struct udevice *parent, bool pre_reloc_only)
|
|
const int n_ents = ll_entry_count(struct driver_info, driver_info);
|
|
bool missing_parent = false;
|
|
int result = 0;
|
|
- uint idx;
|
|
+ int idx;
|
|
|
|
/*
|
|
* Do one iteration through the driver_info records. For of-platdata,
|
|
--
|
|
2.25.1
|
|
|