summaryrefslogtreecommitdiff
path: root/i386/ldscript
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-04-01 14:01:14 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-08-28 15:48:05 +0200
commit51d95f2e41553890121a611852594ca4a74eb53e (patch)
treeec9ba152584e53c935c4841e80c1c7998fe86b4c /i386/ldscript
parent78487aa5a834d0a5e8e0c6c5490e3bce26e8756d (diff)
XXX pmm from x15, userspace crashes soon
Diffstat (limited to 'i386/ldscript')
-rw-r--r--i386/ldscript9
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) }