2006-10-26 09:08:41 +08:00
|
|
|
diff -ur linux.old/arch/mips/kernel/head.S linux.dev/arch/mips/kernel/head.S
|
2006-12-07 02:31:28 +08:00
|
|
|
--- linux.old/arch/mips/kernel/head.S 2006-12-06 17:30:27.000000000 +0100
|
|
|
|
+++ linux.dev/arch/mips/kernel/head.S 2006-12-06 18:34:43.000000000 +0100
|
|
|
|
@@ -129,15 +129,20 @@
|
|
|
|
#endif
|
|
|
|
.endm
|
2006-10-26 09:08:41 +08:00
|
|
|
|
2006-12-07 02:31:28 +08:00
|
|
|
-
|
2006-10-26 09:08:41 +08:00
|
|
|
j kernel_entry
|
|
|
|
nop
|
2006-12-07 02:31:28 +08:00
|
|
|
-
|
2006-10-26 09:08:41 +08:00
|
|
|
+ nop
|
2006-12-07 02:31:28 +08:00
|
|
|
+
|
2006-10-26 09:08:41 +08:00
|
|
|
/*
|
|
|
|
* Reserved space for exception handlers.
|
2006-12-07 02:31:28 +08:00
|
|
|
* Necessary for machines which link their kernels at KSEG0.
|
|
|
|
+ * Use as temporary storage for the kernel command line, so that it
|
|
|
|
+ * can be updated easily without having to relink the kernel.
|
|
|
|
*/
|
|
|
|
- .fill 0x400
|
|
|
|
+
|
|
|
|
+EXPORT(_image_cmdline)
|
|
|
|
+ .ascii "CMDLINE:"
|
|
|
|
+ .fill 0x3ec
|
|
|
|
|
|
|
|
EXPORT(stext) # used for profiling
|
|
|
|
EXPORT(_stext)
|
2007-05-19 21:14:38 +08:00
|
|
|
|