From patchwork Mon Aug 29 07:56:06 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vagrant Cascadian X-Patchwork-Id: 663504 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 3sN43V1Kyvz9sBg for ; Mon, 29 Aug 2016 18:06:14 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BF40F4B99D; Mon, 29 Aug 2016 10:06:10 +0200 (CEST) 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 Yq1p81kC51h0; Mon, 29 Aug 2016 10:06:10 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C0E6C4BA0E; Mon, 29 Aug 2016 10:06:04 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 64ED74B6B3 for ; Mon, 29 Aug 2016 10:05:56 +0200 (CEST) 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 rBgnSHFeDkvw for ; Mon, 29 Aug 2016 10:05:56 +0200 (CEST) X-Greylist: delayed 561 seconds by postgrey-1.34 at theia; Mon, 29 Aug 2016 10:05:53 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 cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by theia.denx.de (Postfix) with ESMTP id 0B6424B660 for ; Mon, 29 Aug 2016 10:05:53 +0200 (CEST) Received: from localhost (216-161-92-224.ptld.qwest.net [216.161.92.224]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 7BB7E1AA11; Mon, 29 Aug 2016 00:56:37 -0700 (PDT) From: Vagrant Cascadian To: u-boot@lists.denx.de Date: Mon, 29 Aug 2016 00:56:06 -0700 Message-Id: <20160829075606.1326-3-vagrant@debian.org> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20160829075606.1326-1-vagrant@debian.org> References: <20160829075606.1326-1-vagrant@debian.org> Cc: Vagrant Cascadian Subject: [U-Boot] [PATCH 2/2] omap3_pandora: Switch to using "load" command to load the autoboot script. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" CONFIG_CMD_FS_GENERIC is enabled; use it to load the autoboot script, rather than first attempting with fatload and falling back to ext2load. Signed-off-by: Vagrant Cascadian Acked-by: Grazvydas Ignotas --- include/configs/omap3_pandora.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/configs/omap3_pandora.h b/include/configs/omap3_pandora.h index 6ff9375..0d733bd 100644 --- a/include/configs/omap3_pandora.h +++ b/include/configs/omap3_pandora.h @@ -93,8 +93,7 @@ "mtdparts=" MTDPARTS_DEFAULT "\0" \ #define CONFIG_BOOTCOMMAND \ - "if mmc rescan && fatload mmc 0:1 ${loadaddr} autoboot.scr || " \ - "ext2load mmc 0:1 ${loadaddr} autoboot.scr; then " \ + "if mmc rescan && load mmc 0:1 ${loadaddr} autoboot.scr; then " \ "source ${loadaddr}; " \ "fi; " \ "ubi part boot && ubifsmount ubi:boot && " \