]> rtime.felk.cvut.cz Git - jailhouse.git/blob - inmates/lib/arm/inmate.lds
d015860ab03298a8d1c541d8cd05210c0bf7471e
[jailhouse.git] / inmates / lib / arm / inmate.lds
1 /*
2  * Jailhouse, a Linux-based partitioning hypervisor
3  *
4  * Copyright (c) ARM Limited, 2014
5  *
6  * Authors:
7  *  Jean-Philippe Brucker <jean-philippe.brucker@arm.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2.  See
10  * the COPYING file in the top-level directory.
11  */
12
13 SECTIONS {
14         . = 0;
15         .boot           : { *(.boot) }
16
17         bss_start = .;
18         .bss            : {
19                 *(.bss)
20         }
21
22         . = ALIGN(4);
23         .text           : {
24                 *(.text)
25         }
26
27         .rodata         : {
28                 *(.rodata)
29         }
30
31         .data           : {
32                 *(.data)
33         }
34
35         . = ALIGN(4096);
36         . += 0x1000;
37         stack_top = .;
38 }
39
40 ENTRY(__reset_entry)