Subversion Repositories Kolibri OS

Rev

Rev 854 | 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.   __edata = . - 0xE0000000;
  24.  
  25.   .bss  ALIGN(4096) :
  26.   {
  27.     *(.bss) *(COMMON)
  28.   }
  29.   __kernel_end = . - 0xE0000000;
  30.  
  31.   /DISCARD/ :
  32.   {
  33.     *(.debug$S)
  34.     *(.debug$T)
  35.     *(.debug$F)
  36.     *(.drectve)
  37.     *(.reloc)
  38.     *(.edata)
  39.   }
  40. }
  41.  
  42.  
  43.