~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to conf/i386-cygwin-img-ld.sc

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2013-12-26 00:52:47 UTC
  • mto: (17.6.37 experimental)
  • mto: This revision was merged to the branch mainline in revision 184.
  • Revision ID: package-import@ubuntu.com-20131226005247-dalaa9te0g0d49kd
Tags: upstream-2.02~beta2
ImportĀ upstreamĀ versionĀ 2.02~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Linker script to create grub .img files on Cygwin.  */
 
2
 
 
3
SECTIONS
 
4
{
 
5
  .text :
 
6
  {
 
7
    start = . ;
 
8
    _start = . ;
 
9
    __start = . ;
 
10
    *(.text)
 
11
    etext = . ;
 
12
  }
 
13
  .data :
 
14
  {
 
15
    __data_start__ = . ;
 
16
    *(.data)
 
17
    __data_end__ = . ;
 
18
    __rdata_start__ = . ;
 
19
    *(.rdata)
 
20
    __rdata_end__ = . ;
 
21
    *(.pdata)
 
22
    edata = . ;
 
23
    _edata = . ;
 
24
    __edata = . ;
 
25
  }
 
26
  .bss :
 
27
  {
 
28
    __bss_start__ = . ;
 
29
    *(.bss)
 
30
    __common_start__ = . ;
 
31
    *(COMMON)
 
32
    __bss_end__ = . ;
 
33
  }
 
34
  .edata :
 
35
  {
 
36
    *(.edata)
 
37
    end = . ;
 
38
    _end = . ;
 
39
    __end = . ;
 
40
  }
 
41
  .stab :
 
42
  {
 
43
    *(.stab)
 
44
  }
 
45
  .stabstr :
 
46
  {
 
47
    *(.stabstr)
 
48
  }
 
49
}
 
50
 
 
51
ASSERT("__rdata_end__"=="edata", ".pdata not empty")
 
52
ASSERT("__bss_end__"  =="end"  , ".edata not empty")
 
53