From patchwork Mon Feb 16 12:14:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcel Ziswiler X-Patchwork-Id: 440123 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 B9A7C140213 for ; Tue, 17 Feb 2015 00:44:40 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 771F54B88F; Mon, 16 Feb 2015 14:44:19 +0100 (CET) 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 98DU5CCzVUwG; Mon, 16 Feb 2015 14:44:19 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DC141A742F; Mon, 16 Feb 2015 14:43:49 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7C8D24B666 for ; Mon, 16 Feb 2015 13:24:01 +0100 (CET) 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 ys2ojTerH8ZV for ; Mon, 16 Feb 2015 13:24:01 +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 mout.perfora.net (mout.perfora.net [74.208.4.196]) by theia.denx.de (Postfix) with ESMTPS id 154DC4B660 for ; Mon, 16 Feb 2015 13:23:58 +0100 (CET) Received: from localhost.localdomain (46-140-72-82.static.cablecom.ch [46.140.72.82]) by mrelay.perfora.net (node=mreueus001) with ESMTP (Nemesis) id 0LaE7U-1Xj1o42vaY-00m3Bo; Mon, 16 Feb 2015 13:18:28 +0100 From: Marcel Ziswiler To: u-boot@lists.denx.de Date: Mon, 16 Feb 2015 13:14:47 +0100 Message-Id: <267f44ce8d6df21a5d902b41370d4036b03bd6f9.1424087838.git.marcel@ziswiler.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: References: X-Provags-ID: V02:K0:VXeUQ8B/1zrPtuuUuZOYTGamr6SW0jwOKyRJmF8JHul oQo5wQhBk7iHWgrz8Fs/S5e7Wc1MGeeKw9Ootmbs7RPWO2eQIj tpUzncje0KsFGFsjojL945SmfwOf4ARF1xnpX+GlOJGvWH9kZw guaxibagmtCGwI8YOSbb1w6hGxrM+SqUCQfs30JrcP5arrATci +4B1DM3RjLHYRRNlm/iaEFeg2XBHFzRewYtOyqIsYwGIBjEGZg PzqRy0s6lwADcL9Z3xERTEqT0+OUtePn99K2ppjlgHdazVLy7i zcpA8U+22drYwZ95wY8U2Lc2PX6rFpwVDyLW0nQLt1TwSL65nT 48scQ8paWnMrbkiT80nEwBWZrwVhXH64f63tL9vdnqCaOts64w JPyVX7h8SDf9NWwK2NSP6o3Xx9/MKCYPo7cyAlS4Up5f6aZRmu c/EtuHblUKLRkcyW4/aME+cMSSA== X-UI-Out-Filterresults: notjunk:1; X-Mailman-Approved-At: Mon, 16 Feb 2015 14:43:19 +0100 Cc: "Kang , Marcel Ziswiler Subject: [U-Boot] [PATCH 09/12] pxa: colibri_pax270: fix CONFIG_BOOTCOMMAND 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" While 'mmc init' is no longer required the address to bootm the kernel from NOR flash was wrong. Signed-off-by: Marcel Ziswiler --- include/configs/colibri_pxa270.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/colibri_pxa270.h b/include/configs/colibri_pxa270.h index 1b1816a..07426d1 100644 --- a/include/configs/colibri_pxa270.h +++ b/include/configs/colibri_pxa270.h @@ -26,13 +26,13 @@ #define CONFIG_SYS_MALLOC_LEN (128 * 1024) #define CONFIG_ARCH_CPU_INIT #define CONFIG_BOOTCOMMAND \ - "if mmc init && fatload mmc 0 0xa0000000 uImage; then " \ + "if fatload mmc 0 0xa0000000 uImage; then " \ "bootm 0xa0000000; " \ "fi; " \ "if usb reset && fatload usb 0 0xa0000000 uImage; then " \ "bootm 0xa0000000; " \ "fi; " \ - "bootm 0x80000;" + "bootm 0xc0000;" #define CONFIG_BOOTARGS "console=tty0 console=ttyS0,115200" #define CONFIG_TIMESTAMP #define CONFIG_BOOTDELAY 2 /* Autoboot delay */