/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2016 Antony Pavlov * * This file is part of barebox. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #include OUTPUT_ARCH(riscv) ENTRY(_start) SECTIONS { . = TEXT_BASE; . = ALIGN(8); .text : { _stext = .; _start = .; KEEP(*(.text_entry*)) _text = .; *(.text*) } . = ALIGN(8); .rodata : { *(.rodata*) RO_DATA_SECTION } _etext = .; /* End of text and rodata section */ _sdata = .; . = ALIGN(8); .data : { *(.data*) } .barebox_imd : { BAREBOX_IMD } . = ALIGN(8); .got : { *(.got*) } .rela.dyn : { *(.rela*) } .oftables : { BAREBOX_CLK_TABLE } .dtb : { BAREBOX_DTB } _edata = .; . = ALIGN(8); __bss_start = .; .bss : { *(.bss*) *(.sbss*) } __bss_stop = .; _end = .; }