diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-09-19 19:15:08 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-09-19 19:15:08 +0000 |
commit | 03ba4131783cc9e872f8bb26a03f15bc11f27564 (patch) | |
tree | 88db8dba75ae06ba3bad08e42c5e52efc162535c /arch/i386/vmlinux.lds | |
parent | 257730f99381dd26e10b832fce4c94cae7ac1176 (diff) |
- Merge with Linux 2.1.121.
- Bugfixes.
Diffstat (limited to 'arch/i386/vmlinux.lds')
-rw-r--r-- | arch/i386/vmlinux.lds | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/i386/vmlinux.lds b/arch/i386/vmlinux.lds index 3812c81db..c23007bc8 100644 --- a/arch/i386/vmlinux.lds +++ b/arch/i386/vmlinux.lds @@ -35,6 +35,9 @@ SECTIONS _edata = .; /* End of data section */ + . = ALIGN(8192); /* init_task */ + .data.init_task : { *(.data.init_task) } + . = ALIGN(4096); /* Init code and data */ __init_begin = .; .text.init : { *(.text.init) } @@ -42,6 +45,9 @@ SECTIONS . = ALIGN(4096); __init_end = .; + . = ALIGN(4096); + .data.page_aligned : { *(.data.idt) } + __bss_start = .; /* BSS */ .bss : { *(.bss) |