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 Liu X-Patchwork-Id: 87869 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 2EC97B6F12 for ; Tue, 22 Mar 2011 18:24:24 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7A6FC28095; Tue, 22 Mar 2011 08:24:21 +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 C0fKjQ617Qf9; Tue, 22 Mar 2011 08:24:21 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9C74E28098; Tue, 22 Mar 2011 08:24:18 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2F0CB28098 for ; Tue, 22 Mar 2011 08:24:16 +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 CL696cjWfjvv for ; Tue, 22 Mar 2011 08:24:15 +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-iw0-f172.google.com (mail-iw0-f172.google.com [209.85.214.172]) by theia.denx.de (Postfix) with ESMTPS id 0CA4428095 for ; Tue, 22 Mar 2011 08:24:13 +0100 (CET) Received: by iwl42 with SMTP id 42so6905711iwl.3 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 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 Cc: patches@linaro.org Subject: [U-Boot] [PATCH Vx 1/1] 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 */