mirror of
https://github.com/armbian/build.git
synced 2025-09-19 20:51:12 +02:00
- I guess this is most of the u-boot's I've touched over the years; notable exception is the orangepi3b (patches live in Kwiboo's tree) - this is in preparation for bumping versions, hopefully soon - radxa-zero, radxa-zero2, khadas-vim3, khadas-vim3l: drop patches for old u-boot versions no longer used
26 lines
704 B
Diff
26 lines
704 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Ricardo Pardini <ricardo@pardini.net>
|
|
Date: Fri, 30 Jun 2023 00:02:51 +0200
|
|
Subject: cmd: source: fix the error that the command source failed to execute
|
|
|
|
---
|
|
cmd/source.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/cmd/source.c b/cmd/source.c
|
|
index 6b1c8b744b49..cf820c072af1 100644
|
|
--- a/cmd/source.c
|
|
+++ b/cmd/source.c
|
|
@@ -87,7 +87,7 @@ source (ulong addr, const char *fit_uname)
|
|
* past the zero-terminated sequence of image lengths to get
|
|
* to the actual image data
|
|
*/
|
|
- while (*data++ != IMAGE_PARAM_INVAL);
|
|
+ while (*data++);
|
|
break;
|
|
#endif
|
|
#if defined(CONFIG_FIT)
|
|
--
|
|
Armbian
|
|
|