2003-05-10 09:41:13

by David Mosberger

[permalink] [raw]
Subject: TRIVIAL: turn of AGP drivers which are not supported on ia64

Hi Dave,

Subject says it all. Please apply.

Thanks,

--daivd

diff -Nru a/drivers/char/agp/Kconfig b/drivers/char/agp/Kconfig
--- a/drivers/char/agp/Kconfig Sat May 10 01:47:43 2003
+++ b/drivers/char/agp/Kconfig Sat May 10 01:47:43 2003
@@ -31,7 +31,7 @@

config AGP_INTEL
tristate "Intel 440LX/BX/GX, I8xx and E7x05 support"
- depends on AGP && !X86_64
+ depends on AGP && !X86_64 && !IA64
help
This option gives you AGP support for the GLX component of the
XFree86 4.x on Intel 440LX/BX/GX, 815, 820, 830, 840, 845, 850, 860
@@ -44,7 +44,7 @@

#config AGP_I810
# tristate "Intel I810/I815/I830M (on-board) support"
-# depends on AGP && !X86_64
+# depends on AGP && !X86_64 && !IA64
# help
# This option gives you AGP support for the Xserver on the Intel 810
# 815 and 830m chipset boards for their on-board integrated graphics. This
@@ -52,7 +52,7 @@

config AGP_VIA
tristate "VIA chipset support"
- depends on AGP && !X86_64
+ depends on AGP && !X86_64 && !IA64
help
This option gives you AGP support for the GLX component of the
XFree86 4.x on VIA MPV3/Apollo Pro chipsets.
@@ -62,7 +62,7 @@

config AGP_AMD
tristate "AMD Irongate, 761, and 762 support"
- depends on AGP && !X86_64
+ depends on AGP && !X86_64 && !IA64
help
This option gives you AGP support for the GLX component of the
XFree86 4.x on AMD Irongate, 761, and 762 chipsets.
@@ -72,7 +72,7 @@

config AGP_SIS
tristate "Generic SiS support"
- depends on AGP && !X86_64
+ depends on AGP && !X86_64 && !IA64
help
This option gives you AGP support for the GLX component of the "soon
to be released" XFree86 4.x on Silicon Integrated Systems [SiS]
@@ -85,7 +85,7 @@

config AGP_ALI
tristate "ALI chipset support"
- depends on AGP && !X86_64
+ depends on AGP && !X86_64 && !IA64
---help---
This option gives you AGP support for the GLX component of the
XFree86 4.x on the following ALi chipsets. The supported chipsets
@@ -103,14 +103,14 @@

config AGP_SWORKS
tristate "Serverworks LE/HE support"
- depends on AGP && !X86_64
+ depends on AGP && !X86_64 && !IA64
help
Say Y here to support the Serverworks AGP card. See
<http://www.serverworks.com/> for product descriptions and images.

config AGP_AMD_8151
tristate "AMD 8151 support"
- depends on AGP
+ depends on AGP && !IA64
default GART_IOMMU
help
Say Y here to support the AMD 8151 AGP bridge and the builtin


2003-05-10 12:58:04

by Dave Jones

[permalink] [raw]
Subject: Re: TRIVIAL: turn of AGP drivers which are not supported on ia64

On Sat, May 10, 2003 at 02:53:49AM -0700, David Mosberger wrote:
> Hi Dave,
>
> Subject says it all. Please apply.
>

Already done in the agpgart updates I'm trying to push to Linus right
now.

Dave

2003-05-10 20:56:40

by David Woodhouse

[permalink] [raw]
Subject: Re: TRIVIAL: turn of AGP drivers which are not supported on ia64

On Sat, 2003-05-10 at 10:53, David Mosberger wrote:
> #config AGP_I810
> # tristate "Intel I810/I815/I830M (on-board) support"
> -# depends on AGP && !X86_64
> +# depends on AGP && !X86_64 && !IA64

... it works on Alpha? Should this be 'AGP && i386' instead?

--
dwmw2

2003-05-11 00:20:27

by Dave Jones

[permalink] [raw]
Subject: Re: TRIVIAL: turn of AGP drivers which are not supported on ia64

On Sat, May 10, 2003 at 10:09:12PM +0100, David Woodhouse wrote:
> On Sat, 2003-05-10 at 10:53, David Mosberger wrote:
> > #config AGP_I810
> > # tristate "Intel I810/I815/I830M (on-board) support"
> > -# depends on AGP && !X86_64
> > +# depends on AGP && !X86_64 && !IA64
>
> ... it works on Alpha? Should this be 'AGP && i386' instead?

Actually current agpgart bk has
depends on AGP && X86 && !X86_64

which should get things right on all archs..

Dave