Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / x68k / stand / boot_ustar / boot_ustar.ldscript
blob63e606206d0018e77b66412d55c6e47935e66f72
1 OUTPUT_FORMAT("binary", "binary", "binary")
2 OUTPUT_ARCH(m68k)
3 ENTRY(start)
4 SEARCH_DIR(/usr/lib);
5 /*__DYNAMIC = 0; */
6 PROVIDE (__stack = 0);
7 SECTIONS
9   . = 0x00002000;
10   .text :
11   {
12     CREATE_OBJECT_SYMBOLS
13     *(.text)
14     *(.rodata)
15     /* The next six sections are for SunOS dynamic linking.  The order
16        is important.  */
17     *(.dynrel)
18     *(.hash)
19     *(.dynsym)
20     *(.dynstr)
21     *(.rules)
22     *(.need)
23     etext = .;
24     _etext = .;
25   }
26 /*  . = ALIGN(0x2000); */
27   .data :
28   {
29     /* The first three sections are for SunOS dynamic linking.  */
30     *(.dynamic)
31     *(.got)
32     *(.plt)
33     *(.data)
34     *(.linux-dynamic) /* For Linux dynamic linking.  */
35     CONSTRUCTORS
36     edata  =  .;
37     _edata  =  .;
38   }
39   .bss :
40   {
41     __bss_start = .;
42    *(.bss)
43    *(COMMON)
44    end = ALIGN(4) ;
45    _end = ALIGN(4) ;
46   }
47   /DISCARD/ : { *(.ident) *(.stab) *(.stabstr) }