From patchwork Mon Jun 6 21:25:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2,1/2] mx28 SOC: set correct addresses for u-boot Date: Mon, 06 Jun 2011 21:25:44 -0000 From: =?utf-8?q?Andreas_M=C3=BCller_=3Cschnitzeltony=40gmx=2Ede=3E?= X-Patchwork-Id: 5469 Message-Id: <1307395545-3738-2-git-send-email-schnitzeltony@gmx.de> To: openembedded-devel@lists.openembedded.org The initial patch was build tested only because a hardware for tests was not available at the time initial patches were sent. The modifications lead to the following boot log (thanks to Christian Borutta for testing): U-Boot 2009.08 (May 09 2011 - 16:42:53) Freescale i.MX28 family CPU: 454 MHz BUS: 151 MHz EMI: 205 MHz GPMI: 24 MHz DRAM: 128 MB MMC: IMX_SSP_MMC: 0, IMX_SSP_MMC: 1 In: serial Out: serial Err: serial Net: got MAC address from IIM: 00:04:9f:01:4d:57 FEC0 Hit any key to stop autoboot: 0 reading uImage 2519812 bytes read Image Name: Angstrom/2.6.35/mx28evk Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 2519748 Bytes = 2.4 MB Load Address: 40008000 Entry Point: 40008000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ... Uncompressing Linux... done, booting the kernel. Linux version 2.6.35.3 (borutta@debian) (gcc version 4.5.3 20110311 (prerelease) (GCC) ) #1 PREEMPT Thu May 12 09:54:03 CEST 2011 CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177 CPU: VIVT data cache, VIVT instruction cache Machine: Freescale MX28EVK board ... Signed-off-by: Andreas Mueller --- conf/machine/include/imx28.inc | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/include/imx28.inc b/conf/machine/include/imx28.inc index 38248a8..b50f000 100644 --- a/conf/machine/include/imx28.inc +++ b/conf/machine/include/imx28.inc @@ -10,8 +10,8 @@ MACHINE_KERNEL_PR = "r0" KERNEL_IMAGETYPE = "uImage" -UBOOT_ENTRYPOINT = "0x8000" -UBOOT_LOADADDRESS = "0x8000" +UBOOT_ENTRYPOINT = "0x40008000" +UBOOT_LOADADDRESS = "0x40008000" EXTRA_IMAGEDEPENDS += "u-boot"