Subversion Repositories Kolibri OS

Rev

Rev 1179 | Go to most recent revision | Details | 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
  .reloc ALIGN(__section_alignment__) :
22
 
23
    *(.reloc)
24
  }
25
26
  .idata ALIGN(__section_alignment__):
27
 
28
    SORT(*)(.idata$2)
29
    SORT(*)(.idata$3)
30
    /* These zeroes mark the end of the import list. */
31
    LONG (0); LONG (0); LONG (0); LONG (0); LONG (0);
32
    SORT(*)(.idata$4)
33
    SORT(*)(.idata$5)
34
    SORT(*)(.idata$6)
35
    SORT(*)(.idata$7)
36
  }
37
38
  .bss ALIGN(__section_alignment__):
39
 
40
    *(.bss)
41
    *(COMMON)
42
  }
43
44
  /DISCARD/ :
45
 
46
    *(.debug$S)
47
    *(.debug$T)
48
    *(.debug$F)
49
    *(.drectve)
50
    *(.edata)
51
  }
52
}
53