mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
e9cfaa9f4c
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
24 lines
226 B
Plaintext
24 lines
226 B
Plaintext
OUTPUT_ARCH(mips)
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text..start)
|
|
}
|
|
|
|
/* Data in ROM */
|
|
|
|
.data ALIGN(0x10) :
|
|
{
|
|
*(.data)
|
|
}
|
|
_image_start = ADDR(.data);
|
|
_image_size = SIZEOF(.data);
|
|
|
|
.other :
|
|
{
|
|
*(.*)
|
|
}
|
|
}
|