From patchwork Sat May 4 09:41:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adnan Ali X-Patchwork-Id: 241445 X-Patchwork-Delegate: wd@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 839DD2C00E6 for ; Sat, 4 May 2013 21:39:54 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 10FD44A3E4; Sat, 4 May 2013 13:39:41 +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 awtGQEUKhnmV; Sat, 4 May 2013 13:39:40 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 56E2E4A3C1; Sat, 4 May 2013 13:39:17 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7A5AF4A3B2 for ; Sat, 4 May 2013 11:48:14 +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 fdBqpJa1ffCK for ; Sat, 4 May 2013 11:48:08 +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 ducie-dc1.codethink.co.uk (ducie-dc1.codethink.co.uk [37.128.190.40]) by theia.denx.de (Postfix) with ESMTPS id 3FD5C4A2AD for ; Sat, 4 May 2013 11:48:05 +0200 (CEST) Received: by ducie-dc1.codethink.co.uk (Postfix, from userid 1002) id 06473464EE3; Sat, 4 May 2013 10:41:59 +0100 (BST) Received: from Muiz.gateway.2wire.net (host81-134-24-83.in-addr.btopenworld.com [81.134.24.83]) by ducie-dc1.codethink.co.uk (Postfix) with ESMTPA id 98FF6460C52; Sat, 4 May 2013 10:41:58 +0100 (BST) From: Adnan Ali To: u-boot@lists.denx.de Date: Sat, 4 May 2013 10:41:50 +0100 Message-Id: <1367660512-10489-2-git-send-email-adnan9901@yahoo.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1367660512-10489-1-git-send-email-adnan9901@yahoo.com> References: <1367660512-10489-1-git-send-email-adnan9901@yahoo.com> X-Mailman-Approved-At: Sat, 04 May 2013 13:39:13 +0200 Cc: trini@ti.com, Adnan Ali Subject: [U-Boot] [PATCH 1/2 v12] Enable Btrfs support in mx53loco config 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 From: Adnan Ali Enable btrfs support in mx53loco config Signed-off-by: Adnan Ali --- include/configs/mx53loco.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index a4b610f..bf361a3 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -56,6 +56,8 @@ #define CONFIG_GENERIC_MMC #define CONFIG_CMD_FAT #define CONFIG_CMD_EXT2 +#define CONFIG_CMD_BTR +#define CONFIG_CMD_FS_GENERIC #define CONFIG_DOS_PARTITION /* Eth Configs */ @@ -128,7 +130,7 @@ "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \ "mmcargs=setenv bootargs console=ttymxc0,${baudrate} root=${mmcroot}\0" \ "loadbootscript=" \ - "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ + "load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ "bootscript=echo Running bootscript from mmc ...; " \ "source\0" \ "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \