Changeset 544

Show
Ignore:
Timestamp:
05/24/08 09:56:48 (3 months ago)
Author:
mwhitworth
Message:

Add .bss.page_aligned section for later.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/hybrid/link.ld

    r411 r544  
    4848 
    4949  .bss  : { 
    50     bss = .; _bss = .; __bss = .; 
     50   bss = .; _bss = .; __bss = .; 
     51        *(.bss.page_aligned) 
    5152    *(.bss) 
    52      /* . = ALIGN(4096); */ 
     53        *(COMMON) 
     54        . = ALIGN(4); 
     55        endbss = .; _endbss = .; 
    5356  } 
    5457 
    55   endbss = .; _endbss = .; 
    5658  end = .; _end = .; __end = .; 
    5759}