The .dynamic section should be both part of the data and dynamic segments!

This makes the kernel loadable by the bootloader, which does load it, and all the modules \o/


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26558 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol
2008-07-22 00:46:07 +00:00
parent 86cea5c5f1
commit 9f8e918d80
+2 -2
View File
@@ -60,11 +60,11 @@ SECTIONS
.dtors : { *(.dtors) }
__dtor_end = .;
.got : { *(.got.plt) *(.got) }
.dynamic : { *(.dynamic) }
.dynamic : { *(.dynamic) } :dynamic :data
/* unintialized data (in same segment as writable data) */
__bss_start = .;
.bss : { *(.bss) }
.bss : { *(.bss) } :data
. = ALIGN(0x1000);
_end = . ;