From patchwork Thu Oct 17 19:08:34 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 1178963 X-Patchwork-Delegate: ykai007@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=debian.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 46vJf1598Fz9sPj for ; Fri, 18 Oct 2019 06:10:33 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 6621CC21DD7; Thu, 17 Oct 2019 19:09:28 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 8BA65C21DED; Thu, 17 Oct 2019 19:09:27 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id E1E59C21D74; Thu, 17 Oct 2019 19:08:56 +0000 (UTC) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by lists.denx.de (Postfix) with ESMTP id 39DDEC21D8A for ; Thu, 17 Oct 2019 19:08:52 +0000 (UTC) Received: from localhost (unknown [IPv6:2600:3c01:e000:21:21:21:0:100b]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 80C731AA2C; Thu, 17 Oct 2019 12:08:50 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de, Simon Glass , Kever Yang , Philipp Tomsich Date: Thu, 17 Oct 2019 12:08:34 -0700 Message-Id: <20191017190834.28378-1-vagrant@debian.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Cc: Marek Vasut , Vagrant Cascadian , Heinrich Schuchardt , Stefan Roese , Chris Packham Subject: [U-Boot] [PATCH] Enable building of u-boot.itb on Rockchip RK3328 platforms. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" The instructions in doc/README.rockchip for installing rock64-rk3328 make use of u-boot.itb, but it is not built by default. Add u-boot.itb to BUILD_TARGET for RK3328 platforms. Signed-off-by: Vagrant Cascadian --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index 66b059f749..16491de83d 100644 --- a/Kconfig +++ b/Kconfig @@ -253,7 +253,7 @@ config BUILD_TARGET default "u-boot-spl.kwb" if ARCH_MVEBU && SPL default "u-boot-elf.srec" if RCAR_GEN3 default "u-boot.itb" if SPL_LOAD_FIT && (ROCKCHIP_RK3399 || \ - ARCH_SUNXI || RISCV) + ARCH_SUNXI || RISCV || ROCKCHIP_RK3328) default "u-boot.kwb" if KIRKWOOD default "u-boot-with-spl.bin" if ARCH_AT91 && SPL_NAND_SUPPORT default "u-boot-with-spl.imx" if ARCH_MX6 && SPL