From patchwork Tue Mar 22 07:23:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Hui X-Patchwork-Id: 719 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:45:09 -0000 Delivered-To: patches@linaro.org Received: by 10.204.113.5 with SMTP id y5cs91988bkp; Tue, 22 Mar 2011 00:24:13 -0700 (PDT) Received: by 10.43.57.137 with SMTP id wg9mr8272679icb.365.1300778651931; Tue, 22 Mar 2011 00:24:11 -0700 (PDT) Received: from mail-iy0-f178.google.com (mail-iy0-f178.google.com [209.85.210.178]) by mx.google.com with ESMTPS id 16si11302607ibb.36.2011.03.22.00.24.10 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Mar 2011 00:24:10 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.210.178 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) client-ip=209.85.210.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.210.178 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) smtp.mail=jason.hui@linaro.org Received: by iyi12 with SMTP id 12so8942692iyi.37 for ; Tue, 22 Mar 2011 00:24:10 -0700 (PDT) Received: by 10.42.1.15 with SMTP id 15mr8625625ice.54.1300778650316; Tue, 22 Mar 2011 00:24:10 -0700 (PDT) Received: from localhost.localdomain ([116.231.118.83]) by mx.google.com with ESMTPS id u9sm4224940ibe.53.2011.03.22.00.24.04 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Mar 2011 00:24:09 -0700 (PDT) From: Jason Liu To: u-boot@lists.denx.de Cc: sbabic@denx.de, patches@linaro.org Subject: [U-Boot][PATCH Vx 1/1] mx53loco: set mmc env to MMC slot1 Date: Tue, 22 Mar 2011 15:23:44 +0800 Message-Id: <1300778624-11956-1-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.0.4 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 */