xref: /reactos/dll/keyboard/kbdlayout.lds (revision c2c66aff)
1SECTIONS
2{
3  .data __image_base__ + __section_alignment__ :
4  {
5    *(.data)
6    *(SORT(.data*))
7    *(.rdata)
8    *(SORT(.rdata*))
9    *(.text)
10    *(SORT(.text*))
11    *(.bss)
12    *(COMMON)
13  }
14
15  .rsrc BLOCK(__section_alignment__) :
16  {
17    *(.rsrc)
18    *(SORT(.rsrc$*))
19  }
20
21  .reloc BLOCK(__section_alignment__) :
22  {
23    *(.reloc)
24  }
25
26  .edata BLOCK(__section_alignment__) :
27  {
28    *(.edata)
29  }
30
31  /DISCARD/ :
32  {
33    *(*)
34  }
35}
36