Subversion Repositories Kolibri OS

Rev

Rev 849 | Rev 854 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
849 serge 1
 
2
3
 
4
5
 
6
{
7
8
 
9
  . = ALIGN(32);
10
11
 
851 serge 12
  {
849 serge 13
     *(.boot)
851 serge 14
     *(.init)
15
     . = ALIGN(4096);
16
  }
17
18
 
19
  {
20
     *(.flat)
849 serge 21
  }
22
  __edata = .;
23
24
 
25
  {
26
    *(.bss) *(COMMON)
27
  }
28
29
 
30
  {
31
    *(.debug$S)
32
    *(.debug$T)
33
    *(.debug$F)
34
    *(.drectve)
35
    *(.reloc)
36
    *(.edata)
37
  }
38
}
39