summaryrefslogtreecommitdiffstats
path: root/arch/alpha/vmlinux.lds
diff options
context:
space:
mode:
Diffstat (limited to 'arch/alpha/vmlinux.lds')
-rw-r--r--arch/alpha/vmlinux.lds6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/alpha/vmlinux.lds b/arch/alpha/vmlinux.lds
index 4eaac4e42..f64a926b6 100644
--- a/arch/alpha/vmlinux.lds
+++ b/arch/alpha/vmlinux.lds
@@ -2,7 +2,7 @@ OUTPUT_FORMAT("elf64-alpha")
ENTRY(__start)
SECTIONS
{
- . = 0xfffffc0000310000;
+ . = 0xfffffc0000810000;
_text = .;
.text : { *(.text) }
_etext = .;
@@ -50,9 +50,11 @@ SECTIONS
.got : { *(.got) }
.sdata : { *(.sdata) }
_edata = .;
- _bss = .;
+
+ __bss_start = .;
.sbss : { *(.sbss) *(.scommon) }
.bss : { *(.bss) *(COMMON) }
+ __bss_stop = .;
_end = .;
.mdebug 0 : { *(.mdebug) }