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 Hui X-Patchwork-Id: 718 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 y5cs92606bkp; Tue, 22 Mar 2011 00:45:36 -0700 (PDT) Received: by 10.43.65.83 with SMTP id xl19mr4946190icb.55.1300779935544; Tue, 22 Mar 2011 00:45:35 -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 e15si19285893icb.12.2011.03.22.00.45.34 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 22 Mar 2011 00:45:35 -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 12so8959676iyi.37 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 Cc: sbabic@denx.de, patches@linaro.org Subject: [U-Boot][PATCH] mx53loco: set mmc env to MMC slot1 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 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 */