login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
October
»
25
Re: [PATCH 3/6] x86: unification of i386 and x86_64 Kconfig.debug
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Randy Dunlap
Subject:
Re: [PATCH 3/6] x86: unification of i386 and x86_64 Kconfig.debug
Date: Thursday, October 25, 2007 - 4:35 pm
On Thu, 25 Oct 2007 16:30:48 -0700 Yinghai Lu wrote:
quoted text
> On 10/25/07, Sam Ravnborg <sam@ravnborg.org> wrote: > > From 16b853f53463e43bfce341965ac10a78a3755a14 Mon Sep 17 00:00:00 2001 > > From: Randy Dunlap <rdunlap@xenotime.net> > > Date: Wed, 24 Oct 2007 15:50:43 -0700 > > Subject: [PATCH] x86: unification of i386 and x86_64 Kconfig.debug > > > > Adding proper dependencies so the two Kconfig.debug files > > are now identical. > > > > Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> > > Signed-off-by: Sam Ravnborg <sam@ravnborg.org> > > --- > > arch/i386/Kconfig.debug | 51 ++++++++++++++++++++++++++++------- > > arch/x86_64/Kconfig | 4 --- > > arch/{i386 => x86_64}/Kconfig.debug | 51 ++++++++++++++++++++++++++++------- > > 3 files changed, 82 insertions(+), 24 deletions(-) > > copy arch/{i386 => x86_64}/Kconfig.debug (65%) > > > > diff --git a/arch/i386/Kconfig.debug b/arch/i386/Kconfig.debug > > index f03531e..970b2de 100644 > > --- a/arch/i386/Kconfig.debug > > +++ b/arch/i386/Kconfig.debug > > @@ -1,14 +1,14 @@ > > menu "Kernel hacking" > > > > config TRACE_IRQFLAGS_SUPPORT > > - bool > > - default y > > + def_bool y > > > > source "lib/Kconfig.debug" > > > > config EARLY_PRINTK > > bool "Early printk" if EMBEDDED && DEBUG_KERNEL > > default y > > + depends on X86_32 > > help > > Write kernel log output directly into the VGA buffer or to a serial > > port. > > @@ -37,10 +37,12 @@ config DEBUG_STACK_USAGE > ... > > diff --git a/arch/x86_64/Kconfig b/arch/x86_64/Kconfig > > index 308970a..1bc0268 100644 > > --- a/arch/x86_64/Kconfig > > +++ b/arch/x86_64/Kconfig > > @@ -97,10 +97,6 @@ config X86_CMPXCHG > > bool > > default y > > > > -config EARLY_PRINTK > > - bool > > - default y > > - > > config GENERIC_ISA_DMA > > bool > > default y > > diff --git a/arch/i386/Kconfig.debug b/arch/x86_64/Kconfig.debug > > similarity index 65% > > copy from arch/i386/Kconfig.debug > > copy to arch/x86_64/Kconfig.debug > > index f03531e..970b2de 100644 > > --- a/arch/i386/Kconfig.debug > > +++ b/arch/x86_64/Kconfig.debug > > @@ -1,14 +1,14 @@ > > menu "Kernel hacking" > > > > config TRACE_IRQFLAGS_SUPPORT > > - bool > > - default y > > + def_bool y > > > > source "lib/Kconfig.debug" > > > > config EARLY_PRINTK > > bool "Early printk" if EMBEDDED && DEBUG_KERNEL > > default y > > + depends on X86_32 > > help > > Write kernel log output directly into the VGA buffer or to a serial > > port. > ... > > why disabling early_printk for x86_64?
It doesn't do that. EARLY_PRINTK for x86_64 lives in arch/x86_64/Kconfig (i.e., a different file). Patches welcome. --- ~Randy -
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
[PATCH 0/6] kill i386 and x86_64 directories
, Sam Ravnborg
, (Thu Oct 25, 12:56 pm)
[PATCH 1/6] x86: move i386 and x86_64 Makefiles to arch/x86
, Sam Ravnborg
, (Thu Oct 25, 1:03 pm)
[PATCH 2/6] x86: move defconfig files for i386 and x86_64 ...
, Sam Ravnborg
, (Thu Oct 25, 1:03 pm)
[PATCH 3/6] x86: unification of i386 and x86_64 Kconfig.debug
, Sam Ravnborg
, (Thu Oct 25, 1:04 pm)
[PATCH 4/6] kconfig: small code refactoring in kconfig Mak ...
, Sam Ravnborg
, (Thu Oct 25, 1:05 pm)
[PATCH 5/6] x86: move i386 and x86_64 Kconfig files to x86 ...
, Sam Ravnborg
, (Thu Oct 25, 1:05 pm)
[PATCH 6/6] x86: kill the old i386 and x86_64 directories
, Sam Ravnborg
, (Thu Oct 25, 1:06 pm)
Re: [PATCH 0/6] kill i386 and x86_64 directories
, Sam Ravnborg
, (Thu Oct 25, 1:14 pm)
Re: [PATCH 0/6] kill i386 and x86_64 directories
, Thomas Gleixner
, (Thu Oct 25, 1:17 pm)
Re: [PATCH 0/6] kill i386 and x86_64 directories
, Kay Sievers
, (Thu Oct 25, 1:19 pm)
Re: [PATCH 0/6] kill i386 and x86_64 directories
, Sam Ravnborg
, (Thu Oct 25, 1:36 pm)
[GIT PULL] kill i386 and x86_64 directories
, Sam Ravnborg
, (Thu Oct 25, 2:12 pm)
Re: [PATCH 3/6] x86: unification of i386 and x86_64 Kconfi ...
, Yinghai Lu
, (Thu Oct 25, 4:30 pm)
Re: [PATCH 3/6] x86: unification of i386 and x86_64 Kconfi ...
, Randy Dunlap
, (Thu Oct 25, 4:35 pm)
Re: [PATCH 3/6] x86: unification of i386 and x86_64 Kconfi ...
, H. Peter Anvin
, (Thu Oct 25, 4:52 pm)
Re: [PATCH 5/6] x86: move i386 and x86_64 Kconfig files to ...
, Yinghai Lu
, (Thu Oct 25, 6:53 pm)
Re: [PATCH 3/6] x86: unification of i386 and x86_64 Kconfi ...
, Yinghai Lu
, (Thu Oct 25, 6:55 pm)
Re: [PATCH 5/6] x86: move i386 and x86_64 Kconfig files to ...
, Randy Dunlap
, (Thu Oct 25, 7:46 pm)
Re: [PATCH 3/6] x86: unification of i386 and x86_64 Kconfi ...
, Sam Ravnborg
, (Thu Oct 25, 9:29 pm)
Re: [PATCH 5/6] x86: move i386 and x86_64 Kconfig files to ...
, Yinghai Lu
, (Thu Oct 25, 10:51 pm)
Re: [PATCH 5/6] x86: move i386 and x86_64 Kconfig files to ...
, Randy Dunlap
, (Thu Oct 25, 11:02 pm)
Re: [PATCH 5/6] x86: move i386 and x86_64 Kconfig files to ...
, Sam Ravnborg
, (Thu Oct 25, 11:14 pm)
Re: [PATCH 0/6] kill i386 and x86_64 directories
, Sam Ravnborg
, (Thu Oct 25, 11:23 pm)
Re: [PATCH 5/6] x86: move i386 and x86_64 Kconfig files to ...
, Yinghai Lu
, (Thu Oct 25, 11:39 pm)
Re: [PATCH 5/6] x86: move i386 and x86_64 Kconfig files to ...
, Sam Ravnborg
, (Thu Oct 25, 11:58 pm)
Re: [PATCH 0/6] kill i386 and x86_64 directories
, Alan Cox
, (Fri Oct 26, 5:01 am)
Re: [PATCH 0/6] kill i386 and x86_64 directories
, Arjan van de Ven
, (Fri Oct 26, 7:39 am)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
David Howells
[PATCH] KEYS: Use the variable 'key' in keyctl_describe_key()
Dave Jones
Re: OT: character encodings (was: Linux 2.6.20-rc4)
Greg Kroah-Hartman
[PATCH 17/36] sysdev: detect multiple driver registrations
Sam Ravnborg
Re: [PATCH] kbuild: fix make V=1
Nick Piggin
Re: [PATCH 0/24] make atomic_read() behave consistently across all architectures
git
:
Stephen R. van den Berg
Re: [RFC] origin link for cherry-pick and revert
Junio C Hamano
Re: [PATCH 1/2] Teach git-describe to display distances from tags.
Johannes Schindelin
Re: [PATCH 2/2] git-svn: support fetch with autocrlf on
Junio C Hamano
Re: [PATCH 6/6] Teach core object handling functions about gitlinks
James Henstridge
Re: VCS comparison table
linux-netdev
:
Jarek Poplawski
Re: [PATCH] flush_work_sync vs. flush_scheduled_work Re: [PATCH] PHYLIB: IRQ event...
Lennert Buytenhek
Re: Distributed Switch Architecture(DSA)
Daniel Schaffrath
Re: tcp bw in 2.6
Matt Mackall
Re: [regression] nf_iterate(), BUG: unable to handle kernel NULL pointer dereference
Guo-Fu Tseng
Re: jme: UDP checksum error, and lots of them
openbsd-misc
:
Claudio Jeker
Re: Vlan Tag on Vlan Tag (l2tunneling)
Josh Grosse
ssh/sshd challenge-response seems to have stopped working in -current
Pieter Verberne
File collision while using pkg_add
Tomas Bodzar
bsd: uvm_mapent_alloc: out of static map entries
Community First Financial
Teacher A+ Loan
git-commits-head
:
Linux Kernel Mailing List
ath9k: Added get_survey callback in order to get channel noise
Linux Kernel Mailing List
tracing: protect reader of cmdline output
Linux Kernel Mailing List
kconfig: recalc symbol value before showing search results
Linux Kernel Mailing List
KVM: VMX: Clear CR4.VMXE in hardware_disable
Linux Kernel Mailing List
swsusp: provide users with a hint about the no_console_suspend option
Colocation donated by:
Syndicate