From patchwork Fri Jul 18 15:51:35 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 371640 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 7EFA7140132 for ; Sat, 19 Jul 2014 01:52:31 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B4C93A7492; Fri, 18 Jul 2014 17:52:09 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 HIeVWTFUNq1t; Fri, 18 Jul 2014 17:52:09 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5869FA7493; Fri, 18 Jul 2014 17:51:43 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 726A5A740F for ; Fri, 18 Jul 2014 17:51:39 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 gROjNjytEZwv for ; Fri, 18 Jul 2014 17:51:36 +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-qa0-f46.google.com (mail-qa0-f46.google.com [209.85.216.46]) by theia.denx.de (Postfix) with ESMTPS id 45773A73F7 for ; Fri, 18 Jul 2014 17:51:29 +0200 (CEST) Received: by mail-qa0-f46.google.com with SMTP id v10so3082168qac.19 for ; Fri, 18 Jul 2014 08:51:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:in-reply-to:references; bh=67jaKKOmmK13x9fX0fmC56Kifov5aXX/kH4KRbN3k40=; b=nRe5SiHd4O+e61yxJIB34HMBlxyZqJ2MJN3K4wSNazAONuIwiaNzxyiQ+/+cW1QNzV uxtsJ3loVM5GhPYj24x0JqfD3ZcVKVJwQA7kC5Q0ucs0erpKu9jD3ISRwFd0sKBRnD8M EboGoLSTS9idcoJ/WLoIjg7wGDM1w/7u+l2r6LOC2rGiSytxlmAr1GBgW/pj2pKIwHpO yamj1uv7ey84yHM4tCMoW5FETdK/Ps1832NCnAKEiY5QXMdvaH1IZpEPPykynerceVZS lUQ1VNYfBIsw0pmv5yihs6KpgMScx+3czn6p3Q/Xd7whoWTf5oKwZ+Qz+/+dEQl2kNtA EAqA== X-Received: by 10.229.84.133 with SMTP id j5mr9814504qcl.14.1405698688941; Fri, 18 Jul 2014 08:51:28 -0700 (PDT) Received: from localhost.localdomain (cpe-098-121-186-226.ec.res.rr.com. [98.121.186.226]) by mx.google.com with ESMTPSA id a60sm6570123qge.30.2014.07.18.08.51.27 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 18 Jul 2014 08:51:28 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Fri, 18 Jul 2014 11:51:35 -0400 Message-Id: <1405698695-19730-5-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1405698695-19730-1-git-send-email-trini@ti.com> References: <1405698695-19730-1-git-send-email-trini@ti.com> Subject: [U-Boot] [PATCH 5/5] am335x_evm: Enable CONFIG_SPL_ENV_SUPPORT on EMMC_BOOT X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de When we're using EMMC_BOOT that means we have environment on eMMC so we can make use of CONFIG_SPL_ENV_SUPPORT within Falcon Mode. Signed-off-by: Tom Rini --- include/configs/am335x_evm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index b681e81..ea93eb1 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -389,6 +389,7 @@ #elif defined(CONFIG_EMMC_BOOT) #undef CONFIG_ENV_IS_NOWHERE #define CONFIG_ENV_IS_IN_MMC +#define CONFIG_SPL_ENV_SUPPORT #define CONFIG_SYS_MMC_ENV_DEV 1 #define CONFIG_SYS_MMC_ENV_PART 2 #define CONFIG_ENV_OFFSET 0x0