1From 211bf049084e6e374dac253138fa813682910146 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Micha=C5=82=20=C5=81yszczek?= <michal.lyszczek@bofc.pl>
3Date: Tue, 5 Feb 2019 22:08:54 +0100
4Subject: [PATCH] Makefile: rk3328 needs itb image to boot properly
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9Signed-off-by: Michał Łyszczek <michal.lyszczek@bofc.pl>
10---
11 Makefile | 5 +++++
12 1 file changed, 5 insertions(+)
13
14diff --git a/Makefile b/Makefile
15index 8086f3c93e..a6425b5b03 100644
16--- a/Makefile
17+++ b/Makefile
18@@ -799,6 +799,11 @@ ifneq ($(BUILD_ROM),)
19 ALL-$(CONFIG_X86_RESET_VECTOR) += u-boot.rom
20 endif
21
22+# rk3328 needs itb image to boot properly
23+ifeq ($(CONFIG_ROCKCHIP_RK3328),y)
24+ALL-y += u-boot.itb
25+endif
26+
27 # enable combined SPL/u-boot/dtb rules for tegra
28 ifeq ($(CONFIG_TEGRA)$(CONFIG_SPL),yy)
29 ALL-y += u-boot-tegra.bin u-boot-nodtb-tegra.bin
30--
312.18.1
32
33