1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Copyright (C) 2009 Thomas Chou <thomas@wytron.com.tw>
6 #include <asm-generic/vmlinux.lds.h>
8 OUTPUT_FORMAT("elf32-littlenios2", "elf32-littlenios2", "elf32-littlenios2")
11 ENTRY(_start) /* Defined in head.S */
15 . = (CONFIG_NIOS2_MEM_BASE + CONFIG_NIOS2_BOOT_LINK_OFFSET) | \
16 CONFIG_NIOS2_KERNEL_REGION_BASE;
19 .text : { *(.text) } = 0
20 .rodata : { *(.rodata) *(.rodata.*) }
38 .bss : { *(.bss) *(.sbss) }
44 got_len = (_egot - _got);