Subversion Repositories Kolibri OS

Rev

Rev 849 | Rev 854 | 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.      *(.init)
  16.      . = ALIGN(4096);
  17.   }
  18.  
  19.   .flat :
  20.   {
  21.      *(.flat)
  22.   }
  23.   __edata = .;
  24.  
  25.   .bss  ALIGN(4096) :
  26.   {
  27.     *(.bss) *(COMMON)
  28.   }
  29.  
  30.   /DISCARD/ :
  31.   {
  32.     *(.debug$S)
  33.     *(.debug$T)
  34.     *(.debug$F)
  35.     *(.drectve)
  36.     *(.reloc)
  37.     *(.edata)
  38.   }
  39. }
  40.  
  41.  
  42.