All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] rockchip: make_fit_atf.py: fix loadables property set error
@ 2019-07-04  9:44 Andy Yan
  2019-07-05  7:33 ` Kever Yang
  2019-07-05  9:15 ` Christoph Müllner
  0 siblings, 2 replies; 10+ messages in thread
From: Andy Yan @ 2019-07-04  9:44 UTC (permalink / raw)
  To: u-boot

Commit b238e4b00ced ("rockchip: Cleanup of make_fit_atf.py.") set
firmware = "atf_1";
loadables = "uboot","atf_1","atf_2";

Actually it should be:
firmware = "atf_1";
loadables = "uboot","atf_2","atf_3";

Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
---

 arch/arm/mach-rockchip/make_fit_atf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-rockchip/make_fit_atf.py b/arch/arm/mach-rockchip/make_fit_atf.py
index 45ec105887..db0ae96ca8 100755
--- a/arch/arm/mach-rockchip/make_fit_atf.py
+++ b/arch/arm/mach-rockchip/make_fit_atf.py
@@ -94,7 +94,7 @@ def append_conf_section(file, cnt, dtname, segments):
     if segments != 0:
         file.write(',')
     for i in range(1, segments):
-        file.write('"atf_%d"' % (i))
+        file.write('"atf_%d"' % (i + 1))
         if i != (segments - 1):
             file.write(',')
         else:
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-07-08  1:07 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-04  9:44 [U-Boot] [PATCH] rockchip: make_fit_atf.py: fix loadables property set error Andy Yan
2019-07-05  7:33 ` Kever Yang
2019-07-05  9:15 ` Christoph Müllner
2019-07-05 10:06   ` Andy Yan
2019-07-05 10:26     ` Christoph Müllner
2019-07-05 11:38   ` Kever Yang
2019-07-05 12:03     ` Mark Kettenis
2019-07-06 15:02       ` [U-Boot] [PATCH] rockchip: make_fit_atf.py: fix loadables property set error【请注意,邮件由mark.kettenis@sibelius.xs4all.nl代发】 Kever Yang
2019-07-06 17:32         ` Christoph Müllner
2019-07-08  1:07           ` Andy Yan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.