OpenCores
URL https://opencores.org/ocsvn/c0or1k/c0or1k/trunk

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [loader/] [linker.lds.in] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 drasko
/*
2
 * Loader linker script that contains kernel and container images
3
 *
4
 * Copyright (C) 2008-2009 B Labs Ltd.
5
 */
6
 
7
load_address = %s;
8
ENTRY(_start)
9
 
10
SECTIONS
11
{
12
        . = load_address;
13
        .text : { *(.text.head) *(.text) }
14
        .rodata : { *(.rodata) }
15
        .rodata1 : { *(.rodata1) }
16
        .data :
17
        {
18
                _start_kernel = .;
19
                *(.kernel)
20
                _end_kernel = .;
21
 
22
                _start_containers = .;
23
                *(.containers)
24
                _end_containers = .;
25
                *(.data)
26
        }
27
        .got : { *(.got) *(.got.plt) }
28
        .bss : { *(.bss) }
29
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.