shl-elf.x revision 1.5
11.5Such/*	$NetBSD: shl-elf.x,v 1.5 2002/03/02 22:26:26 uch Exp $	*/
21.1Such
31.1SuchOUTPUT_FORMAT("elf32-shl-unx")
41.1SuchOUTPUT_ARCH(sh)
51.4SuchENTRY(start)
61.1Such
71.1SuchMEMORY
81.1Such{
91.1Such  ram : o = 0x8c001000, l = 16M
101.1Such}
111.1SuchSECTIONS
121.1Such{
131.1Such  .text :
141.1Such  {
151.2Such    ftext = . ;
161.1Such    *(.text)
171.1Such    *(.rodata)
181.1Such    *(.strings)
191.1Such  } > ram
201.3Slukem  etext = . ;
211.2Such  PROVIDE (etext = .);
221.1Such  . = ALIGN(8);
231.1Such  .data :
241.1Such  {
251.2Such    fdata = . ;
261.2Such    PROVIDE (fdata = .);
271.1Such    *(.data)
281.1Such    CONSTRUCTORS
291.1Such  } > ram
301.3Slukem  edata = . ;
311.2Such  PROVIDE (edata = .);
321.1Such  . = ALIGN(8);
331.1Such  .bss :
341.1Such  {
351.2Such    fbss = . ;
361.2Such    PROVIDE (fbss = .);
371.1Such    *(.bss)
381.1Such    *(COMMON)
391.1Such  } > ram
401.1Such  . = ALIGN(4);
411.2Such  end = . ;
421.2Such  PROVIDE (end = .);
431.1Such
441.1Such  /* Stabs debugging sections.  */
451.1Such  .stab 0 : { *(.stab) }
461.1Such  .stabstr 0 : { *(.stabstr) }
471.5Such  .stab.excl 0 : { *(.stab.excl) }
481.5Such  .stab.exclstr 0 : { *(.stab.exclstr) }
491.5Such  .stab.index 0 : { *(.stab.index) }
501.5Such  .stab.indexstr 0 : { *(.stab.indexstr) }
511.5Such  .comment 0 : { *(.comment) }
521.5Such  /* DWARF debug sections.
531.5Such     Symbols in the DWARF debugging section are relative to the beginning
541.5Such     of the section so we begin .debug at 0.  */
551.5Such  /* DWARF 1 */
561.5Such  .debug          0 : { *(.debug) }
571.5Such  .line           0 : { *(.line) }
581.5Such  /* GNU DWARF 1 extensions */
591.5Such  .debug_srcinfo  0 : { *(.debug_srcinfo) }
601.5Such  .debug_sfnames  0 : { *(.debug_sfnames) }
611.5Such  /* DWARF 1.1 and DWARF 2 */
621.5Such  .debug_aranges  0 : { *(.debug_aranges) }
631.5Such  .debug_pubnames 0 : { *(.debug_pubnames) }
641.5Such  /* DWARF 2 */
651.5Such  .debug_info     0 : { *(.debug_info) }
661.5Such  .debug_abbrev   0 : { *(.debug_abbrev) }
671.5Such  .debug_line     0 : { *(.debug_line) }
681.5Such  .debug_frame    0 : { *(.debug_frame) }
691.5Such  .debug_str      0 : { *(.debug_str) }
701.5Such  .debug_loc      0 : { *(.debug_loc) }
711.5Such  .debug_macinfo  0 : { *(.debug_macinfo) }
721.5Such  /* SGI/MIPS DWARF 2 extensions */
731.5Such  .debug_weaknames 0 : { *(.debug_weaknames) }
741.5Such  .debug_funcnames 0 : { *(.debug_funcnames) }
751.5Such  .debug_typenames 0 : { *(.debug_typenames) }
761.5Such  .debug_varnames  0 : { *(.debug_varnames) }
771.5Such  /* These must appear regardless of  .  */
781.1Such}
791.1Such
80