From patchwork Tue Nov 20 13:15:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Guillaume GARDET X-Patchwork-Id: 1000485 X-Patchwork-Delegate: promsoft@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) 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=free.fr Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 42zmRH19SGz9s0n for ; Wed, 21 Nov 2018 00:15:38 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id C89B8C220A3; Tue, 20 Nov 2018 13:15:34 +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=FREEMAIL_FROM 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 EC8F4C22056; Tue, 20 Nov 2018 13:15:31 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 705FCC22056; Tue, 20 Nov 2018 13:15:31 +0000 (UTC) Received: from smtp5-g21.free.fr (smtp5-g21.free.fr [212.27.42.5]) by lists.denx.de (Postfix) with ESMTPS id 9C0FAC22043 for ; Tue, 20 Nov 2018 13:15:30 +0000 (UTC) Received: from localhost.localdomain (unknown [IPv6:2a01:e0a:d7:1620:6e8f:6565:76ba:edc7]) by smtp5-g21.free.fr (Postfix) with ESMTP id 7AA615FFC3; Tue, 20 Nov 2018 14:15:24 +0100 (CET) From: Guillaume GARDET To: u-boot@lists.denx.de Date: Tue, 20 Nov 2018 14:15:13 +0100 Message-Id: <20181120131513.20333-1-guillaume.gardet@free.fr> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181119171835.GE11247@bill-the-cat> References: <20181119171835.GE11247@bill-the-cat> MIME-Version: 1.0 Cc: Guillaume GARDET , Tom Rini Subject: [U-Boot] [PATCH] exynos: imply SYS_THUMB_BUILD 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" This patch allows smaller binaries. This is needed for and has been tested on Arndale board, as u-boot.bin is now bigger than the 512K load limit, with GCC8, without thumb mode. Signed-off-by: Guillaume GARDET Cc: Albert Aribaud Cc: Minkyu Kang Cc: Tom Rini Acked-by: Lukasz Majewski Acked-by: Minkyu Kang --- arch/arm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index f5d4d39683..1ccd53fd0b 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -607,6 +607,7 @@ config ARCH_EXYNOS select DM_SPI select DM_SPI_FLASH select SPI + imply SYS_THUMB_BUILD imply CMD_DM imply FAT_WRITE