URL
https://opencores.org/ocsvn/c0or1k/c0or1k/trunk
Subversion Repositories c0or1k
[/] [c0or1k/] [trunk/] [loader/] [linker.lds.in] - Rev 7
Go to most recent revision | Compare with Previous | Blame | View Log
/*
* Loader linker script that contains kernel and container images
*
* Copyright (C) 2008-2009 B Labs Ltd.
*/
load_address = %s;
ENTRY(_start)
SECTIONS
{
. = load_address;
.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) }
}
Go to most recent revision | Compare with Previous | Blame | View Log