2007-03-11 12:42:58 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2004 Atmark Techno, Inc.
|
|
|
|
*
|
|
|
|
* Yasushi SHOJI <yashi@atmark-techno.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-03-11 12:42:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
OUTPUT_ARCH(microblaze)
|
|
|
|
ENTRY(_start)
|
|
|
|
|
|
|
|
SECTIONS
|
|
|
|
{
|
|
|
|
.text ALIGN(0x4):
|
|
|
|
{
|
|
|
|
__text_start = .;
|
2010-04-13 03:28:16 +00:00
|
|
|
arch/microblaze/cpu/start.o (.text)
|
2007-03-11 12:42:58 +00:00
|
|
|
*(.text)
|
|
|
|
__text_end = .;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rodata ALIGN(0x4):
|
|
|
|
{
|
|
|
|
__rodata_start = .;
|
2009-02-18 23:22:05 +00:00
|
|
|
*(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
|
2007-03-11 12:42:58 +00:00
|
|
|
__rodata_end = .;
|
|
|
|
}
|
|
|
|
|
|
|
|
.data ALIGN(0x4):
|
|
|
|
{
|
|
|
|
__data_start = .;
|
|
|
|
*(.data)
|
|
|
|
__data_end = .;
|
|
|
|
}
|
|
|
|
|
2014-05-08 14:08:44 +00:00
|
|
|
.got ALIGN(4):
|
|
|
|
{
|
|
|
|
_got_start = .;
|
|
|
|
*(.got*)
|
|
|
|
. = ALIGN(4);
|
|
|
|
_got_end = .;
|
|
|
|
}
|
|
|
|
|
2012-10-12 10:27:03 +00:00
|
|
|
. = ALIGN(4);
|
|
|
|
.u_boot_list : {
|
2013-02-25 00:59:00 +00:00
|
|
|
KEEP(*(SORT(.u_boot_list*)));
|
2012-10-12 10:27:03 +00:00
|
|
|
}
|
2014-05-08 14:08:44 +00:00
|
|
|
__init_end = . ;
|
2012-10-12 10:27:03 +00:00
|
|
|
|
2007-03-11 12:42:58 +00:00
|
|
|
.bss ALIGN(0x4):
|
|
|
|
{
|
|
|
|
__bss_start = .;
|
2009-08-14 15:02:35 +00:00
|
|
|
*(.sbss)
|
|
|
|
*(.scommon)
|
2007-03-11 12:42:58 +00:00
|
|
|
*(.bss)
|
2009-08-14 15:02:35 +00:00
|
|
|
*(COMMON)
|
2008-10-16 17:24:03 +00:00
|
|
|
. = ALIGN(4);
|
2007-03-11 12:42:58 +00:00
|
|
|
__bss_end = .;
|
|
|
|
}
|
2007-03-25 23:39:07 +00:00
|
|
|
__end = . ;
|
2007-03-11 12:42:58 +00:00
|
|
|
}
|