2006-05-28 21:12:09

by Olaf Hering

[permalink] [raw]
Subject: [PATCH] enable CONFIG_KALLSYMS_ALL unconditionally after allnoconfig


CONFIG_KALLSYMS_ALL is disabled after these commands:

rm -rf ../foo-$$
mkdir ../foo-$$
make -j ARCH=powerpc O=../foo-$$ allnoconfig > /dev/null
grep KALLSYMS ../foo-$$/.config
make -j ARCH=powerpc O=../foo-$$ menuconfig
# 'Kernel hacking ---> ' , enable 'Kernel debugging '
grep KALLSYMS ../foo-$$/.config

enabled it along with CONFIG_KALLSYMS, because CONFIG_KALLSYMS is not selectable per default
xmon can not lookup all symbols without CONFIG_KALLSYMS_ALL,
'ls log_buf' will not work as example.

Signed-off-by: Olaf Hering <[email protected]>

---
init/Kconfig | 1 +
1 file changed, 1 insertion(+)

Index: linux-2.6/init/Kconfig
===================================================================
--- linux-2.6.orig/init/Kconfig
+++ linux-2.6/init/Kconfig
@@ -276,6 +276,7 @@ config KALLSYMS
config KALLSYMS_ALL
bool "Include all symbols in kallsyms"
depends on DEBUG_KERNEL && KALLSYMS
+ default y
help
Normally kallsyms only contains the symbols of functions, for nicer
OOPS messages. Some debuggers can use kallsyms for other


2006-05-29 09:36:06

by Olaf Hering

[permalink] [raw]
Subject: [PATCH] enable CONFIG_KALLSYMS_ALL unconditionally for xmon after allnoconfig


CONFIG_KALLSYMS_ALL is disabled after these commands:

rm -rf ../foo-$$
mkdir ../foo-$$
make -j ARCH=powerpc O=../foo-$$ allnoconfig > /dev/null
grep KALLSYMS ../foo-$$/.config
make -j ARCH=powerpc O=../foo-$$ menuconfig
# 'Kernel hacking ---> ' , enable 'Kernel debugging ' + 'Enable debugger hooks' + 'Include xmon kernel debugger'
grep KALLSYMS ../foo-$$/.config

enable CONFIG_KALLSYMS_ALL, because CONFIG_KALLSYMS is not selectable per default
xmon can not lookup all symbols without CONFIG_KALLSYMS_ALL,
'ls log_buf' will not work as example.

Signed-off-by: Olaf Hering <[email protected]>

---
arch/powerpc/Kconfig.debug | 1 +
1 file changed, 1 insertion(+)

Index: linux-2.6/arch/powerpc/Kconfig.debug
===================================================================
--- linux-2.6.orig/arch/powerpc/Kconfig.debug
+++ linux-2.6/arch/powerpc/Kconfig.debug
@@ -64,6 +64,7 @@ config KGDB_CONSOLE
config XMON
bool "Include xmon kernel debugger"
depends on DEBUGGER && !PPC_ISERIES
+ select KALLSYMS_ALL
help
Include in-kernel hooks for the xmon kernel monitor/debugger.
Unless you are intending to debug the kernel, say N here.

2006-05-29 11:11:17

by Roman Zippel

[permalink] [raw]
Subject: Re: [PATCH] enable CONFIG_KALLSYMS_ALL unconditionally for xmon after allnoconfig

Hi,

On Mon, 29 May 2006, Olaf Hering wrote:

> enable CONFIG_KALLSYMS_ALL, because CONFIG_KALLSYMS is not selectable per default
> xmon can not lookup all symbols without CONFIG_KALLSYMS_ALL,
> 'ls log_buf' will not work as example.

Unless xmon is completely unusable without CONFIG_KALLSYMS_ALL, I'd rather
leave it optional.

bye, Roman