This is just the arch specific linker bits for the early initialization
for security modules patch. Does this look sane for these arches?
--- 1.7/arch/mips64/vmlinux.lds.S Fri Feb 14 15:10:00 2003
+++ edited/arch/mips64/vmlinux.lds.S Mon May 12 16:16:59 2003
@@ -53,6 +53,9 @@
__con_initcall_start = .;
.con_initcall.init : { *(.con_initcall.init) }
__con_initcall_end = .;
+ __security_initcall_start = .;
+ .security_initcall.init : { *(.security_initcall.init) }
+ __security_initcall_end = .;
. = ALIGN(4096); /* Align double page for init_task_union */
__init_end = .;
--- 1.8/arch/mips/vmlinux.lds.S Fri Feb 14 15:09:55 2003
+++ edited/arch/mips/vmlinux.lds.S Mon May 12 16:16:59 2003
@@ -54,6 +54,9 @@
__con_initcall_start = .;
.con_initcall.init : { *(.con_initcall.init) }
__con_initcall_end = .;
+ __security_initcall_start = .;
+ .security_initcall.init : { *(.security_initcall.init) }
+ __security_initcall_end = .;
. = ALIGN(4096); /* Align double page for init_task_union */
__init_end = .;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/