/* SPDX-License-Identifier: GPL-2.0-only */1/*2* linux/arch/xtensa/boot/boot-elf/boot.lds.S3*4* Copyright (C) 2008 - 2013 by Tensilica Inc.5*6* Chris Zankel <[email protected]>7* Marc Gauthier <[email protected]8* Pete Delaney <[email protected]>9*/1011#include <asm/vectors.h>12OUTPUT_ARCH(xtensa)13ENTRY(_ResetVector)1415SECTIONS16{17.ResetVector.text XCHAL_RESET_VECTOR_VADDR :18{19*(.ResetVector.text)20}2122.image KERNELOFFSET: AT (CONFIG_KERNEL_LOAD_ADDRESS)23{24_image_start = .;25*(image)26. = (. + 3) & ~ 3;27_image_end = . ;28}2930.bss ((LOADADDR(.image) + SIZEOF(.image) + 3) & ~ 3):31{32__bss_start = .;33*(.sbss)34*(.scommon)35*(.dynbss)36*(.bss)37__bss_end = .;38}39}404142