diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-04-01 14:01:14 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-08-26 16:29:35 +0200 |
commit | 43a79045d1164a0bf32a9185ad8189334c0b782d (patch) | |
tree | 0cad2bc4c125a795766a627b4b6a64c944544bfd /i386/ldscript | |
parent | 7915e8ca1e3fa2f76efe2f5f9d323718a430d5f6 (diff) |
XXX pmm from x15, userspace crashes soon
Diffstat (limited to 'i386/ldscript')
-rw-r--r-- | i386/ldscript | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/i386/ldscript b/i386/ldscript index ddbbf91..dcf47a9 100644 --- a/i386/ldscript +++ b/i386/ldscript @@ -12,6 +12,10 @@ SECTIONS * `gnumach_LINKFLAGS' in `i386/Makefrag.am'. */ . = _START; + + /* biosmem.c uses this. */ + _boot = .; + .text : AT (_START_MAP) { @@ -34,7 +38,10 @@ SECTIONS PROVIDE (_etext = .); PROVIDE (etext = .); - /* Read-only sections, merged into text segment: */ + /* biosmem.c uses this. */ + _end = .; + +/* Read-only sections, merged into text segment: */ PROVIDE (__executable_start = .); .interp : { *(.interp) } .note.gnu.build-id : { *(.note.gnu.build-id) } |