From patchwork Wed Oct 25 12:26:01 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Ripard X-Patchwork-Id: 830244 X-Patchwork-Delegate: jagannadh.teki@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=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3yMTtR5W9Sz9t38 for ; Wed, 25 Oct 2017 23:27:43 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 86079C21DCA; Wed, 25 Oct 2017 12:26:43 +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 8A327C21DC3; Wed, 25 Oct 2017 12:26:34 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id B4ABAC21DA2; Wed, 25 Oct 2017 12:26:22 +0000 (UTC) Received: from mail.free-electrons.com (mail.free-electrons.com [62.4.15.54]) by lists.denx.de (Postfix) with ESMTP id 1A976C21D99 for ; Wed, 25 Oct 2017 12:26:19 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 110) id 6F89C20848; Wed, 25 Oct 2017 14:26:17 +0200 (CEST) Received: from localhost (unknown [185.94.189.189]) by mail.free-electrons.com (Postfix) with ESMTPSA id CC1F8206D8; Wed, 25 Oct 2017 14:26:16 +0200 (CEST) From: Maxime Ripard To: Tom Rini Date: Wed, 25 Oct 2017 14:26:01 +0200 Message-Id: <20171025122601.28224-5-maxime.ripard@free-electrons.com> X-Mailer: git-send-email 2.14.2 In-Reply-To: <20171025122601.28224-1-maxime.ripard@free-electrons.com> References: <20171025122601.28224-1-maxime.ripard@free-electrons.com> Cc: Andre Przywara , agraf@suse.de, u-boot@lists.denx.de, Maxime Ripard , Jagan Teki Subject: [U-Boot] [RFC 4/4] env: sunxi: Switch by default to the transition environment code 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" Now that we have some code to smoothly transition from a raw environment to a file, make that the default. Signed-off-by: Maxime Ripard --- env/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env/Kconfig b/env/Kconfig index fdd68fdfbdb6..95ab988552bb 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -2,7 +2,7 @@ menu "Environment" choice prompt "Select the location of the environment" - default ENV_IS_IN_MMC if ARCH_SUNXI + default ENV_IS_SUNXI_TRANSITION if ARCH_SUNXI default ENV_IS_IN_MMC if ARCH_EXYNOS4 default ENV_IS_IN_MMC if MX6SX || MX7D default ENV_IS_IN_MMC if TEGRA30 || TEGRA124