xref: /openbmc/linux/arch/arm/boot/bootp/bootp.lds (revision 46f28427)
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 *  linux/arch/arm/boot/bootp/bootp.lds
4 *
5 *  Copyright (C) 2000-2002 Russell King
6 */
7OUTPUT_ARCH(arm)
8ENTRY(_start)
9SECTIONS
10{
11  . = 0;
12  .text : {
13   _stext = .;
14   *(.start)
15   *(.text)
16   initrd_size = initrd_end - initrd_start;
17   _etext = .;
18  }
19
20  .stab 0 : { *(.stab) }
21  .stabstr 0 : { *(.stabstr) }
22  .stab.excl 0 : { *(.stab.excl) }
23  .stab.exclstr 0 : { *(.stab.exclstr) }
24  .stab.index 0 : { *(.stab.index) }
25  .stab.indexstr 0 : { *(.stab.indexstr) }
26  .comment 0 : { *(.comment) }
27}
28