libroot_debug: Merge guarded heap into libroot_debug.
[haiku.git] / src / system / ldscripts / mipsel / boot_loader_routerboard_mipsel.ld
blob6c3df3fe0daddd86c3c5343fcbdebb98789cdb06
1 OUTPUT_FORMAT("elf32-littlemips")
2 OUTPUT_ARCH(mips)
4 ENTRY(_start)
5 SECTIONS
7         . = 0x10000;
9         /* text/read-only data */
10         .text : { *(.text .gnu.linkonce.t.*) }
12         __ctor_list = .;
13         .ctors : { *(.ctors) }
14         __ctor_end = .;
16         .rodata : { *(.rodata .rodata.*) }
18         /* writable data  */
19         . = ALIGN(0x1000);
20         __data_start = .;
21         .data : { *(.data .gnu.linkonce.d.*) }
22         _gp = .;
23                 /* needed for GPREL16 relocation to small-data section */
25         /* uninitialized data (in same segment as writable data) */
26         __bss_start = .;
27         .bss : { *(.bss) }
29         . = ALIGN(0x1000);
30         _end = .;
32         /* Strip unnecessary stuff */
33         /DISCARD/ : { *(.comment .note .eh_frame .dtors .stab .stabstr .debug*) }