From patchwork Thu Oct 1 17:43:29 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Harkin X-Patchwork-Id: 525206 X-Patchwork-Delegate: trini@ti.com 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 35E7C140D6D for ; Fri, 2 Oct 2015 03:44:22 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8F0374B9CF; Thu, 1 Oct 2015 19:44: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 EbJmxZPF97Hz; Thu, 1 Oct 2015 19:44:11 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3992B4B989; Thu, 1 Oct 2015 19:43:59 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7421B4B8FC for ; Thu, 1 Oct 2015 19:43:53 +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 xkE5H-0d0RIe for ; Thu, 1 Oct 2015 19:43:53 +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 mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by theia.denx.de (Postfix) with ESMTPS id 6A3544B931 for ; Thu, 1 Oct 2015 19:43:47 +0200 (CEST) Received: by wicge5 with SMTP id ge5so79051wic.0 for ; Thu, 01 Oct 2015 10:43:47 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=WbAHIqkKaNfczhSQGD1H7zdRb80TVBXLc0wsEDQ2tds=; b=RVawWDAiF4DpKbOM0L/JC/99q7lZ06nJ9YynmZFFCMlzmT3wn6sPfeJFtaa/vRMiSQ wIiXYi0R+9KaAsXcXJeYFsKrJvwbBdnnIDjjIp6yvqdSfSYx3dFcgkTyykC2EJn4nKe+ nrLUZK33UvHqsKNq1YYetz2M1TAmGx6ZS3sF92cTw6dOti/mX2k4bGYqTatKv2fBZu+X F8YIVI2Ir9nmUGPoYMfQpyaLDPdeFFjjmJFsHPpCx++/9Hi5FjGsjnQP8zKWDqfyIvT1 dyKhcDnI4JGNJYFSQutNcHHVq1UXsfco09K6fNVKl6AFlQXTRUMG7YtLmcSWiCZL9UGa GkKQ== X-Gm-Message-State: ALoCoQl0pPvbVxVriqRCws+glU6EmLTmRm/UEyxLT3k1pYBkVo6dzqq1xpfECcY4S+9q2FsTa2sO X-Received: by 10.180.8.232 with SMTP id u8mr77018wia.26.1443721427587; Thu, 01 Oct 2015 10:43:47 -0700 (PDT) Received: from localhost.localdomain (82-69-54-187.dsl.in-addr.zen.co.uk. [82.69.54.187]) by smtp.gmail.com with ESMTPSA id xt1sm7198426wjb.32.2015.10.01.10.43.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 01 Oct 2015 10:43:47 -0700 (PDT) From: Ryan Harkin To: ryan.harkin@linaro.org, u-boot@lists.denx.de, Albert Aribaud , Tom Rini Date: Thu, 1 Oct 2015 18:43:29 +0100 Message-Id: <1443721416-725-4-git-send-email-ryan.harkin@linaro.org> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1443721416-725-1-git-send-email-ryan.harkin@linaro.org> References: <1443721416-725-1-git-send-email-ryan.harkin@linaro.org> Cc: Steve Rae Subject: [U-Boot] [PATCH v3 03/10] vexpress64: Kconfig: add CONFIG_SYS_BOOTM_LEN 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" vexpress64 kernels are usually over 8 MBytes in length, so setting the max uImage length to 0x4000000 (64 Mbytes) should give us plenty of scope for expansion. I mostly chose this length to match other board configs that use "(64 << 20)", however, Kconfig doesn't allow arithmetic operations. Signed-off-by: Ryan Harkin Reviewed-by: Linus Walleij CC: Masahiro Yamada --- board/armltd/vexpress64/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/board/armltd/vexpress64/Kconfig b/board/armltd/vexpress64/Kconfig index 8da3bec..72679be 100644 --- a/board/armltd/vexpress64/Kconfig +++ b/board/armltd/vexpress64/Kconfig @@ -1,3 +1,6 @@ +config CONFIG_SYS_BOOTM_LEN + default 0x4000000 + config SYS_BOARD default "vexpress64"