2015-12-17 18:11:16 +01:00
|
|
|
/** @file
|
|
|
|
|
|
|
|
Copyright (c) 2015, Linaro Ltd. All rights reserved.<BR>
|
|
|
|
|
2019-04-04 01:03:23 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2015-12-17 18:11:16 +01:00
|
|
|
|
|
|
|
**/
|
2015-02-28 21:26:20 +01:00
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
2016-08-02 12:08:03 +02:00
|
|
|
PROVIDE(__reloc_base = .);
|
2015-02-28 21:26:20 +01:00
|
|
|
|
2016-08-02 12:08:03 +02:00
|
|
|
. = PECOFF_HEADER_SIZE;
|
|
|
|
.text : ALIGN(CONSTANT(COMMONPAGESIZE)) {
|
2015-02-28 21:26:20 +01:00
|
|
|
*(.text .text*)
|
|
|
|
*(.got .got*)
|
|
|
|
*(.rodata .rodata*)
|
|
|
|
*(.data .data*)
|
2015-08-11 14:32:45 +02:00
|
|
|
*(.bss .bss*)
|
2015-02-28 21:26:20 +01:00
|
|
|
|
|
|
|
. = ALIGN(0x20);
|
|
|
|
PROVIDE(__reloc_start = .);
|
2015-12-17 18:11:16 +01:00
|
|
|
*(.rel .rel.*)
|
|
|
|
*(.rela .rela.*)
|
2015-02-28 21:26:20 +01:00
|
|
|
PROVIDE(__reloc_end = .);
|
|
|
|
}
|
|
|
|
|
2016-07-23 10:14:11 +02:00
|
|
|
.note (INFO) : { *(.note.gnu.build-id) }
|
|
|
|
|
2015-02-28 21:26:20 +01:00
|
|
|
/DISCARD/ : {
|
|
|
|
*(.note.GNU-stack)
|
2016-07-23 10:14:11 +02:00
|
|
|
*(.gnu.hash)
|
2015-02-28 21:26:20 +01:00
|
|
|
*(.gnu_debuglink)
|
|
|
|
*(.interp)
|
|
|
|
*(.dynamic)
|
|
|
|
*(.dynsym)
|
|
|
|
*(.dynstr)
|
|
|
|
*(.hash)
|
|
|
|
*(.comment)
|
|
|
|
}
|
|
|
|
}
|