From patchwork Wed Jul 25 03:18:33 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 949002 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=debian.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 41b0ph5y2Xz9ryt for ; Wed, 25 Jul 2018 13:20:12 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 8061EC221C5; Wed, 25 Jul 2018 03:19:27 +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 9D01BC221D8; Wed, 25 Jul 2018 03:19:00 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 30DE9C221BD; Wed, 25 Jul 2018 03:18:56 +0000 (UTC) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by lists.denx.de (Postfix) with ESMTP id A9B1DC221CB for ; Wed, 25 Jul 2018 03:18: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 58AB51A9C3; Tue, 24 Jul 2018 20:18:51 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de Date: Wed, 25 Jul 2018 11:18:33 +0800 Message-Id: <20180725031835.5666-3-vagrant@debian.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180725031835.5666-1-vagrant@debian.org> References: <20180725031835.5666-1-vagrant@debian.org> Cc: Marek Vasut , Tom Rini , Vagrant Cascadian Subject: [U-Boot] [PATCH v2 2/4] arm: odroid: Increase default env size in preparation for distro_bootcmd. 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Adding distro_bootcmd support bumps the default environment size over 4500. Increase to SZ_16K to allow for room to grow in the future. Acked-by: Lukasz Majewski Signed-off-by: Vagrant Cascadian --- Changes in v2: - Change from 16384 to SZ_16K, as suggested by Minkyu Kang. include/configs/odroid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/odroid.h b/include/configs/odroid.h index b7b75c0dc0..07882aca9a 100644 --- a/include/configs/odroid.h +++ b/include/configs/odroid.h @@ -50,7 +50,7 @@ #define CONFIG_SYS_MONITOR_BASE 0x00000000 #define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV -#define CONFIG_ENV_SIZE 4096 +#define CONFIG_ENV_SIZE SZ_16K #define CONFIG_ENV_OFFSET (SZ_1K * 1280) /* 1.25 MiB offset */ #define CONFIG_ENV_OVERWRITE