Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6595 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
    *(.text)
13
    *(SORT(.text$*))
14
    *(.text.*)
15
    . = ALIGN(16);
16
    *(.rdata)
17
    *(SORT(.rdata$*))
18
    . = ALIGN(16);
19
    *(.data)
20
    *(.data2)
21
    *(SORT(.data$*))
22
    . = ALIGN(16);
23
    *(.bss)
24
    *(COMMON)
25
  }
26
27
28
 
29
 
30
    SORT(*)(.idata$2)
31
    SORT(*)(.idata$3)
32
    /* These zeroes mark the end of the import list. */
33
    LONG (0); LONG (0); LONG (0); LONG (0); LONG (0);
34
    SORT(*)(.idata$4)
35
    SORT(*)(.idata$5)
36
    SORT(*)(.idata$6)
37
    SORT(*)(.idata$7)
38
  }
39
40
  .reloc ALIGN(__section_alignment__) :
41
 
42
    *(.reloc)
43
  }
44
45
  /DISCARD/ :
46
 
47
    *(.debug$S)
48
    *(.debug$T)
49
    *(.debug$F)
50
    *(.drectve)
51
    *(.edata)
52
    *(.note.GNU-stack)
53
    *(.comment)
54
    *(.eh_frame)
55
    *(.debug_abbrev)
56
    *(.debug_info)
57
    *(.debug_line)
58
    *(.debug_frame)
59
    *(.debug_loc)
60
    *(.debug_pubnames)
61
    *(.debug_aranges)
62
    *(.debug_ranges)
63
  }
64
65
66
 
67