diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-20 01:38:11 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:49 -0500 |
commit | b4db3aec8351c78df77bbd95f1951a4dd0246853 (patch) | |
tree | 759d750ae2308cc7bbcf9d4ecf0122ca2e46df72 /arch/sh/Makefile | |
parent | 6694e8250e37058d5a8db23245a349db4e112fe4 (diff) |
sh: Fix up the _stext references for SH-5.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/Makefile')
-rw-r--r-- | arch/sh/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/arch/sh/Makefile b/arch/sh/Makefile index 4da3bc696b3d..15161f1851a5 100644 --- a/arch/sh/Makefile +++ b/arch/sh/Makefile | |||
@@ -74,15 +74,21 @@ OBJCOPYFLAGS := -O binary -R .note -R .note.gnu.build-id -R .comment -R .stab -R | |||
74 | # never be used by anyone. Use a board-specific defconfig that has a | 74 | # never be used by anyone. Use a board-specific defconfig that has a |
75 | # reasonable chance of being current instead. | 75 | # reasonable chance of being current instead. |
76 | # | 76 | # |
77 | KBUILD_DEFCONFIG := r7780rp_defconfig | 77 | KBUILD_DEFCONFIG := r7780rp_defconfig |
78 | 78 | ||
79 | KBUILD_IMAGE := arch/sh/boot/zImage | 79 | KBUILD_IMAGE := arch/sh/boot/zImage |
80 | 80 | ||
81 | # | 81 | # |
82 | # Choosing incompatible machines durings configuration will result in | 82 | # Choosing incompatible machines durings configuration will result in |
83 | # error messages during linking. | 83 | # error messages during linking. |
84 | # | 84 | # |
85 | LDFLAGS_vmlinux += -e _stext | 85 | ifdef CONFIG_SUPERH32 |
86 | LDFLAGS_vmlinux += -e _stext | ||
87 | else | ||
88 | LDFLAGS_vmlinux += --defsym phys_stext=_stext-$(CONFIG_CACHED_MEMORY_OFFSET) \ | ||
89 | --defsym phys_stext_shmedia=phys_stext+1 \ | ||
90 | -e phys_stext_shmedia | ||
91 | endif | ||
86 | 92 | ||
87 | ifdef CONFIG_CPU_LITTLE_ENDIAN | 93 | ifdef CONFIG_CPU_LITTLE_ENDIAN |
88 | LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64' | 94 | LDFLAGS_vmlinux += --defsym 'jiffies=jiffies_64' |