public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* dell_rbu driver depends on x86[64]
@ 2005-11-18 21:29 Dave Jones
  2005-11-19  6:01 ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Jones @ 2005-11-18 21:29 UTC (permalink / raw)
  To: linux-kernel

This driver only appears on IA32 & EM64T boxes.

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

--- linux-2.6.14/drivers/firmware/Kconfig~	2005-11-14 19:23:45.000000000 -0500
+++ linux-2.6.14/drivers/firmware/Kconfig	2005-11-14 19:24:18.000000000 -0500
@@ -60,6 +60,7 @@ config EFI_PCDP
 
 config DELL_RBU
 	tristate "BIOS update support for DELL systems via sysfs"
+	depends on X86
 	select FW_LOADER
 	help
 	 Say m if you want to have the option of updating the BIOS for your


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

* Re: dell_rbu driver depends on x86[64]
  2005-11-18 21:29 dell_rbu driver depends on x86[64] Dave Jones
@ 2005-11-19  6:01 ` Andrew Morton
  2005-11-19  6:14   ` Dave Jones
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2005-11-19  6:01 UTC (permalink / raw)
  To: Dave Jones; +Cc: linux-kernel

Dave Jones <davej@redhat.com> wrote:
>
> This driver only appears on IA32 & EM64T boxes.
> 
> Signed-off-by: Dave Jones <davej@redhat.com>
> 
> --- linux-2.6.14/drivers/firmware/Kconfig~	2005-11-14 19:23:45.000000000 -0500
> +++ linux-2.6.14/drivers/firmware/Kconfig	2005-11-14 19:24:18.000000000 -0500
> @@ -60,6 +60,7 @@ config EFI_PCDP
>  
>  config DELL_RBU
>  	tristate "BIOS update support for DELL systems via sysfs"
> +	depends on X86
>  	select FW_LOADER
>  	help
>  	 Say m if you want to have the option of updating the BIOS for your

Does it not compile on other architectures?  If it does, there's an
argument for leaving it there, for compile coverage.

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

* Re: dell_rbu driver depends on x86[64]
  2005-11-19  6:01 ` Andrew Morton
@ 2005-11-19  6:14   ` Dave Jones
  2005-11-19  6:17     ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Dave Jones @ 2005-11-19  6:14 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

On Fri, Nov 18, 2005 at 10:01:44PM -0800, Andrew Morton wrote:
 > Dave Jones <davej@redhat.com> wrote:
 > >
 > > This driver only appears on IA32 & EM64T boxes.
 > > 
 > > Signed-off-by: Dave Jones <davej@redhat.com>
 > > 
 > > --- linux-2.6.14/drivers/firmware/Kconfig~	2005-11-14 19:23:45.000000000 -0500
 > > +++ linux-2.6.14/drivers/firmware/Kconfig	2005-11-14 19:24:18.000000000 -0500
 > > @@ -60,6 +60,7 @@ config EFI_PCDP
 > >  
 > >  config DELL_RBU
 > >  	tristate "BIOS update support for DELL systems via sysfs"
 > > +	depends on X86
 > >  	select FW_LOADER
 > >  	help
 > >  	 Say m if you want to have the option of updating the BIOS for your
 > 
 > Does it not compile on other architectures?  If it does, there's an
 > argument for leaving it there, for compile coverage.

If this were a "only works on non-x86" driver, I'd agree, but
x86 drivers probably get way more coverage than any arch already,
so I don't we really gain much by having this available on
archs that can't run it.

		Dave


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

* Re: dell_rbu driver depends on x86[64]
  2005-11-19  6:14   ` Dave Jones
@ 2005-11-19  6:17     ` Andrew Morton
  2005-11-19  6:23       ` Dave Jones
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Morton @ 2005-11-19  6:17 UTC (permalink / raw)
  To: Dave Jones; +Cc: linux-kernel

Dave Jones <davej@redhat.com> wrote:
>
> On Fri, Nov 18, 2005 at 10:01:44PM -0800, Andrew Morton wrote:
>  > Dave Jones <davej@redhat.com> wrote:
>  > >
>  > > This driver only appears on IA32 & EM64T boxes.
>  > > 
>  > > Signed-off-by: Dave Jones <davej@redhat.com>
>  > > 
>  > > --- linux-2.6.14/drivers/firmware/Kconfig~	2005-11-14 19:23:45.000000000 -0500
>  > > +++ linux-2.6.14/drivers/firmware/Kconfig	2005-11-14 19:24:18.000000000 -0500
>  > > @@ -60,6 +60,7 @@ config EFI_PCDP
>  > >  
>  > >  config DELL_RBU
>  > >  	tristate "BIOS update support for DELL systems via sysfs"
>  > > +	depends on X86
>  > >  	select FW_LOADER
>  > >  	help
>  > >  	 Say m if you want to have the option of updating the BIOS for your
>  > 
>  > Does it not compile on other architectures?  If it does, there's an
>  > argument for leaving it there, for compile coverage.
> 
> If this were a "only works on non-x86" driver, I'd agree, but
> x86 drivers probably get way more coverage than any arch already,
> so I don't we really gain much by having this available on
> archs that can't run it.
> 

Where's the advantage in removing it from non-x86 builds?

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

* Re: dell_rbu driver depends on x86[64]
  2005-11-19  6:17     ` Andrew Morton
@ 2005-11-19  6:23       ` Dave Jones
  0 siblings, 0 replies; 5+ messages in thread
From: Dave Jones @ 2005-11-19  6:23 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

On Fri, Nov 18, 2005 at 10:17:44PM -0800, Andrew Morton wrote:
 > Dave Jones <davej@redhat.com> wrote:
 > >
 > > On Fri, Nov 18, 2005 at 10:01:44PM -0800, Andrew Morton wrote:
 > >  > Dave Jones <davej@redhat.com> wrote:
 > >  > >
 > >  > > This driver only appears on IA32 & EM64T boxes.
 > >  > > 
 > >  > > Signed-off-by: Dave Jones <davej@redhat.com>
 > >  > > 
 > >  > > --- linux-2.6.14/drivers/firmware/Kconfig~	2005-11-14 19:23:45.000000000 -0500
 > >  > > +++ linux-2.6.14/drivers/firmware/Kconfig	2005-11-14 19:24:18.000000000 -0500
 > >  > > @@ -60,6 +60,7 @@ config EFI_PCDP
 > >  > >  
 > >  > >  config DELL_RBU
 > >  > >  	tristate "BIOS update support for DELL systems via sysfs"
 > >  > > +	depends on X86
 > >  > >  	select FW_LOADER
 > >  > >  	help
 > >  > >  	 Say m if you want to have the option of updating the BIOS for your
 > >  > 
 > >  > Does it not compile on other architectures?  If it does, there's an
 > >  > argument for leaving it there, for compile coverage.
 > > 
 > > If this were a "only works on non-x86" driver, I'd agree, but
 > > x86 drivers probably get way more coverage than any arch already,
 > > so I don't we really gain much by having this available on
 > > archs that can't run it.
 > 
 > Where's the advantage in removing it from non-x86 builds?

One less pointless option showing up in configs.
Just like we don't have countless other arch-specific drivers showing
up under non-native archs. Why is this one different ?

		Dave


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

end of thread, other threads:[~2005-11-19  6:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-18 21:29 dell_rbu driver depends on x86[64] Dave Jones
2005-11-19  6:01 ` Andrew Morton
2005-11-19  6:14   ` Dave Jones
2005-11-19  6:17     ` Andrew Morton
2005-11-19  6:23       ` Dave Jones

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