Don't print warning about unassigned interrupt lines on bridges.
[AROS.git] / arch / .unmaintained / m68k-linux / script.so
blob22917385f9669eee3bca1b0b1a89a42697349dc5
1 OUTPUT_FORMAT("elf32-m68k", "elf32-m68k",
2               "elf32-m68k")
3 OUTPUT_ARCH(m68k)
4 ENTRY(_start)
5 SEARCH_DIR(/lib); SEARCH_DIR(/usr/lib); SEARCH_DIR(/usr/local/lib); SEARCH_DIR(/usr/m68k-linux/lib);
6 /* Do we need any of these for elf?
7    __DYNAMIC = 0;    */
8 SECTIONS
10   /* Read-only sections, merged into text segment: */
11   . = 0xf80000 + SIZEOF_HEADERS;
12   .hash          : { *(.hash)           }
13   .dynsym        : { *(.dynsym)         }
14   .dynstr        : { *(.dynstr)         }
15   .gnu.version   : { *(.gnu.version)    }
16   .gnu.version_d   : { *(.gnu.version_d)        }
17   .gnu.version_r   : { *(.gnu.version_r)        }
18   .rel.text      :
19     { *(.rel.text) *(.rel.gnu.linkonce.t*) }
20   .rela.text     :
21     { *(.rela.text) *(.rela.gnu.linkonce.t*) }
22   .rel.data      :
23     { *(.rel.data) *(.rel.gnu.linkonce.d*) }
24   .rela.data     :
25     { *(.rela.data) *(.rela.gnu.linkonce.d*) }
26   .rel.rodata    :
27     { *(.rel.rodata) *(.rel.gnu.linkonce.r*) }
28   .rela.rodata   :
29     { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
30   .rel.got       : { *(.rel.got)                }
31   .rela.got      : { *(.rela.got)               }
32   .rel.ctors     : { *(.rel.ctors)      }
33   .rela.ctors    : { *(.rela.ctors)     }
34   .rel.dtors     : { *(.rel.dtors)      }
35   .rela.dtors    : { *(.rela.dtors)     }
36   .rel.init      : { *(.rel.init)       }
37   .rela.init     : { *(.rela.init)      }
38   .rel.fini      : { *(.rel.fini)       }
39   .rela.fini     : { *(.rela.fini)      }
40   .rel.bss       : { *(.rel.bss)                }
41   .rela.bss      : { *(.rela.bss)               }
42   .rel.plt       : { *(.rel.plt)                }
43   .rela.plt      : { *(.rela.plt)               }
44   .init          : { *(.init)   } =0x4e75
45   .plt      : { *(.plt) }
46   .text      :
47   {
48     *(.text)
49     /* .gnu.warning sections are handled specially by elf32.em.  */
50     *(.gnu.warning)
51     *(.gnu.linkonce.t*)
52   } =0x4e75
53   _etext = .;
54   PROVIDE (etext = .);
55   .fini      : { *(.fini)    } =0x4e75
56   .rodata    : { *(.rodata) *(.gnu.linkonce.r*) }
57   .rodata1   : { *(.rodata1) }
58   /* Adjust the address for the data segment.  We want to adjust up to
59      the same address within the page on the next page up.  */
60   . = ALIGN(0x2000) + (. & (0x2000 - 1));
61   .data    :
62   {
63     *(.data)
64     *(.gnu.linkonce.d*)
65     CONSTRUCTORS
66   }
67   .data1   : { *(.data1) }
68   .ctors         :
69   {
70     *(.ctors)
71   }
72   .dtors         :
73   {
74     *(.dtors)
75   }
76   .got           : { *(.got.plt) *(.got) }
77   .dynamic       : { *(.dynamic) }
78   /* We want the small data sections together, so single-instruction offsets
79      can access them all, and initialized data all before uninitialized, so
80      we can shorten the on-disk segment size.  */
81   .sdata     : { *(.sdata) }
82   _edata  =  .;
83   PROVIDE (edata = .);
84   __bss_start = .;
85   .sbss      : { *(.sbss) *(.scommon) }
86   .bss       :
87   {
88    *(.dynbss)
89    *(.bss)
90    *(COMMON)
91   }
92   _end = . ;
93   PROVIDE (end = .);
94   /* Stabs debugging sections.  */
95   .stab 0 : { *(.stab) }
96   .stabstr 0 : { *(.stabstr) }
97   .stab.excl 0 : { *(.stab.excl) }
98   .stab.exclstr 0 : { *(.stab.exclstr) }
99   .stab.index 0 : { *(.stab.index) }
100   .stab.indexstr 0 : { *(.stab.indexstr) }
101   .comment 0 : { *(.comment) }
102   /* DWARF debug sections.
103      Symbols in the DWARF debugging sections are relative to the beginning
104      of the section so we begin them at 0.  */
105   /* DWARF 1 */
106   .debug          0 : { *(.debug) }
107   .line           0 : { *(.line) }
108   /* GNU DWARF 1 extensions */
109   .debug_srcinfo  0 : { *(.debug_srcinfo) }
110   .debug_sfnames  0 : { *(.debug_sfnames) }
111   /* DWARF 1.1 and DWARF 2 */
112   .debug_aranges  0 : { *(.debug_aranges) }
113   .debug_pubnames 0 : { *(.debug_pubnames) }
114   /* DWARF 2 */
115   .debug_info     0 : { *(.debug_info) }
116   .debug_abbrev   0 : { *(.debug_abbrev) }
117   .debug_line     0 : { *(.debug_line) }
118   .debug_frame    0 : { *(.debug_frame) }
119   .debug_str      0 : { *(.debug_str) }
120   .debug_loc      0 : { *(.debug_loc) }
121   .debug_macinfo  0 : { *(.debug_macinfo) }
122   /* SGI/MIPS DWARF 2 extensions */
123   .debug_weaknames 0 : { *(.debug_weaknames) }
124   .debug_funcnames 0 : { *(.debug_funcnames) }
125   .debug_typenames 0 : { *(.debug_typenames) }
126   .debug_varnames  0 : { *(.debug_varnames) }
127   /* These must appear regardless of  .  */