aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmx.de>2011-06-07 05:25:44 +0000
committerEric Bénard <eric@eukrea.com>2011-06-16 09:59:05 +0200
commit0de87683a678bbd3aa4d798acc77fbeae5469afb (patch)
tree4899b8db494a1b9937c39f04453dffcb4eb4a58d
parente16a751548cb72020bdfc33f8c2b03496dbd85e9 (diff)
downloadopenembedded-0de87683a678bbd3aa4d798acc77fbeae5469afb.tar.gz
mx28 SOC: set correct addresses for u-boot
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 <schnitzeltony@gmx.de> Signed-off-by: Eric Bénard <eric@eukrea.com>
-rw-r--r--conf/machine/include/imx28.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/machine/include/imx28.inc b/conf/machine/include/imx28.inc
index 38248a8f9a..b50f000a3b 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"