openbcm

Git mirror of https://github.com/Broadcom-Network-Switching-Software/OpenBCM
git clone git://git.finwo.net/mirror/broadcom/openbcm
Log | Files | Refs | README

custom_led.lds (395B)


      1 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
      2 OUTPUT_ARCH(arm)
      3 ENTRY(custom_led_handler)
      4 SECTIONS
      5 {
      6     . = 0x3800;
      7 
      8     . = ALIGN(4);
      9     .text    :
     10     {
     11         *(.text)
     12         *(.data)
     13         *(.bss)
     14     }
     15 
     16     /DISCARD/ : { *(.dynstr*) }
     17     /DISCARD/ : { *(.dynamic*) }
     18     /DISCARD/ : { *(.plt*) }
     19     /DISCARD/ : { *(.interp*) }
     20     /DISCARD/ : { *(.gnu*) }
     21 }