patch-2.3.16 linux/arch/ppc/vmlinux.lds
Next file: linux/arch/ppc/xmon/start.c
Previous file: linux/arch/ppc/mm/init.c
Back to the patch index
Back to the overall index
- Lines: 41
- Date:
Tue Aug 31 11:36:43 1999
- Orig file:
v2.3.15/linux/arch/ppc/vmlinux.lds
- Orig date:
Wed Dec 30 10:55:07 1998
diff -u --recursive --new-file v2.3.15/linux/arch/ppc/vmlinux.lds linux/arch/ppc/vmlinux.lds
@@ -70,10 +70,24 @@
. = ALIGN(4096);
__init_begin = .;
.text.init : { *(.text.init) }
- .data.init : { *(.data.init) }
+ .data.init : {
+ *(.data.init);
+ __vtop_table_begin = .;
+ *(.vtop_fixup);
+ __vtop_table_end = .;
+ __ptov_table_begin = .;
+ *(.ptov_fixup);
+ __ptov_table_end = .;
+ }
+ . = ALIGN(16);
+ __setup_start = .;
+ .setup.init : { *(.setup.init) }
+ __setup_end = .;
+ __initcall_start = .;
+ .initcall.init : { *(.initcall.init) }
+ __initcall_end = .;
. = ALIGN(4096);
__init_end = .;
-
. = ALIGN(4096);
__pmac_begin = .;
.text.pmac : { *(.text.pmac) }
@@ -87,6 +101,13 @@
.data.prep : { *(.data.prep) }
. = ALIGN(4096);
__prep_end = .;
+
+ . = ALIGN(4096);
+ __apus_begin = .;
+ .text.apus : { *(.text.apus) }
+ .data.apus : { *(.data.apus) }
+ . = ALIGN(4096);
+ __apus_end = .;
. = ALIGN(4096);
__openfirmware_begin = .;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)