35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
From d312c4e40bf816823bdcfd066dd2511b23e83c9c Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Micha=C5=82=20=C5=81yszczek?= <michal.lyszczek@bofc.pl>
|
|
Date: Tue, 5 Feb 2019 22:08:54 +0100
|
|
Subject: [PATCH] Makefile: rk3328 needs itb image to boot properly
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: Michał Łyszczek <michal.lyszczek@bofc.pl>
|
|
[Dario: make the patch to be applied with fuzz factor 0]
|
|
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
|
|
---
|
|
Makefile | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 149f83994814..ebbdf2596b9b 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -923,6 +923,11 @@ ifeq ($(CONFIG_SYS_COREBOOT)$(CONFIG_SPL),yy)
|
|
ALL-$(CONFIG_BINMAN) += u-boot-x86-with-spl.bin
|
|
endif
|
|
|
|
+# rk3328 needs itb image to boot properly
|
|
+ifeq ($(CONFIG_ROCKCHIP_RK3328),y)
|
|
+ALL-y += u-boot.itb
|
|
+endif
|
|
+
|
|
# Build a combined spl + u-boot image for sunxi
|
|
ifeq ($(CONFIG_ARCH_SUNXI)$(CONFIG_SPL),yy)
|
|
ALL-y += u-boot-sunxi-with-spl.bin
|
|
--
|
|
2.43.0
|
|
|