From 1b94bf6d310cf41041d0a6c24be85a892d443708 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Fri, 4 Jul 2008 16:59:48 -0400 Subject: emit all symbol tables at compile time; don't do any module munging; new unwinder still disabled --- runtime/staprun/staprun.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'runtime/staprun/staprun.c') diff --git a/runtime/staprun/staprun.c b/runtime/staprun/staprun.c index 6eb6d8b5..cef96815 100644 --- a/runtime/staprun/staprun.c +++ b/runtime/staprun/staprun.c @@ -360,7 +360,8 @@ int send_relocation_kernel () #endif if ((rc == 3) && (0 == strcmp(symbol,KERNEL_RELOC_SYMBOL))) { - send_a_relocation ("kernel", KERNEL_RELOC_SYMBOL, address); + /* NB: even on ppc, we use the _stext relocation name. */ + send_a_relocation ("kernel", "_stext", address); /* We need nothing more from the kernel. */ fclose (kallsyms); -- cgit