From patchwork Tue Mar 22 07:45:08 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Liu X-Patchwork-Id: 87871 X-Patchwork-Delegate: sbabic@denx.de 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 68DCEB6F11 for ; Tue, 22 Mar 2011 18:45:49 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2D9992809A; Tue, 22 Mar 2011 08:45:43 +0100 (CET) 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 l730fxvD1i5c; Tue, 22 Mar 2011 08:45:42 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8231228090; Tue, 22 Mar 2011 08:45:40 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 69E5E28090 for ; Tue, 22 Mar 2011 08:45:38 +0100 (CET) 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 oZB0FyL6+tkM for ; Tue, 22 Mar 2011 08:45:38 +0100 (CET) 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-iy0-f172.google.com (mail-iy0-f172.google.com [209.85.210.172]) by theia.denx.de (Postfix) with ESMTPS id 054942808F for ; Tue, 22 Mar 2011 08:45:36 +0100 (CET) Received: by iyi12 with SMTP id 12so6842590iyi.3 for ; Tue, 22 Mar 2011 00:45:34 -0700 (PDT) Received: by 10.42.131.133 with SMTP id z5mr8276299ics.40.1300779934884; Tue, 22 Mar 2011 00:45:34 -0700 (PDT) Received: from localhost.localdomain ([116.231.118.83]) by mx.google.com with ESMTPS id 41sm4231655ibi.27.2011.03.22.00.45.30 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Mar 2011 00:45:34 -0700 (PDT) From: Jason Liu To: u-boot@lists.denx.de Date: Tue, 22 Mar 2011 15:45:08 +0800 Message-Id: <1300779908-12101-1-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.0.4 Cc: patches@linaro.org Subject: [U-Boot] [PATCH] mx53loco: set mmc env to MMC slot1 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 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 mx53loco board has two MMC slots, one is for MicroSD, the other one is for normal SD, but the final board design is to only boot from MicroSD. So, make the mmc env default to slot1(MicroSD slot) Signed-off-by: Jason Liu --- include/configs/mx53loco.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 8c30012..585e8c8 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -191,6 +191,6 @@ #define CONFIG_ENV_OFFSET (6 * 64 * 1024) #define CONFIG_ENV_SIZE (8 * 1024) #define CONFIG_ENV_IS_IN_MMC -#define CONFIG_SYS_MMC_ENV_DEV 1 +#define CONFIG_SYS_MMC_ENV_DEV 0 #endif /* __CONFIG_H */