diff options
author | Johannes Weiner <jw@emlix.com> | 2009-03-04 16:21:32 +0100 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2009-04-02 23:43:49 -0700 |
commit | 6770fa020fe3b63915ab082b4e5fd99d2d368c82 (patch) | |
tree | a74b746d45fe121d632353d66e0cc0e303a99043 | |
parent | 000af2c5a8913ebd763313d0c9ebc66c2c4765b1 (diff) | |
download | op-kernel-dev-6770fa020fe3b63915ab082b4e5fd99d2d368c82.zip op-kernel-dev-6770fa020fe3b63915ab082b4e5fd99d2d368c82.tar.gz |
xtensa: let platform override KERNELOFFSET
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@emlix.com>
Signed-off-by: Chris Zankel <chris@zankel.net>
-rw-r--r-- | arch/xtensa/kernel/vmlinux.lds.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/xtensa/kernel/vmlinux.lds.S b/arch/xtensa/kernel/vmlinux.lds.S index d506774..c1be9a4 100644 --- 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 |