[patch 7/8] xtensa: let platform override KERNELOFFSET

From: Johannes Weiner
Date: Tue Mar 10 2009 - 09:05:35 EST


The linker script should not assume a fix offset in memory for the
kernel, this is platform-specific, so let the platform set it.

Signed-off-by: Johannes Weiner <jw@xxxxxxxxx>
---
arch/xtensa/kernel/vmlinux.lds.S | 3 +++
1 file changed, 3 insertions(+)

--- a/arch/xtensa/kernel/vmlinux.lds.S
+++ b/arch/xtensa/kernel/vmlinux.lds.S
@@ -17,6 +17,7 @@
#include <asm-generic/vmlinux.lds.h>

#include <variant/core.h>
+#include <platform/hardware.h>
OUTPUT_ARCH(xtensa)
ENTRY(_start)

@@ -26,7 +27,9 @@ jiffies = jiffies_64 + 4;
jiffies = jiffies_64;
#endif

+#ifndef KERNELOFFSET
#define KERNELOFFSET 0xd0001000
+#endif

/* Note: In the following macros, it would be nice to specify only the
vector name and section kind and construct "sym" and "section" using

--

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/