summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/tqma53
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-07-08 18:30:42 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-07-23 23:57:44 +0200
commit244198ea8bdf592799ebfd430fe9ab165284e480 (patch)
treee25ec0f971ca0bf0c474e1144d3eb0155bca5c4a /arch/arm/boards/tqma53
parent218dffea800754dcbda323da1c99c7d90c9b9062 (diff)
downloadbarebox-244198ea8bdf592799ebfd430fe9ab165284e480.tar.gz
barebox-244198ea8bdf592799ebfd430fe9ab165284e480.tar.xz
ARM boards: Use _text rather than TEXT_BASE
With compressed image support TEXT_BASE will become the base address of the uncompressed image. What the boards want instead is the base address of the decompressor code or, if not compressed, the base address of the uncompressed image. Use _text which is the correct one for both cases. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/tqma53')
-rw-r--r--arch/arm/boards/tqma53/flash_header.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boards/tqma53/flash_header.c b/arch/arm/boards/tqma53/flash_header.c
index d912b38bd8..a6bcdade3b 100644
--- a/arch/arm/boards/tqma53/flash_header.c
+++ b/arch/arm/boards/tqma53/flash_header.c
@@ -85,7 +85,7 @@ struct imx_dcd_v2_entry __dcd_entry_section dcd_entry[] = {
{ .addr = cpu_to_be32(0x63fd901C), .val = cpu_to_be32(0x00000000), },
};
-#define APP_DEST CONFIG_TEXT_BASE
+#define APP_DEST 0x70000000
struct imx_flash_header_v2 __flash_header_section flash_header = {
.header.tag = IVT_HEADER_TAG,