mirror of https://github.com/m-labs/artiq.git
66 lines
1.4 KiB
Plaintext
66 lines
1.4 KiB
Plaintext
|
INCLUDE generated/output_format.ld
|
||
|
ENTRY(_start)
|
||
|
|
||
|
INCLUDE generated/regions.ld
|
||
|
|
||
|
/* First 128K of main memory are reserved for runtime code/data
|
||
|
* then comes kernel memory. First 8K of kernel memory are for support code.
|
||
|
*/
|
||
|
MEMORY {
|
||
|
ksupport : ORIGIN = 0x40020000, LENGTH = 0x2000
|
||
|
}
|
||
|
|
||
|
/* Then comes the payload. */
|
||
|
PROVIDE(kmain = ORIGIN(ksupport) + LENGTH(ksupport));
|
||
|
|
||
|
/* On biprocessor systems, kernel stack is at the end of main RAM,
|
||
|
* before the runtime stack. Leave 1M for runtime stack.
|
||
|
*/
|
||
|
PROVIDE(_fstack = 0x40000000 + LENGTH(main_ram) - 1024*1024 - 4);
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
_ftext = .;
|
||
|
*(.text .stub .text.* .gnu.linkonce.t.*)
|
||
|
_etext = .;
|
||
|
} > ksupport
|
||
|
|
||
|
.rodata :
|
||
|
{
|
||
|
. = ALIGN(4);
|
||
|
_frodata = .;
|
||
|
*(.rodata .rodata.* .gnu.linkonce.r.*)
|
||
|
*(.rodata1)
|
||
|
_erodata = .;
|
||
|
} > ksupport
|
||
|
|
||
|
.data :
|
||
|
{
|
||
|
. = ALIGN(4);
|
||
|
_fdata = .;
|
||
|
*(.data .data.* .gnu.linkonce.d.*)
|
||
|
*(.data1)
|
||
|
_gp = ALIGN(16);
|
||
|
*(.sdata .sdata.* .gnu.linkonce.s.*)
|
||
|
_edata = .;
|
||
|
} > ksupport
|
||
|
|
||
|
.bss :
|
||
|
{
|
||
|
. = ALIGN(4);
|
||
|
_fbss = .;
|
||
|
*(.dynsbss)
|
||
|
*(.sbss .sbss.* .gnu.linkonce.sb.*)
|
||
|
*(.scommon)
|
||
|
*(.dynbss)
|
||
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||
|
*(COMMON)
|
||
|
. = ALIGN(4);
|
||
|
_ebss = .;
|
||
|
. = ALIGN(8);
|
||
|
_heapstart = .;
|
||
|
} > ksupport
|
||
|
}
|