From patchwork Tue Apr 2 14:17:39 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adnan Ali X-Patchwork-Id: 233010 X-Patchwork-Delegate: trini@ti.com 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 5ACC12C00C3 for ; Wed, 3 Apr 2013 01:17:58 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A0F214A2B0; Tue, 2 Apr 2013 16:17:56 +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 49zrDlrkCsjn; Tue, 2 Apr 2013 16:17:56 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0632C4A29D; Tue, 2 Apr 2013 16:17:54 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6F3DD4A29D for ; Tue, 2 Apr 2013 16:17:48 +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 Ivm7YbhOZyrp for ; Tue, 2 Apr 2013 16:17:47 +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 D2A774A29C for ; Tue, 2 Apr 2013 16:17:44 +0200 (CEST) Received: by ducie-dc1.codethink.co.uk (Postfix, from userid 1002) id B591646A56F; Tue, 2 Apr 2013 15:17:43 +0100 (BST) Received: from tunnel.dyn.ducie.codethink.co.uk (tunnel.dyn.ducie.codethink.co.uk [192.168.24.228]) by ducie-dc1.codethink.co.uk (Postfix) with ESMTPA id 054CB462846; Tue, 2 Apr 2013 15:17:39 +0100 (BST) From: Adnan Ali To: u-boot@lists.denx.de Date: Tue, 2 Apr 2013 15:17:39 +0100 Message-Id: <1364912259-15488-2-git-send-email-adnan.ali@codethink.co.uk> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1364912259-15488-1-git-send-email-adnan.ali@codethink.co.uk> References: <1364912259-15488-1-git-send-email-adnan.ali@codethink.co.uk> Cc: trini@ti.com, Adnan Ali Subject: [U-Boot] [PATCH v11 2/2] 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 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..62e9a76 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" \ + "btrload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ "bootscript=echo Running bootscript from mmc ...; " \ "source\0" \ "loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \