/* * Copyright (C) 2011 Antony Pavlov * * This file is part of barebox. * See file CREDITS for list of people who contributed to this project. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * 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(mips) ENTRY(_start) SECTIONS { . = TEXT_BASE; . = ALIGN(4); .text : { _start = .; *(.text_entry*) _stext = .; _text = .; __bare_init_start = .; *(.text_bare_init*) __bare_init_end = .; *(.text*) } BAREBOX_BARE_INIT_SIZE PRE_IMAGE . = ALIGN(4); .rodata : { *(.rodata*) } _etext = .; /* End of text and rodata section */ _sdata = .; . = ALIGN(4); .data : { *(.data*) } .barebox_imd : { BAREBOX_IMD } . = ALIGN(4); .got : { *(.got*) } . = .; __barebox_cmd_start = .; .barebox_cmd : { BAREBOX_CMDS } __barebox_cmd_end = .; __barebox_magicvar_start = .; .barebox_magicvar : { BAREBOX_MAGICVARS } __barebox_magicvar_end = .; __barebox_initcalls_start = .; .barebox_initcalls : { INITCALLS } __barebox_initcalls_end = .; __barebox_exitcalls_start = .; .barebox_exitcalls : { EXITCALLS } __barebox_exitcalls_end = .; __usymtab_start = .; __usymtab : { BAREBOX_SYMS } __usymtab_end = .; .oftables : { BAREBOX_CLK_TABLE() } .dtb : { BAREBOX_DTB() } _edata = .; . = ALIGN(4); __bss_start = .; .bss : { *(.bss*) } __bss_stop = .; _end = .; }