From patchwork Wed Jul 20 21:41:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heiko Stuebner X-Patchwork-Id: 650910 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3rvr3V3T8cz9tn4 for ; Thu, 21 Jul 2016 07:42:14 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C32CBA75D7; Wed, 20 Jul 2016 23:42:11 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZF9TOJAsO7E4; Wed, 20 Jul 2016 23:42:11 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 03E06A751B; Wed, 20 Jul 2016 23:42:11 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 60DB0A751B for ; Wed, 20 Jul 2016 23:42:08 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ngtiw4NbCLnO for ; Wed, 20 Jul 2016 23:42:08 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from gloria.sntech.de (gloria.sntech.de [95.129.55.99]) by theia.denx.de (Postfix) with ESMTPS id 2A7E9A7519 for ; Wed, 20 Jul 2016 23:42:05 +0200 (CEST) Received: from ip9234aa3a.dynamic.kabel-deutschland.de ([146.52.170.58] helo=diego.sntech) by gloria.sntech.de with esmtpsa (TLS1.1:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1bPzFh-00060m-3r; Wed, 20 Jul 2016 23:42:01 +0200 From: Heiko Stuebner To: sjg@chromium.org Date: Wed, 20 Jul 2016 23:41:56 +0200 Message-Id: <1469050916-5263-1-git-send-email-heiko@sntech.de> X-Mailer: git-send-email 2.8.0.rc3 Cc: u-boot@lists.denx.de, hl@rock-chips.com Subject: [U-Boot] [PATCH] rockchip: fix rk3036 SPL build X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Commit c7db6abf534d ("ARM64: rockchip: add support for rk3399 SoC based evb") moved the SPL Kconfig selects into the individual soc-specific options. But it only did it for the rk3288 and not for the rk3036 thus disabling SPL builds for it. Add the necessary options for the rk3036 as well. Fixes: c7db6abf534d ("ARM64: rockchip: add support for rk3399 SoC based evb") Signed-off-by: Heiko Stuebner --- arch/arm/mach-rockchip/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index 2817c0f..c47e16c 100644 --- a/arch/arm/mach-rockchip/Kconfig +++ b/arch/arm/mach-rockchip/Kconfig @@ -8,6 +8,8 @@ config ROCKCHIP_RK3036 including NEON and GPU, Mali-400 graphics, several DDR3 options and video codec support. Peripherals include Gigabit Ethernet, USB2 host and OTG, SDIO, I2S, UART, SPI, I2C and PWMs. + select SUPPORT_SPL + select SPL config ROCKCHIP_RK3188 bool "Support Rockchip RK3188"