public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 21/21] KGDB: Turn off xmon if kgdb is active on ppc and powerpc
@ 2007-10-15 18:34 Jason Wessel
  0 siblings, 0 replies; only message in thread
From: Jason Wessel @ 2007-10-15 18:34 UTC (permalink / raw)
  To: linux-kernel; +Cc: paulus

[-- Attachment #1: Type: text/plain, Size: 57 bytes --]

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>

[-- Attachment #2: xmon_or_kgdb.patch --]
[-- Type: text/x-patch, Size: 1652 bytes --]

xmon_or_kgdb.patch

From: Jason Wessel <jason.wessel@windriver.com>
CC: paulus@samba.org
Subject: [PATCH] Turn off xmon if kgdb is active on ppc and powerpc

Xmon and kgdb are mutually exclusive at the moment so xmon should be
turned off in the kernel config options if kgdb selected.  The case
with "make allmodconfig" was failing and this patch addresses the
problem.

This will be fixed at a later point so as to allow either Xmon or kgdb
to be in the same kernel.

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>

---
 arch/powerpc/Kconfig.debug |    2 +-
 arch/ppc/Kconfig.debug     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Index: linux-2.6-kgdb/arch/powerpc/Kconfig.debug
===================================================================
--- linux-2.6-kgdb.orig/arch/powerpc/Kconfig.debug
+++ linux-2.6-kgdb/arch/powerpc/Kconfig.debug
@@ -43,7 +43,7 @@ config HCALL_STATS
 
 config XMON
 	bool "Include xmon kernel debugger"
-	depends on DEBUG_KERNEL
+	depends on DEBUG_KERNEL && !KGDB
 	help
 	  Include in-kernel hooks for the xmon kernel monitor/debugger.
 	  Unless you are intending to debug the kernel, say N here.
Index: linux-2.6-kgdb/arch/ppc/Kconfig.debug
===================================================================
--- linux-2.6-kgdb.orig/arch/ppc/Kconfig.debug
+++ linux-2.6-kgdb/arch/ppc/Kconfig.debug
@@ -4,7 +4,7 @@ source "lib/Kconfig.debug"
 
 config XMON
 	bool "Include xmon kernel debugger"
-	depends on DEBUG_KERNEL
+	depends on DEBUG_KERNEL && !KGDB
 	help
 	  Include in-kernel hooks for the xmon kernel monitor/debugger.
 	  Unless you are intending to debug the kernel, say N here.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-15 18:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-15 18:34 [PATCH 21/21] KGDB: Turn off xmon if kgdb is active on ppc and powerpc Jason Wessel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox