kallsyms now refers to addresses as '_text + 0xADDRESS', rather than
just '0xADDRESS', so we need to define _text.
Signed-off-by: Jeff Dike <[email protected]>
Index: linux-2.6.18-mm/arch/um/kernel/dyn.lds.S
===================================================================
--- linux-2.6.18-mm.orig/arch/um/kernel/dyn.lds.S 2006-10-30 13:11:25.000000000 -0500
+++ linux-2.6.18-mm/arch/um/kernel/dyn.lds.S 2006-10-30 13:52:26.000000000 -0500
@@ -14,6 +14,7 @@ SECTIONS
* is remapped.*/
__binary_start = .;
. = ALIGN(4096); /* Init code and data */
+ _text = .;
_stext = .;
__init_begin = .;
.init.text : {
Index: linux-2.6.18-mm/arch/um/kernel/uml.lds.S
===================================================================
--- linux-2.6.18-mm.orig/arch/um/kernel/uml.lds.S 2006-10-30 13:11:25.000000000 -0500
+++ linux-2.6.18-mm/arch/um/kernel/uml.lds.S 2006-10-30 13:52:10.000000000 -0500
@@ -25,6 +25,7 @@ SECTIONS
. = ALIGN(4096); /* Init code and data */
#endif
+ _text = .;
_stext = .;
__init_begin = .;
.init.text : {