blob: 3eb4d869f9e5912130afc58e0b5900472a453a85 [file] [log] [blame]
/* SPDX-License-Identifier: Apache-2.0 */
ENTRY(_start)
PHDRS {
stub32 PT_LOAD;
}
SECTIONS {
. = 0x100000;
_start = .;
.stub32 : {
*(.start32)
*(.text*)
*(.rodata*)
*(.data*)
*(.bss*)
*(COMMON)
} :stub32
. = ALIGN(16);
_start64 = .;
}