/* * Jailhouse, a Linux-based partitioning hypervisor * * Copyright (c) Siemens AG, 2013 * * Authors: * Jan Kiszka * * This work is licensed under the terms of the GNU GPL, version 2. See * the COPYING file in the top-level directory. */ #include #include #include SECTIONS { . = JAILHOUSE_BASE; .header : { *(.header) } . = ALIGN(16); __text_start = .; .text : { *(.text) } . = ALIGN(16); .rodata : { *(.rodata) } . = ALIGN(16); .data : { *(.data) } ARCH_SECTIONS . = ALIGN(16); .bss : { *(.bss) } . = ALIGN(PAGE_SIZE); __page_pool = .; .eh_frame : { *(.eh_frame*) } }