Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  *  linux/arch/arm/boot/bootp/bootp.lds
0004  *
0005  *  Copyright (C) 2000-2002 Russell King
0006  */
0007 OUTPUT_ARCH(arm)
0008 ENTRY(_start)
0009 SECTIONS
0010 {
0011   . = 0;
0012   .text : {
0013    _stext = .;
0014    *(.start)
0015    *(.text)
0016    initrd_size = initrd_end - initrd_start;
0017    _etext = .;
0018   }
0019 
0020   .stab 0 : { *(.stab) }
0021   .stabstr 0 : { *(.stabstr) }
0022   .stab.excl 0 : { *(.stab.excl) }
0023   .stab.exclstr 0 : { *(.stab.exclstr) }
0024   .stab.index 0 : { *(.stab.index) }
0025   .stab.indexstr 0 : { *(.stab.indexstr) }
0026   .comment 0 : { *(.comment) }
0027 }