Subversion Repositories Kolibri OS

Rev

Rev 855 | Rev 908 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. ENTRY(__start)
  3.  
  4. OUTPUT_FORMAT(pei-i386)
  5.  
  6. SECTIONS
  7. {
  8.  
  9.   . = SIZEOF_HEADERS;
  10.   . = ALIGN(32);
  11.  
  12.   .boot . + __image_base__ :
  13.   {
  14.      *(.boot)
  15.      *(.start)
  16.      . = ALIGN(4096);
  17.   }
  18.  
  19.   .flat . + 0xE0000000:
  20.   {
  21.      *(.flat) *(.text) *(.rdata) *(.data)
  22.   }
  23.  
  24.   .edata ALIGN(32):
  25.   {
  26.     *(.edata)
  27.     _code_end = .;
  28.     . = ALIGN(4096);
  29.   }
  30.  
  31.   __edata = . - 0xE0000000;
  32.  
  33.   .bss  ALIGN(4096) :
  34.   {
  35.     *(.bss) *(COMMON)
  36.   }
  37.   __kernel_end = . - 0xE0000000;
  38.  
  39.  
  40.  
  41.   /DISCARD/ :
  42.   {
  43.     *(.debug$S)
  44.     *(.debug$T)
  45.     *(.debug$F)
  46.     *(.drectve)
  47.     *(.reloc)
  48.   }
  49. }
  50.  
  51.  
  52.