Subversion Repositories Kolibri OS

Rev

Rev 1179 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1125 serge 1
 
2
 
3
ENTRY("_drvEntry")
4
 
5
SECTIONS
6
 
7
  . = SIZEOF_HEADERS;
8
  . = ALIGN(__section_alignment__);
9
10
  .text  __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
11
 
12
  {
13
 
14
  }
15
16
  .data ALIGN(__section_alignment__) :
17
 
18
    *(.data)
19
  }
20
21
  .bss ALIGN(__section_alignment__):
22
 
1179 serge 23
    *(.bss)
1125 serge 24
    *(COMMON)
1179 serge 25
  }
26
1125 serge 27
  /DISCARD/ :
28
 
1179 serge 29
    *(.debug$S)
30
    *(.debug$T)
31
    *(.debug$F)
32
    *(.drectve)
33
    *(.edata)
34
    *(.eh_frame)
35
  }
3764 Serge 36
1179 serge 37
  .idata ALIGN(__section_alignment__):
38
 
1125 serge 39
    SORT(*)(.idata$2)
40
    SORT(*)(.idata$3)
41
    /* These zeroes mark the end of the import list. */
42
    LONG (0); LONG (0); LONG (0); LONG (0); LONG (0);
43
    SORT(*)(.idata$4)
44
    SORT(*)(.idata$5)
45
    SORT(*)(.idata$6)
46
    SORT(*)(.idata$7)
47
  }
48
49
  .reloc ALIGN(__section_alignment__) :
50
 
1179 serge 51
    *(.reloc)
1125 serge 52
  }
1179 serge 53
1125 serge 54
}
55