Re: [XFree86] Driver issue.

2007-06-10 Thread Marc Aurele La France

On Tue, 5 Jun 2007, Lucio Lastra wrote:


I don't see my graphic card driver listed.



The graphic card is onboard on a DG945GTP Intel motherboard.



It's based on the Intel 945G Express Chipset.



http://www.intel.com/products/chipsets/945g/index.htm



-



My questions are:



¿ Is the chipset backward compatible so i can run the i8xx driver ?



If not, ¿ Which driver do you recommend ?



¿ Is it possible at all to configure XFree86 in this motherboard ?


The driver appears to support the 945G, so it should work right out of the 
box.


Marc.

+--+--+
|  Marc Aurele La France   |  work:   1-780-492-9310  |
|  Academic Information and|  fax:1-780-492-1729  |
|Communications Technologies   |  email:  [EMAIL PROTECTED] |
|  352 General Services Building   +--+
|  University of Alberta   |  |
|  Edmonton, Alberta   |Standard disclaimers apply|
|  T6G 2H1 |  |
|  CANADA  |  |
+--+--+
XFree86 developer and VP.  ATI driver and X server internals.

Re: [XFree86] Driver H/W init delay

2006-05-30 Thread Mark Vojkovich
On Tue, 30 May 2006, Jun OKAJIMA wrote:

> Thank you for usuful advices.
>
> >
> >  Things like getting monitor information through DDC take
> >a long time.  Also, because clocks are being set there are
> >PLL settling times that need to be observed least you mess
> >things up by touching the hardware before the PLLs lock.
> >
>
> I have heard about this issue, but, in my env, doing DDC probe is
> very fast. It is done instantaneously.
> Is DDC really a cause?
>
>
>
> >
> >  It may be that particular drivers have unnecessary waits here
> >and there, but you really have to address them one by one,
> >profiling to find the wait and then investigating whether or
> >not it's really necessary.
> >
>
> Then, the VESA driver of current XFree86 has unnecessary waits?
> If so, I will try to get rid of. But, as far as I have glanced
> the code, it just does call a VESA BIOS and it is all it does.
> So, even there are unnecessary waits, they seems to be in a BIOS
> code, I suppose.
>
>
>
> >
> >  I have worked on systems with boot times times on the order of
> >a few seconds but these weren't trying to access VESA bios services
> >or probing monitors through DDC.  If you remove stuff like that, the
> >boot times will probably be dominated by IDE probing, but then
> >you end up having to hardcode things like monitor EDIDs that
> >the driver would usually try to probe.
> >
>
> Well, in MACH BOOT, it is possible to hard-code IDE params,
> because most PCs has same param. But not possible to hard-code
> DDC (EDID or...) because there are so many kind of monitor.
> Any idea?

   You really just need to profile it and find where all the
time is spent.  If the video BIOS is doing all the initialization
then it's likely that all the waiting is done there.  It's undoubtedly
all the monitor probing and clock setting and the associated delays
and timeouts related to that.  If the video card has multiple connectors
it will probably be looking for devices on all connectors and trying
that until it's convinced that it has found them all.


Mark.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver H/W init delay

2006-05-30 Thread Jun OKAJIMA
Thank you for usuful advices.

>
>  Things like getting monitor information through DDC take
>a long time.  Also, because clocks are being set there are
>PLL settling times that need to be observed least you mess
>things up by touching the hardware before the PLLs lock.
>

I have heard about this issue, but, in my env, doing DDC probe is
very fast. It is done instantaneously.
Is DDC really a cause?



>
>  It may be that particular drivers have unnecessary waits here
>and there, but you really have to address them one by one,
>profiling to find the wait and then investigating whether or
>not it's really necessary.
>

Then, the VESA driver of current XFree86 has unnecessary waits?
If so, I will try to get rid of. But, as far as I have glanced
the code, it just does call a VESA BIOS and it is all it does.
So, even there are unnecessary waits, they seems to be in a BIOS
code, I suppose.



>
>  I have worked on systems with boot times times on the order of
>a few seconds but these weren't trying to access VESA bios services
>or probing monitors through DDC.  If you remove stuff like that, the
>boot times will probably be dominated by IDE probing, but then
>you end up having to hardcode things like monitor EDIDs that
>the driver would usually try to probe.
>

Well, in MACH BOOT, it is possible to hard-code IDE params,
because most PCs has same param. But not possible to hard-code
DDC (EDID or...) because there are so many kind of monitor.
Any idea?


--- Okajima, Jun. Tokyo, Japan.
http://www.digitalinfra.co.jp/
http://www.machboot.com/







___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver H/W init delay

2006-05-29 Thread Mark Vojkovich
  Things like getting monitor information through DDC take
a long time.  Also, because clocks are being set there are
PLL settling times that need to be observed least you mess
things up by touching the hardware before the PLLs lock.

  It may be that particular drivers have unnecessary waits here
and there, but you really have to address them one by one,
profiling to find the wait and then investigating whether or
not it's really necessary.

  I have worked on systems with boot times times on the order of
a few seconds but these weren't trying to access VESA bios services
or probing monitors through DDC.  If you remove stuff like that, the
boot times will probably be dominated by IDE probing, but then
you end up having to hardcode things like monitor EDIDs that
the driver would usually try to probe.


Mark.


On Mon, 29 May 2006, Jun OKAJIMA wrote:

> I am working on making a very fast booting technology for Linux.
> Check this:
> http://www.machboot.com/
> This boots within 10sec with x48 CD-ROM.
> I dont intend to blow my own horn, but not so bad result, dont you?
>
>
> One of the bottle neck at the moment is, XFree86 driver.
> For example, VESA driver seems to spend several seconds for
> hardware initialization. Other drivers (S3 or such) also
> needs several seconds.
>
> My questions are:
>
> 1. This delay really comes from H/W init (or detect)?
> 2. If so, is there any way to reduce this delay?
>For example, if I hard-code all parameters about H/W to a driver,
>It starts faster?
>
> Especially, I have much interest in tweaking VESA driver.
>
>  --- Okajima, Jun. Tokyo, Japan.
> ___
> XFree86 mailing list
> XFree86@XFree86.Org
> http://XFree86.Org/mailman/listinfo/xfree86
>
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver for Acer Travelmate291

2004-02-24 Thread Ron Johnson
On Tue, 2004-02-24 at 03:52, Christoph Ludwig wrote:
> Hello,
> 
> On my Acer Notebook Travelmate 291LCI with a 1400x1050 LCD
> I get only a resolution of 1280x1024.
> 
> I use Suse-Linux 9.0 with XFree86 Version 4.3.0.1
> Configuration tool was sax2 with the following options:
> Monitor: LCD [EMAIL PROTECTED]
> Graphics: Intel 855GM
> 
> I have tried different monitors:
> LCD 1400x1050 (Acer Travelmate 800)
> LCD [EMAIL PROTECTED]
> LCD [EMAIL PROTECTED]
> LCD [EMAIL PROTECTED]
> ... with no better result
> 
> Do I need an newer driver or do I use a wong configuration ??
> Please help

So what driver are you using?  http://www.xfree.org/help.html
suggests "it is usually a good idea to include with your message 
a copy of your XFree86 log file (/var/log/XFree86.0.log) and 
XF86Config file".

-- 
-
Ron Johnson, Jr. [EMAIL PROTECTED]
Jefferson, LA USA

"Adventure is a sign of incompetence"
Stephanson, great polar explorer

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver

2004-02-13 Thread Thomas Winischhofer
Jerry robards wrote:
Is there a driver update for sis 5598/6326?
Jerry Robards

www.winischhofer.net/linuxsisvga.shtml

--
Thomas Winischhofer
Vienna/Austria
thomas AT winischhofer DOT net  http://www.winischhofer.net/
twini AT xfree86 DOT org
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver for ATI Radeon IGP 340M

2003-10-08 Thread Alex Deucher
Actually I think the IGP code went in after 4.3.0 was released.  you
may need to use the driver from CVS.  Also if you want 3D support to
need to use this patch:
http://bugs.xfree86.org/show_bug.cgi?id=314

Alex



On Tue, 2003-10-07 at 16:23, =?iso-8859-1?B?SXNpZG9ybyBUcmV2afFv ?=
wrote:
> Sir, I have an ATI Radeon IGP 340M and I wish you could tell me which
driver I \
> should use and how I can configure it. 
> Thanks

You should run XFree86 4.3.0 or later and use the "radeon" driver.

Something like this for your device section:

Section "Device"
Identifier  "Mobility"
Driver  "radeon"
VendorName  "ATI"
BoardName   "IGP 340M"
Screen  0
EndSection

Regards,

Brandon Wittenburg

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver for ATI Radeon IGP 340M

2003-10-07 Thread Brandon Wittenburg
On Tue, 2003-10-07 at 16:23, =?iso-8859-1?B?SXNpZG9ybyBUcmV2afFv ?=
wrote:
> Sir, I have an ATI Radeon IGP 340M and I wish you could tell me which driver I 
> should use and how I can configure it.
> 
> Thanks

You should run XFree86 4.3.0 or later and use the "radeon" driver.

Something like this for your device section:

Section "Device"
Identifier  "Mobility"
Driver  "radeon"
VendorName  "ATI"
BoardName   "IGP 340M"
Screen  0
EndSection

Regards,

Brandon Wittenburg

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] Driver problem for RADEON 9100

2003-08-17 Thread Michel Dänzer
On Sun, 2003-08-17 at 18:49, Alexander Stohr wrote:

> (WW) RADEON(0): Mode 640x480 is out of range.
> (WW) RADEON(0): Valid modes must be between 320x200-0x0
> (II) RADEON(0): Total number of valid FP mode(s) found: 0
> (EE) RADEON(0): No valid mode found for this DFP/LCD
> 
> (EE) Screen(s) found, but none have a usable configuration.
> 
> Let me say, there must be some driver problem.
> I think the major problem for setting up a cloned
> LCD/DFP mode is the lack of DDC detected modes
> for the 2nd port, so the driver is unable to clone any mode at all.
>  
> i would like to pass that on to the experts.
> i dont know if using a snapshot version of the drivers
> or of X11 will help in any way.

Assuming this is from 4.3, a snapshot driver will likely help.


-- 
Earthling Michel Dänzer   \  Debian (powerpc), XFree86 and DRI developer
Software libre enthusiast  \ http://svcs.affero.net/rm.php?r=daenzer

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] Driver problem for RADEON 9100

2003-08-17 Thread Alexander Stohr
(WW) RADEON(0): monitor1: Using default hsync range of 28.00-33.00kHz
(WW) RADEON(0): monitor1: using default vrefresh range of 43.00-72.00Hz
(II) RADEON(0): Clock range:  20.00 to 350.00 MHz

(II) RADEON(0): Not using default mode "800x600" (hsync out of range)

(II) RADEON(0): Not using mode "800x600" (no mode of this name)
(--) RADEON(0): Virtual size is 640x480 (pitch 640)
(**) RADEON(0): *Mode "800x600"
(**) RADEON(0): *Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(II) RADEON(0): Modeline "640x480"   25.20  640 656 752 800  480 490 492 525
-hsync -vsync
(II) RADEON(0): Valid Clone Mode: 640x480
(II) RADEON(0): Total of 1 clone modes found 
 
(II) RADEON(0): Total number of valid DDC mode(s) found: 0
(WW) RADEON(0): Mode 800x600 is out of range.
(WW) RADEON(0): Valid modes must be between 320x200-0x0
(WW) RADEON(0): Mode 640x480 is out of range.
(WW) RADEON(0): Valid modes must be between 320x200-0x0
(II) RADEON(0): Total number of valid FP mode(s) found: 0
(EE) RADEON(0): No valid mode found for this DFP/LCD

(EE) Screen(s) found, but none have a usable configuration.

Let me say, there must be some driver problem.
I think the major problem for setting up a cloned
LCD/DFP mode is the lack of DDC detected modes
for the 2nd port, so the driver is unable to clone any mode at all.
 
i would like to pass that on to the experts.
i dont know if using a snapshot version of the drivers
or of X11 will help in any way.

-Original Message-
From: ddeki [mailto:[EMAIL PROTECTED]
Sent: Sunday, August 17, 2003 17:50
To: [EMAIL PROTECTED]
Subject: [XFree86] Driver problem for RADEON 9100


Hi
 
I have a problem whit drivers for my graphic card RADEON 9100,
I tray whit ati and radeon drivers and still is the same problem.
The config and log file is attached.
Thanks
 
Dejan Bogoevski
Macedonia
[EMAIL PROTECTED]  
[EMAIL PROTECTED]  


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver Problem

2003-07-31 Thread Mark Vojkovich
   You need to be using XFree86 4.3.  It's not supported in older
versions.


Mark.

On Thu, 31 Jul 2003, RED_KOMISSAR wrote:

>   Hi!
>   I have a card GeForce FX 5200 AGP8x.
>   What should I choose as a Video Card? For any kind of GeForce it
>   gives an error. I have a FreeBSD 4.8 operating system.
> 
>   Thank you for support!
> 
> 
> -- 
> RED_KOMISSAR
> [EMAIL PROTECTED]   uin: 801960
> 
> ERNESTO FERNANDO SANCHEZ
> Paramaribo (Suriname)
> 
> 
> ___
> XFree86 mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/xfree86
> 

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver Cirrus logic gd-546x vga

2003-07-13 Thread Derek Fawcus
On Sun, Jul 13, 2003 at 04:44:12AM -0500, Andy Goth wrote:
> On Sunday, July 13, 2003 3:10 am, Giacomo wrote:
> > ho un problema con la scheda video integrata su un IBM CIRRUS LOGIC GD-546X
> > VGA, e no riesco a trovare il driver
> 
> Attempted translation:
> I have a problem with my integrated video card, an "IBM CIRRUS LOGIC GD-546X 
> VGA", and I am not able to find a driver.
> 
> Have you tried the "cirrus" driver that comes with XFree86 4.3.0?  Or even 
> "vesa" or simply "vga"?

the 546x is a laguna chip,  so use the "cirrus" driver,  and it'll load
the laguna sub driver.

DF
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver Cirrus logic gd-546x vga

2003-07-13 Thread Andy Goth
On Sunday, July 13, 2003 3:10 am, Giacomo wrote:
> ho un problema con la scheda video integrata su un IBM CIRRUS LOGIC GD-546X
> VGA, e no riesco a trovare il driver

Attempted translation:
I have a problem with my integrated video card, an "IBM CIRRUS LOGIC GD-546X 
VGA", and I am not able to find a driver.

Have you tried the "cirrus" driver that comes with XFree86 4.3.0?  Or even 
"vesa" or simply "vga"?

-- 
Andy Goth  |  [EMAIL PROTECTED]  |  http://ioioio.net/
End communication.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] driver

2003-07-01 Thread Cynthia Grossen
We haven't got any of those here. Try microsoft's website or the website for
the manufacturer (S3) of your video card.

-Original Message-
From: Fabrizio [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 01, 2003 9:36 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] driver


Salve vorrei avere i driver per S3 VIRGE/DX   ( tornado) per Win ME


Grazie
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver for Trident XP4 m32

2003-06-25 Thread Alan Hourihane
On Thu, Jun 26, 2003 at 08:14:10AM -0400, Jaroslav Kautsky wrote:
> (sending again after subscribing and hoping for response :)
> 
> 
> I am looking for a driver for Trident XP4 m32LP in the Toshiba
> Portege R100 notebook.
> 
> I have looked at http://www.xfree86.org/~alanh/  where some drivers
> under development are mentioned. 
> 
> I would appreciate information if some suitable driver for the above
> mentioned configuration exists and can be tried.

No driver exists yet for this chip, so your left with the vesa driver
for unaccelerated support.

Alan.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] Driver for Trident XP4 m32

2003-06-25 Thread Iain
 I have installed DRI and X, but I keep getting the message that the X11 driver is not 
configured for OpenGL. Also, direct rendering is turned off. I'm using Debian Woody, X 
4.3.99.5, Mesa-5.01, and an ATI Rage128. Can anybody assist me? Thank you.

Sincerely,

Iain Marcuson.



___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!


XFREE86.0
Description: Binary data


S3 ViRGE - was (Re: [XFree86] Driver)

2003-03-14 Thread Kevin Brosius
> 
> Please can you tell me where I might be able to find and download the following 
> driver
> 
> ViRGE GX2 V3.42.02
> 
> Thanks for any help
> 
> Stephen Jackson


For what OS?  XFree86 with ViRGE drivers is available from
http://www.xfree86.org .

Windows drivers for ViRGE ship with the OS, and are also available from
http://www.s3graphics.com

-- 
Kevin
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver

2003-03-03 Thread Kevin Brosius
Hi Alex,
  The ViRGE GX2 is supported by XFree86 4.3.0 on Unix operating
systems.  Downloads of XFree86 are available from http://www.xfree86.org
.  The binaries are in ftp://ftp.xfree86.org/pub/XFree86/4.3.0/

-- 
Kevin
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] driver for ATI Xpert98 AGP under Xfree86 4.3?

2003-03-01 Thread Dr Andrew C Aitchison
On Fri, 28 Feb 2003, Reid Vail wrote:

> I have this older ATI card (Xpert 98 AGP) and am wondering if theATI 
> driver that runs under Xfree86 4.3 supports the AGP functionality?  The 
> Xfree86 site which references this seems pretty ambigious to me.  It 
> says it supports the Rage classd. But the old Xfree 3.3.6 looks more 
> comprehensive, but am not sure if I need to get that Xfree86 version loaded.

Use 4.3.
I'm not sure whether the 4.3 driver will use the extra functionality 
of the AGP bus, but if it doesn't 3.3.6 certainly wont.

I have an Xpert98 PCI and an Xpert99 AGP running with 4.2 and 4.3 -
I'm reasonable certain that 4.3 supports the Xpert98 AGP as well.

-- 
Dr. Andrew C. Aitchison Computer Officer, DPMMS, Cambridge
[EMAIL PROTECTED]   http://www.dpmms.cam.ac.uk/~werdna

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver nVidia

2003-02-19 Thread Mark Vojkovich
On Thu, 20 Feb 2003, Jeremy D'Inverno wrote:

> 

   You are using the "nv" driver that comes with XFree86 yet
you are trying to load the glx module from NVIDIA's binary drivers.
If you want to use the "nv" driver that comes with XFree86
then uninstall NVIDIA's drivers, in particular, remove NVIDIA's 
/usr/X11R6/lib/modules/extensions/libglx.so. 


Mark.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] driver for intel original 845GLAD motherboard

2003-02-06 Thread Hans Öfverbeck
Hi,

rinku deopura wrote:


dear sir,
   I have installed redhat linux 8.0 on my computer but it does not support my vedio card and sound card so please tell me about drivers availability.you please quickly mail me your reply i have urgently required these drivers.i had also search on internet. 
Date:6 Feb 2003 yours
rinku

 

Take a look at: 
http://www.mail-archive.com/xfree86@xfree86.org/msg00515.html

Best Regards
Hans Öfverbeck


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Driver for Radeon Mobility 7500

2003-01-30 Thread jsmith
Quoting John Tapsell <[EMAIL PROTECTED]>:

>   The ATI Mobility card (I think) is an R200 core.
>   Both 2D and 3D will be supported in XFree86 4.3.0.

Any word on higher resolutions (e.g. 1600x1024 and 1920x1200) via the DVI port?
(R200/7500 or 8500)

Previous efforts appeared to be limited to 1280x1024.

tia for any enlightenment,

Jean.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] Driver for Radeon Mobility 7500

2003-01-30 Thread John Tapsell
  The ATI Mobility card (I think) is an R200 core.
  Both 2D and 3D will be supported in XFree86 4.3.0.


On Thursday 30 January 2003 9:34 pm, Mark Collins wrote:
> Can someone recommend a driver and/or Xserver for a
> Radeon Mobility 7500?
>
> I have been able to get it to work using fbdev, but
> only with mediocre results.  If I use fbdev in XFree86
> 3.3.6 I have good screen resolution, but choppy
> graphics when moving windows, scolling in text, etc.
> When I use fbdev in XFree 4.2.1 I get good graphics
> motion, but the resolution is incorrect and I can't
> seem to alter it.
>
> I am running Mandrake 8.2/9.0.  Any advice?
>
> Thanks
>
> =
>
>
> __
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com
> ___
> XFree86 mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/xfree86

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR

2003-01-13 Thread Mark Vojkovich
   If you don't want to use NVIDIA's binary drivers, this chip is also 
supported in XFree86 CVS.  The last binary snapshot of CVS was 4.2.99.3
which is available at ftp.xfree86.org in the snapshots directory.
This chip was released after the last official XFree86 release, which
is why it's only supported in CVS.  Only the binary drivers from
NVIDIA's web site support OpenGL acceleration, however.


Mark.


On Mon, 13 Jan 2003, Robin Rosenberg wrote:

> The impatient can go to 
>http://www.nvidia.com/view.asp?IO=linux_display_ia32_1.0-4191 and
> get a driver (non-free, but gratis).
> 
> > From: Riccardo de Sangro <[EMAIL PROTECTED]>
> >
> > >To: [EMAIL PROTECTED]
> > >Reply-To: [EMAIL PROTECTED]
> > >Content-Type: text/plain; charset=US-ASCII
> > >Subject: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR
> > >
> > >Hi all,
> > > I have a DELL notebook with a very nice 1600x1200 display, but
> > >installing Linux RH 8.0 I discovered that the NVIDIA card I have listed
> > >in the subject line is not yet supported (I have checked the XFree86
> > >site).
> 
> ___
> XFree86 mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/xfree86
> 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR

2003-01-13 Thread Robin Rosenberg
The impatient can go to http://www.nvidia.com/view.asp?IO=linux_display_ia32_1.0-4191 
and
get a driver (non-free, but gratis).

> From: Riccardo de Sangro <[EMAIL PROTECTED]>
>
> >To: [EMAIL PROTECTED]
> >Reply-To: [EMAIL PROTECTED]
> >Content-Type: text/plain; charset=US-ASCII
> >Subject: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR
> >
> >Hi all,
> > I have a DELL notebook with a very nice 1600x1200 display, but
> >installing Linux RH 8.0 I discovered that the NVIDIA card I have listed
> >in the subject line is not yet supported (I have checked the XFree86
> >site).

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR

2003-01-13 Thread Mike A. Harris
On Mon, 13 Jan 2003, Riccardo de Sangro wrote:

>Date: Mon, 13 Jan 2003 11:10:24 +0100
>From: Riccardo de Sangro <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Reply-To: [EMAIL PROTECTED]
>Content-Type: text/plain; charset=US-ASCII
>Subject: [XFree86] Driver for NVIDIA GeForce4 440 Go DDR
>
>Hi all,
> I have a DELL notebook with a very nice 1600x1200 display, but
>installing Linux RH 8.0 I discovered that the NVIDIA card I have listed
>in the subject line is not yet supported (I have checked the XFree86
>site).
>
>Does anyone knows if such driver already exists and if/when will be
>available, or if there is a way I can fiddle with the conf file(s) to
>make the present driver work?

Red Hat Linux 8.0 comes with XFree86 4.2.0, which does not 
support the GeForce 4 series of hardware.

XFree86 development code contains such support however, and the 
next release of Red Hat Linux will have this support later this 
year.

-- 
Mike A. Harris


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86