From patchwork Wed Sep 23 17:25:36 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ryan Harkin X-Patchwork-Id: 521784 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 BC8821401DE for ; Thu, 24 Sep 2015 03:26:58 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 554204B92F; Wed, 23 Sep 2015 19:26:57 +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 1AMYr3opNrg6; Wed, 23 Sep 2015 19:26:57 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 97F1D4B803; Wed, 23 Sep 2015 19:26:56 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B6FC44B858 for ; Wed, 23 Sep 2015 19:26: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 mYAMPwXgtwfd for ; Wed, 23 Sep 2015 19:26: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-pa0-f51.google.com (mail-pa0-f51.google.com [209.85.220.51]) by theia.denx.de (Postfix) with ESMTPS id 3594D4B78D for ; Wed, 23 Sep 2015 19:26:51 +0200 (CEST) Received: by pacex6 with SMTP id ex6so46073459pac.0 for ; Wed, 23 Sep 2015 10:26:50 -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=cmvg0QJvk6QCaHnnODrcxeq4WXxVTyIRhgIyxxZgK/w=; b=gx3i7c2fgdxmLzTGCpti06sfwzpe8HVIKB+5BlQ73X6tNYJSjaBqVcg6bd6xkcpON9 x/6ZjJidhbkq7KPvwuNQF6dwhdJ9zlPe33EA9x1WpR7SUyYE4FKVR3jsCyGizVn2wXQs VK/g464wSW//XTasf9CvU6TCdpWgTglOKWaA1cScnGey7Koqx2FrtMXVDJH2NWKDBXOI bjnLI+pRQANq3Mm4XjasfRG0JKH1DXWwTJQIXM1On0FfzeLPSDt7sGEpKwK7fAQZhecG I8PVUQbDpKndcXWULtFJkd+9BvzwtgYMSasQTTzAqNAcwlgNguNxq38BEpRdM8Be0Zge 5waw== X-Gm-Message-State: ALoCoQn7+rn1+eh8eta/Zm8Q4iTF+D3NBQFPNItW97FNiCno1bkFZo7xbk274QO6w1KeVQPIy6vy X-Received: by 10.69.26.161 with SMTP id iz1mr39163167pbd.17.1443029210532; Wed, 23 Sep 2015 10:26:50 -0700 (PDT) Received: from localhost.localdomain ([70.35.39.2]) by smtp.gmail.com with ESMTPSA id fm5sm9061765pab.24.2015.09.23.10.26.46 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 23 Sep 2015 10:26:49 -0700 (PDT) From: Ryan Harkin To: ryan.harkin@linaro.org, u-boot@lists.denx.de, Albert Aribaud , Tom Rini Date: Wed, 23 Sep 2015 10:25:36 -0700 Message-Id: <1443029143-22313-5-git-send-email-ryan.harkin@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1443029143-22313-1-git-send-email-ryan.harkin@linaro.org> References: <1443029143-22313-1-git-send-email-ryan.harkin@linaro.org> Cc: Steve Rae , Masahiro Yamada Subject: [U-Boot] [PATCH 04/11] 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"