Files
codezero/loader/linker.lds
2009-10-18 16:16:32 +03:00

28 lines
453 B
Plaintext

/*
* Loader linker script that contains kernel and container images
*
* Copyright (C) 2008-2009 B Labs Ltd.
*/
ENTRY(_start)
SECTIONS
{
. = 0x3000000;
.text : { *(.text.head) *(.text) }
.rodata : { *(.rodata) }
.rodata1 : { *(.rodata1) }
.data :
{
_start_kernel = .;
*(.kernel)
_end_kernel = .;
_start_containers = .;
*(.containers)
_end_containers = .;
*(.data)
}
.got : { *(.got) *(.got.plt) }
.bss : { *(.bss) }
}