diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2013-06-25 10:29:27 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-06-25 11:48:18 (GMT) |
commit | 0be0aea2ffa2be1590c86dc226291939bd5535b0 (patch) | |
tree | da5d9e3b76b316e8e2ef6a05d5e226c6e8898929 /arch/mips | |
parent | dfb033f09e2a98a89b7a09f7e913f0b791dd01e1 (diff) | |
download | linux-0be0aea2ffa2be1590c86dc226291939bd5535b0.tar.xz |
MIPS: Sibyte: Platform: Add load address for CONFIG_SIBYTE_LITTLESUR
Fixes the following build problem:
mips-linux-gnu-ld:arch/mips/kernel/vmlinux.lds:253: syntax error
because VMLINUX_LOAD_ADDRESS was an empty string for that platform
so the vmlinux.lds.S created an invalid section entry on line 50.
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Acked-by: Steven J. Hill <Steven.Hill@imgtec.com>
Cc: sibyte-users@bitmover.com
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5548/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/sibyte/Platform | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/sibyte/Platform b/arch/mips/sibyte/Platform index d03a075..1bf90dc 100644 --- a/arch/mips/sibyte/Platform +++ b/arch/mips/sibyte/Platform @@ -41,3 +41,4 @@ load-$(CONFIG_SIBYTE_RHONE) := 0xffffffff80100000 load-$(CONFIG_SIBYTE_SENTOSA) := 0xffffffff80100000 load-$(CONFIG_SIBYTE_SWARM) := 0xffffffff80100000 load-$(CONFIG_SIBYTE_BIGSUR) := 0xffffffff80100000 +load-$(CONFIG_SIBYTE_LITTLESUR) := 0xffffffff80100000 |