x86_64: make bootmap_start page align v6
[linux-2.6-block.git] / arch / x86 / boot / compressed / vmlinux_64.lds
CommitLineData
1ab60e0f
VG
1OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64", "elf64-x86-64")
2OUTPUT_ARCH(i386:x86-64)
3ENTRY(startup_64)
4SECTIONS
5{
afe0bc63
IC
6 /* Be careful parts of head_64.S assume startup_64 is at
7 * address 0.
1ab60e0f
VG
8 */
9 . = 0;
20514e9f 10 .text.head : {
1ab60e0f
VG
11 _head = . ;
12 *(.text.head)
13 _ehead = . ;
20514e9f
IC
14 }
15 .rodata.compressed : {
16 *(.rodata.compressed)
17 }
18 .text : {
1ab60e0f
VG
19 _text = .; /* Text */
20 *(.text)
21 *(.text.*)
22 _etext = . ;
23 }
24 .rodata : {
25 _rodata = . ;
26 *(.rodata) /* read-only data */
27 *(.rodata.*)
28 _erodata = . ;
29 }
30 .data : {
31 _data = . ;
32 *(.data)
33 *(.data.*)
34 _edata = . ;
35 }
36 .bss : {
37 _bss = . ;
38 *(.bss)
39 *(.bss.*)
40 *(COMMON)
41 . = ALIGN(8);
42 _end = . ;
43 . = ALIGN(4096);
44 pgtable = . ;
45 . = . + 4096 * 6;
46 _heap = .;
47 }
48}