Path: blob/master/arch/nios2/boot/compressed/vmlinux.lds.S
26489 views
/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* Copyright (C) 2009 Thomas Chou <[email protected]>3*/45#include <asm-generic/vmlinux.lds.h>67OUTPUT_FORMAT("elf32-littlenios2", "elf32-littlenios2", "elf32-littlenios2")89OUTPUT_ARCH(nios)10ENTRY(_start) /* Defined in head.S */1112SECTIONS13{14. = (CONFIG_NIOS2_MEM_BASE + CONFIG_NIOS2_BOOT_LINK_OFFSET) | \15CONFIG_NIOS2_KERNEL_REGION_BASE;1617_text = .;18.text : { *(.text) } = 019.rodata : { *(.rodata) *(.rodata.*) }20_etext = .;2122. = ALIGN(32 / 8);23.data : { *(.data) }24. = ALIGN(32 / 8);25_got = .;26.got : {27*(.got.plt)28*(.igot.plt)29*(.got)30*(.igot)31}32_egot = .;33_edata = .;3435. = ALIGN(32 / 8);36__bss_start = .;37.bss : { *(.bss) *(.sbss) }38. = ALIGN(32 / 8);39_ebss = .;40end = . ;41_end = . ;4243got_len = (_egot - _got);44}454647