/* * Jailhouse, a Linux-based partitioning hypervisor * * Copyright (c) ARM Limited, 2014 * * Authors: * Jean-Philippe Brucker * * This work is licensed under the terms of the GNU GPL, version 2. See * the COPYING file in the top-level directory. */ SECTIONS { . = 0; .boot : { *(.boot) } bss_start = .; .bss : { *(.bss) *(COMMON) } . = ALIGN(4); .text : { *(.text) } .rodata : { *(.rodata) } .data : { *(.data) } . = ALIGN(4096); . += 0x1000; stack_top = .; } ENTRY(__reset_entry)