public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Allow iseries to disable input layer without CONFIG_EMBEDDED
@ 2006-01-06  7:38 Dave Jones
  2006-01-06  9:06 ` Christoph Hellwig
  2006-01-07  5:09 ` Dmitry Torokhov
  0 siblings, 2 replies; 5+ messages in thread
From: Dave Jones @ 2006-01-06  7:38 UTC (permalink / raw)
  To: Linux Kernel

iSeries has no keyboard, so it's valid to build a kernel with no input layer.
It seems a bit absurd to call one of these 'embedded'.

Signed-off-by: Dave Jones <davej@redhat.com>

--- linux-2.6.15/drivers/input/Kconfig~	2006-01-06 02:27:56.000000000 -0500
+++ linux-2.6.15/drivers/input/Kconfig	2006-01-06 02:28:08.000000000 -0500
@@ -5,7 +5,7 @@
 menu "Input device support"
 
 config INPUT
-	tristate "Generic input layer (needed for keyboard, mouse, ...)" if EMBEDDED
+	tristate "Generic input layer (needed for keyboard, mouse, ...)"
 	default y
 	---help---
 	  Say Y here if you have any input device (mouse, keyboard, tablet,

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Allow iseries to disable input layer without CONFIG_EMBEDDED
  2006-01-06  7:38 Allow iseries to disable input layer without CONFIG_EMBEDDED Dave Jones
@ 2006-01-06  9:06 ` Christoph Hellwig
  2006-01-06  9:09   ` Dave Jones
  2006-01-07  5:09 ` Dmitry Torokhov
  1 sibling, 1 reply; 5+ messages in thread
From: Christoph Hellwig @ 2006-01-06  9:06 UTC (permalink / raw)
  To: Dave Jones, Linux Kernel

On Fri, Jan 06, 2006 at 02:38:19AM -0500, Dave Jones wrote:
> iSeries has no keyboard, so it's valid to build a kernel with no input layer.
> It seems a bit absurd to call one of these 'embedded'.

Please just remove the EMBEDDED here - there's tons of plattforms without
input that certainly aren't embedded.  In fact I've seen very few non-x86
servers with any input devices.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Allow iseries to disable input layer without CONFIG_EMBEDDED
  2006-01-06  9:06 ` Christoph Hellwig
@ 2006-01-06  9:09   ` Dave Jones
  2006-01-06  9:14     ` Christoph Hellwig
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Jones @ 2006-01-06  9:09 UTC (permalink / raw)
  To: Christoph Hellwig, Linux Kernel

On Fri, Jan 06, 2006 at 09:06:41AM +0000, Christoph Hellwig wrote:
 > On Fri, Jan 06, 2006 at 02:38:19AM -0500, Dave Jones wrote:
 > > iSeries has no keyboard, so it's valid to build a kernel with no input layer.
 > > It seems a bit absurd to call one of these 'embedded'.
 > 
 > Please just remove the EMBEDDED here - there's tons of plattforms without
 > input that certainly aren't embedded.  In fact I've seen very few non-x86
 > servers with any input devices.

That's what the patch did :)

		Dave

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Allow iseries to disable input layer without CONFIG_EMBEDDED
  2006-01-06  9:09   ` Dave Jones
@ 2006-01-06  9:14     ` Christoph Hellwig
  0 siblings, 0 replies; 5+ messages in thread
From: Christoph Hellwig @ 2006-01-06  9:14 UTC (permalink / raw)
  To: Dave Jones, Christoph Hellwig, Linux Kernel

On Fri, Jan 06, 2006 at 04:09:46AM -0500, Dave Jones wrote:
> On Fri, Jan 06, 2006 at 09:06:41AM +0000, Christoph Hellwig wrote:
>  > On Fri, Jan 06, 2006 at 02:38:19AM -0500, Dave Jones wrote:
>  > > iSeries has no keyboard, so it's valid to build a kernel with no input layer.
>  > > It seems a bit absurd to call one of these 'embedded'.
>  > 
>  > Please just remove the EMBEDDED here - there's tons of plattforms without
>  > input that certainly aren't embedded.  In fact I've seen very few non-x86
>  > servers with any input devices.
> 
> That's what the patch did :)

oops, sorry.  I should read the patch and not just the description..


... off and grabbing another tea to really wake up

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Allow iseries to disable input layer without CONFIG_EMBEDDED
  2006-01-06  7:38 Allow iseries to disable input layer without CONFIG_EMBEDDED Dave Jones
  2006-01-06  9:06 ` Christoph Hellwig
@ 2006-01-07  5:09 ` Dmitry Torokhov
  1 sibling, 0 replies; 5+ messages in thread
From: Dmitry Torokhov @ 2006-01-07  5:09 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel

On Friday 06 January 2006 02:38, Dave Jones wrote:
> iSeries has no keyboard, so it's valid to build a kernel with no input layer.
> It seems a bit absurd to call one of these 'embedded'.
> 
> Signed-off-by: Dave Jones <davej@redhat.com>
> 
> --- linux-2.6.15/drivers/input/Kconfig~	2006-01-06 02:27:56.000000000 -0500
> +++ linux-2.6.15/drivers/input/Kconfig	2006-01-06 02:28:08.000000000 -0500
> @@ -5,7 +5,7 @@
>  menu "Input device support"
>  
>  config INPUT
> -	tristate "Generic input layer (needed for keyboard, mouse, ...)" if EMBEDDED
> +	tristate "Generic input layer (needed for keyboard, mouse, ...)"
>  	default y
>  	---help---
>  	  Say Y here if you have any input device (mouse, keyboard, tablet,

It is there as a precaution... I wonder if we should have it changed to:

		if EMBEDDED || !X86

to ensure that we don't have issues on commodity hardware.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-01-07  5:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-06  7:38 Allow iseries to disable input layer without CONFIG_EMBEDDED Dave Jones
2006-01-06  9:06 ` Christoph Hellwig
2006-01-06  9:09   ` Dave Jones
2006-01-06  9:14     ` Christoph Hellwig
2006-01-07  5:09 ` Dmitry Torokhov

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