CVS Update: xc (branch: trunk)

2003-11-26 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/11/25 19:42:36

Log message:
  update formatted doc

Modified files:
  ./:
RELNOTES 
  
  Revision  ChangesPath
  1.22  +187 -98   xc/RELNOTES

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


CVS Update: xc (branch: trunk)

2003-11-26 Thread Matthieu Herrb
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/11/25 23:33:10

Log message:
  Make sure GenerateAuthData returns 1 in the HASXDMAUTH case.

Modified files:
  xc/programs/xdm/:
genauth.c 
  
  Revision  ChangesPath
  3.21  +2 -1  xc/programs/xdm/genauth.c

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


CVS Update: xc (branch: trunk)

2003-11-26 Thread Matthieu Herrb
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/11/26 13:48:26

Log message:
  Store all 0 length strings read from ICEauthority
  as a one byte '\0' string, instead of a NULL pointer.
  It fixes reading a ICEauthority file which is made of all '0'.
  (Bugzilla #902, Glenn Burkhardt).

Modified files:
  xc/lib/ICE/:
authutil.c 
  
  Revision  ChangesPath
  3.10  +11 -15xc/lib/ICE/authutil.c

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


CVS Update: xc (branch: trunk)

2003-11-26 Thread Torrey T. Lyons
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/11/26 17:53:39

Log message:
  Fix bug in generic rootless resize code which caused the wrong region
  to be damaged. The workaround for this bug in CR is no longer necessary.

Modified files:
  xc/programs/Xserver/miext/rootless/:
rootlessWindow.c 
  xc/programs/Xserver/hw/darwin/quartz/cr/:
crFrame.m 
  
  Revision  ChangesPath
  1.11  +2 -8  xc/programs/Xserver/miext/rootless/rootlessWindow.c
  1.7   +1 -11 xc/programs/Xserver/hw/darwin/quartz/cr/crFrame.m

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


CVS Update: xc (branch: trunk)

2003-11-26 Thread Torrey T. Lyons
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/11/26 17:59:54

Log message:
  Fix hide/unhide with xpr when an AppleWM-aware window manager is not present.

Modified files:
  xc/programs/Xserver/hw/darwin/quartz/:
XServer.m quartz.h 
  xc/programs/Xserver/hw/darwin/quartz/cr/:
crScreen.m 
  xc/programs/Xserver/hw/darwin/quartz/fullscreen/:
fullscreen.c 
  xc/programs/Xserver/hw/darwin/quartz/xpr/:
xpr.h xprFrame.c xprScreen.c 
  
  Revision  ChangesPath
  1.20  +5 -3  xc/programs/Xserver/hw/darwin/quartz/XServer.m
  1.8   +3 -1  xc/programs/Xserver/hw/darwin/quartz/quartz.h
  1.6   +2 -1  xc/programs/Xserver/hw/darwin/quartz/cr/crScreen.m
  1.3   +2 -1  xc/programs/Xserver/hw/darwin/quartz/fullscreen/fullscreen.c
  1.5   +2 -1  xc/programs/Xserver/hw/darwin/quartz/xpr/xpr.h
  1.5   +44 -2 xc/programs/Xserver/hw/darwin/quartz/xpr/xprFrame.c
  1.9   +2 -1  xc/programs/Xserver/hw/darwin/quartz/xpr/xprScreen.c

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


RE: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders

2003-11-26 Thread Ping Cheng
-Original Message-
From: David Dawes [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 24, 2003 9:20 PM
To: '[EMAIL PROTECTED] '
Subject: Re: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders


On Mon, Nov 24, 2003 at 08:09:13PM -0800, Ping Cheng wrote:
I think I can get rid of xf86Optrec.h in my code. But, data passing 
between wacom driver and xsetwacom, a user space app,is required to 
enable the user with live function changes.

Can you give an example of how this is used?


For example, my application needs to get the tablet's model from the driver.
But the driver only knows the model after it communicates with the tablet.
So, the model can not be assigned into an option in the config file. 

Basically, I don't have problem to sent data to the driver from client. I
use xfWcmDevChangeControl(), which is assigned as local's control_proc to
send data to the driver. I have problem to pass data from driver back to the
app. That's why I let driver write to a file so the app can read from there.

There are definitely sufficient option handling interfaces available to
drivers so that you don't 
need to go digging into the OptionRec. It should be straightforward for you
to fix that.  If you 
do happen to find something that isn't covered with the existing
interfaces, just let me know.

I'll fix the problem and submit another patch. Should I still submit it as a
bug fix for [Bug 537] or create a new bug to submit this patch?

I think the data passing mechanism you're using could go in for 4.4,
providing that it's understood 
that it is temporary, and that for 4.5 it would be converted to a mechanism
using one extension 
or another, making use of the authenticated communication channels that the
client/server model 
naturally provides.

Understood.

A more practical question I have is how broadly has this significantly
restructured version of 
the driver been tested, and does it support (and been tested) on all of the
hardware the old 
driver runs on (especially older hardware)?  Given where we are in the
release cycle now, this is 
more important than the other issues.

The refactored driver has been posted at http://linuxwacom.sourceforge.net
since April 11, 2003. In addition to the use and testing from individual
users, it is also tested by many corporation users. We support all the
tablets that Wacom has released so far.

In fact, we had made some more changes since I submitted my last patch (Oct.
10, 2003). But, we'll wait a bit to see more testing results before making a
new patch. 

Ping
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: [XFree86] Can't get a 7-button mouse setup correctly.

2003-11-26 Thread Rafa Rzepecki
On Tuesday 25 of November 2003 23:50, Ing. Jozef Sakalos wrote:
 What protocol to use for Logitech would be good question for
 developers, I guess.

I use MouseManPlusPS/2 for my Logitech Cordless Optical. It works 
fine, all 4 buttons + roller are reported.

As Logitech mice do support IntelliMouse protocol, that support is 
limited and in order to get all features working, one needs to use 
Logitech's PS2++ protocol; AFAIK it's the one implemented as 
MouseManPlusPS/2 in mouse_drv.o.

Even if it doesn't support 7 buttons, the fix should be 
straightforward, as the support built in the protocol AFAIR.
I have the specifications somewhere, if anybody is interested.

-- 
Rafa Rzepecki

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


RE: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders

2003-11-26 Thread Dr Andrew C Aitchison
On Tue, 25 Nov 2003, Ping Cheng wrote:

 For example, my application needs to get the tablet's model from the driver.
 But the driver only knows the model after it communicates with the tablet.
 So, the model can not be assigned into an option in the config file. 
 
 Basically, I don't have problem to sent data to the driver from client. I
 use xfWcmDevChangeControl(), which is assigned as local's control_proc to
 send data to the driver. I have problem to pass data from driver back to the
 app. That's why I let driver write to a file so the app can read from there.

Sorry, I should have suggested this earlier.
The driver can set window properties via xf86RegisterRootWindowProperty()
(xc/programs/Xserver/hw/xfree86/common/xf86Helper.c)
Then any client can read these properties from the server -
use the command-line app xprop, or see how it does it.

I'm not sure how well static property names will represent 
information about zero, one or more tablets - perhaps you need
properties like:
WACOM_TABLET_COUNT
WACOM_TABLET0_MODEL
...
WACOM_TABLET1_MODEL
...

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

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


Re: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders

2003-11-26 Thread David Dawes
On Tue, Nov 25, 2003 at 04:07:36PM -0800, Ping Cheng wrote:
-Original Message-
From: David Dawes [mailto:[EMAIL PROTECTED] 
Sent: Monday, November 24, 2003 9:20 PM
To: '[EMAIL PROTECTED] '
Subject: Re: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders


On Mon, Nov 24, 2003 at 08:09:13PM -0800, Ping Cheng wrote:
I think I can get rid of xf86Optrec.h in my code. But, data passing 
between wacom driver and xsetwacom, a user space app,is required to 
enable the user with live function changes.

Can you give an example of how this is used?


For example, my application needs to get the tablet's model from the driver.
But the driver only knows the model after it communicates with the tablet.
So, the model can not be assigned into an option in the config file. 

Basically, I don't have problem to sent data to the driver from client. I
use xfWcmDevChangeControl(), which is assigned as local's control_proc to
send data to the driver. I have problem to pass data from driver back to the
app. That's why I let driver write to a file so the app can read from there.

OK.

There are definitely sufficient option handling interfaces available to
drivers so that you don't 
need to go digging into the OptionRec. It should be straightforward for you
to fix that.  If you 
do happen to find something that isn't covered with the existing
interfaces, just let me know.

I'll fix the problem and submit another patch. Should I still submit it as a
bug fix for [Bug 537] or create a new bug to submit this patch?

Either way is OK.  Just send a note here when you've done it.

A more practical question I have is how broadly has this significantly
restructured version of 
the driver been tested, and does it support (and been tested) on all of the
hardware the old 
driver runs on (especially older hardware)?  Given where we are in the
release cycle now, this is 
more important than the other issues.

The refactored driver has been posted at http://linuxwacom.sourceforge.net
since April 11, 2003. In addition to the use and testing from individual
users, it is also tested by many corporation users. We support all the
tablets that Wacom has released so far.

OK, that's good to hear.

David
-- 
David Dawes
developer/release engineer  The XFree86 Project
www.XFree86.org/~dawes
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Problem connecting to IPv4 in IPv6 format

2003-11-26 Thread David Dawes
On Wed, Nov 26, 2003 at 07:33:10PM +0200, Meelis Roos wrote:
 With the new IPv6 code, clients connect to IPv4 addresses using AF_INET6
 with the compatibility address ':::a.b.c.d' where a.b.c.d is the IPv4
 address.

 I noticed this while trying to figure out why connections from a
 FreeBSD 5.1 system to another system (via IPv4 addresses) weren't
 working.  It turns out that FreeBSD 5.1 defaults to not allowing
 this method of connecting to IPv4 hosts.  If I change the default
 with 'sysctl net.inet6.ip6.v6only=0' it then works.

This seems very related:

ftp://ftp.itojun.org/pub/paper/draft-itojun-v6ops-v4mapped-harmful-02.txt

Indeed.  That certainly explains FreeBSD 5.1's default behaviour.

David
-- 
David Dawes
developer/release engineer  The XFree86 Project
www.XFree86.org/~dawes
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


RE: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders

2003-11-26 Thread Ping Cheng
David,

I have problem to login to
http://bugs.xfree86.org/query.cgi?GoAheadAndLogIn=1. I'll send the patch
directly to you in a separate email since the file is large.

Ping


-Original Message-
From: David Dawes [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 26, 2003 9:40 AM
To: [EMAIL PROTECTED]
Subject: Re: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders


On Tue, Nov 25, 2003 at 04:07:36PM -0800, Ping Cheng wrote:
-Original Message-
From: David Dawes [mailto:[EMAIL PROTECTED]
Sent: Monday, November 24, 2003 9:20 PM
To: '[EMAIL PROTECTED] '
Subject: Re: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders


On Mon, Nov 24, 2003 at 08:09:13PM -0800, Ping Cheng wrote:
I think I can get rid of xf86Optrec.h in my code. But, data passing
between wacom driver and xsetwacom, a user space app,is required to 
enable the user with live function changes.

Can you give an example of how this is used?


For example, my application needs to get the tablet's model from the 
driver. But the driver only knows the model after it communicates with 
the tablet. So, the model can not be assigned into an option in the 
config file.

Basically, I don't have problem to sent data to the driver from client. 
I use xfWcmDevChangeControl(), which is assigned as local's 
control_proc to send data to the driver. I have problem to pass data 
from driver back to the app. That's why I let driver write to a file so 
the app can read from there.

OK.

There are definitely sufficient option handling interfaces available 
to
drivers so that you don't
need to go digging into the OptionRec. It should be straightforward 
for you
to fix that.  If you
do happen to find something that isn't covered with the existing
interfaces, just let me know.

I'll fix the problem and submit another patch. Should I still submit it 
as a bug fix for [Bug 537] or create a new bug to submit this patch?

Either way is OK.  Just send a note here when you've done it.

A more practical question I have is how broadly has this significantly
restructured version of
the driver been tested, and does it support (and been tested) on all 
of the
hardware the old
driver runs on (especially older hardware)?  Given where we are in the
release cycle now, this is
more important than the other issues.

The refactored driver has been posted at 
http://linuxwacom.sourceforge.net since April 11, 2003. In addition to 
the use and testing from individual users, it is also tested by many 
corporation users. We support all the tablets that Wacom has released 
so far.

OK, that's good to hear.

David
-- 
David Dawes
developer/release engineer  The XFree86 Project
www.XFree86.org/~dawes ___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


RE: FW: RE: [Bug 537] wacom usb tablet uses wrong screen borders

2003-11-26 Thread Ping Cheng
A patch for xf86Wacom.c is committed as a bug fix for Bug 537 at
http://bugs.xfree86.org/show_bug.cgi?id=537

Ping

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


[Fonts] Tekbul internet Rehberi - iyi bayramlar.!

2003-11-26 Thread Tekbul Duyurular
Tüm islam aleminin Ramazan bayrami kutlu olsun.!

Beraber nice bayramlara ...


TEKBUL.COM Administrator
http://www.tekbul.com

---
Tekbul internet Rehberi
___
Fonts mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/fonts


[XFree86] Bad TV out resolution - nvidia driver

2003-11-26 Thread Marcel Mourguiart
Please excuse my bad english

I only can see tv with a resolution of monitor 800x600 if i change
my monitor resolution to 1280x1024, I see in the the tv a fragment ( 800x600
) of a 1280x1024 total size.

How i can have 1280x1024 in the monitor and 800x600 in the tv ???

Is there an example of a xf86config file that i can use ???

Here is my xf86config

Section Files
# Multiple FontPath entries are allowed (they are concatenated
together)
# By default, Mandrake 6.0 and later now use a font server
independent of
# the X server to render fonts.
  FontPath /usr/X11R6/lib/X11/fonts/misc:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/local
  FontPath /usr/X11R6/lib/X11/fonts/75dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/100dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/Type1
  FontPath /usr/X11R6/lib/X11/fonts/URW
  FontPath /usr/X11R6/lib/X11/fonts/Speedo
  FontPath /usr/X11R6/lib/X11/fonts/PEX
  FontPath /usr/X11R6/lib/X11/fonts/cyrillic
  FontPath /usr/X11R6/lib/X11/fonts/latin2/misc:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/latin2/75dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/latin2/100dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/latin2/Type1
  FontPath /usr/X11R6/lib/X11/fonts/latin7/75dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/baekmuk:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/japanese:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/kwintv
  FontPath /usr/X11R6/lib/X11/fonts/truetype
  FontPath /usr/X11R6/lib/X11/fonts/uni:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/CID
  FontPath /usr/X11R6/lib/X11/fonts/ucs/misc:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/ucs/75dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/ucs/100dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/hellas/misc:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/hellas/75dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/hellas/100dpi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/hellas/Type1
  FontPath /usr/X11R6/lib/X11/fonts/misc/sgi:unscaled
  FontPath /usr/X11R6/lib/X11/fonts/xtest
EndSection

Section ServerFlags
#DontZap # disable CrtlAltBS (server abort)
AllowMouseOpenFail # allows the server to start up even if the mouse
doesn't work
#DontZoom # disable CrtlAltKP_+/KP_- (resolution switching)
EndSection

Section Module
Load dbe # Double-Buffering Extension
Load v4l # Video for Linux
Load extmod
Load type1
Load freetype
Load glx # 3D layer
#Load speedo
EndSection

Section InputDevice
Identifier Keyboard1
Driver Keyboard
Option XkbModel pc105
Option XkbLayout es
Option XkbCompat 
Option XkbOptions 
EndSection

Section InputDevice
Identifier Mouse1
Driver mouse
Option Protocol IMPS/2
Option ButtonNumber 5
Option Name Autodetection
Option Device /dev/mouse
Option ZAxisMapping 4 5
EndSection

Section Monitor
Identifier monitor1
VendorName Plug'n Play
HorizSync 28-69
VertRefresh 50-120

# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine 1024x48065.00 1024 1032 1176 1344   480  488  494
563
-hsync -vsync

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine 768x576 50.00  768  832  846 1000   576  590  595
630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine 768x576 63.07  768  800  960 1024   576  578  590
616
Modeline  1280x1024 108.00 1280 1328 1440 1688 1024 1025 1028
1066
EndSection

Section Device
Identifier device1
VendorName Nvidia
BoardName GeForce2 MX/MX 400
Driver nvidia
Option TwinView 1
Option TwinViewOrientation Clone
Option ConnectedMonitor CRT, TV
Option SecondMonitorHorizSync 30-50
Option SecondMonitorVertRefresh 60
Option MetaModes 1280x1024, [EMAIL PROTECTED];
Option TVStandard PAL-B

Option NvAGP 3
Option DigitalVibrance 0
EndSection


Section Screen
Identifier screen1
Device device1
Monitor monitor1
DefaultColorDepth 24

Subsection Display
Depth 8
Modes 1280x1024 1280x960 1152x864 1024x768 800x600
640x480
EndSubsection

Subsection Display
Depth 15
Modes 1280x1024 1280x960 1152x864 1024x768 800x600
640x480
EndSubsection

Subsection Display
Depth 16
Modes 1280x1024 1280x960 1152x864 1024x768 800x600
640x480
EndSubsection

Subsection Display
Depth 24
Modes 1280x1024 1280x960 1152x864 1024x768 800x600
640x480
EndSubsection
EndSection

Section ServerLayout
Identifier layout1
InputDevice Keyboard1 CoreKeyboard
InputDevice Mouse1 CorePointer
Screen screen1
EndSection

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


Re: [XFree86] XvQueryAdaptors: small memory leak

2003-11-26 Thread Thomas Winischhofer
Phil Dumont wrote:
Xv

 SYNOPSIS:

There's a small memory leak in XvQueryAdaptors().

 DESCRIPTION:

Not all of the memory allocated by XvQueryAdaptors is freed by
XvFreeAdaptorInfo.
It looks as though the culprit is the first Xalloc() in
XvQueryAdaptors().  The space is used as a local buffer (pointer
assigned to variable named buffer) -- that is, the returned
XvAdaptorInfo structure does not have a reference to this memory, so
it is not XvFreeAdaptorInfo's responsibility to free it.  It must be
freed before returning from XvQueryAdaptors().
There are several failure paths where buffer is freed.  But on
success, it is not freed.
 SAMPLE FIX:

Insert Xfree(buffer); immediately before the last return statement
of the XvQueryAdaptor().
I've tried this fix, and it seems ok.  The above sample program does
not work, and at least one Real Program (one that acutally uses the
returned data) seems to continue to work correctly.
This has been fixed 6 months ago in CVS.

p.s., from a cursory glance at XvQueryExtensions(), I'd say it has the
same problem, though I haven't tested it or tried to fix it.
There is no procedure named XvQueryExtensions. And XvQueryExtension() 
(without s) looks perfectly ok to me.

What you probably mean is XvQueryEncodings(). If so, you're correct. It 
needs a similar fix as XvQueryAdaptor.

Thomas

--
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] cannot upgrade XFree82 from 4.2.0 to 4.2.1

2003-11-26 Thread Christopher Thom
it's possible that the XFree86 version and the module version are
incompatible, hence the unresolved symbols.  I'd recommend 4.3.0 for your
graphics card.  use a recent 2.4 kernel (e.g =2.4.21) with the i810, i830
and agpgart kernel modules.  if you use 4.3.0, ditch the intel drivers.

cheers
chris

-- 
-
|   |
|  TELESCOPE, n.|
|  A device having a relation to the eye similar to that of the |
|  telephone to the ear, enabling distant objects to plague us with a   |
|  multitude of needless details. Luckily it is unprovided with a bell  |
|  summoning us to the sacrifice.   |
| -- Ambrose Bierce, The Devil's Dictionary   |
|   |
-
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Intel 865G memory allocation problem?

2003-11-26 Thread David Dawes
On Tue, Nov 25, 2003 at 02:06:34PM -0700, Scott Beverly wrote:
I have a new system with what appears to be an Intel 82865G integrated
video controller.  So far the best I can get is 1024x768x8bit.  I been
searching the list archives and the XFree86.org website, but haven't found
anything that directly refers to the problem I am having.  Below is the
log file I got after getting the latest CVS tree (yesterday 4.3.99.16).  

Does anyone have any suggestions on how I can get higher resolution and 
color depth?

If one of your BIOS setup screens has an option to increase the amount
of memory reserved for video at boot time, that should take care of the
problem.

David
-- 
David Dawes
developer/release engineer  The XFree86 Project
www.XFree86.org/~dawes
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] bug

2003-11-26 Thread chendh18
hi,I use the VMWare to Install Redhat Linux 7.2. Before installing the VMWare tools 
for linux, I can't start the X-Windows. I think it maybe duo to the VMWare itself's 
problem, but after I installed the VMWare tools, the problem occurs again.
can you tell me how to deal with this problem? 
thanks.

JIT
__

===
 (http://ad4.sina.com.cn/shc/zhuiyu_hprefresh.html)



XFree86.0.log
Description: application/msdownload


RE: [XFree86] Dell 1800 FP

2003-11-26 Thread Alexandre Morales
I delete this line and it works with the latest version of Xfree :

Option  UseFBDev  true

If someone is interested in my conf, send emailthanx Mark ;-)


|-Message d'origine-
|De : Mark Vojkovich [mailto:[EMAIL PROTECTED]
|Envoyé : mardi 25 novembre 2003 19:47
|À : Alexandre Morales
|Cc : [EMAIL PROTECTED]
|Objet : RE: [XFree86] Dell 1800 FP
|
|
|   I can't diagnose without seeing the /var/log/XFree86.0.log file,
|but usually this is because your X-server is too old for your
|graphics hardware.
|
|   Mark.
|
|On Tue, 25 Nov 2003, Alexandre Morales wrote:
|
| I'm not using DVI interface with this computer but DSub one. When I start
|x,
| it return a no screen found, oor a screen found but unusable
| configuration, or something like this.
|
| Alex
|
|
| |-Message d'origine-
| |De : Mark Vojkovich [mailto:[EMAIL PROTECTED]
| |Envoyé : mardi 25 novembre 2003 00:53
| |À : Alexandre Morales
| |Cc : [EMAIL PROTECTED]
| |Objet : Re: [XFree86] Dell 1800 FP
| |
| |
| |   FYI, the nv driver that comes with XFree86 didn't support
| |the DVI interface until XFree86 4.3.0, so if you're using something
| |older than 4.3.0, it's not going to work.
| |
| |
| |Mark.
| |
| |On Tue, 25 Nov 2003, Alexandre Morales wrote:
| |
| | Hello,
| |
| |
| |
| | I'm newbie in Debian, and I'm trying to configure Xfree. But I don't
| | understand how to set up my Flat Panel 1800 FP (Dell), with my Nvidia
| | graphic card. It seems to be so difficult for me. Can you help me
|please
| |?
| |
| |
| |
| | Regards,
| |
| |
| |
| | Alex
| |
| |
|
|
|
|
|




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


[XFree86] Tekbul internet Rehberi - iyi bayramlar.!

2003-11-26 Thread Tekbul Duyurular
Tüm islam aleminin Ramazan bayrami kutlu olsun.!

Beraber nice bayramlara ...


TEKBUL.COM Administrator
http://www.tekbul.com

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


Where to put xinitrc? (Re: [XFree86] Can't get a 7-button mouse setup correctly.)

2003-11-26 Thread Alon Weinstein
Hello all.

After running xmodmap the scrollers work fine. However -- I can't make 
xmodmap run automatically -- I've tried putting a line to run it in 
~/.xinitrc, and I still have to run it manually every time I start an X 
session -- Is there some other place I should be putting it?
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Reproducible lock-up while using DRI

2003-11-26 Thread Laurent Bonnaud
Hi,

I tested the X11 server and drivers provided here:

  http://www.xfree86.org/~alanh/drivers/x86/

It generally works quite well with my ATI Radeon 9200 card:

01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV280 [Radeon 9200] 
(rev 01) 
01:00.1 Display controller: ATI Technologies Inc: Unknown device 5941 (rev 01)

However, I have found a reproducible way to lock-up my computer. I just 
have to run this OpenGL screensaver from the rsxs package:

  /usr/lib/xscreensaver/rs-solarwinds

and maximize its window (1600x1200 pixels).

Here is the X11 server log file where you should find all necessary 
info about my setup.


This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
to [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.99.14
Release Date: 10 October 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.18-bf2.4 i686 [ELF] 
Current Operating System: Linux jophur 2.6.0-test9-1-386 #1 Sun Oct 26 22:32:52 EST 2003 i686
Build Date: 30 October 2003
Changelog Date: 30 October 2003
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Mon Nov 24 08:50:34 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Default Layout
(**) |--Screen Default Screen (0)
(**) |   |--Monitor B1997PNST/NSTLTN
(**) |   |--Device ATI Technologies, Inc. Radeon RV280 [Radeon 9200]
(**) |--Input Device Generic Keyboard
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout fr
(**) XKB: layout: fr
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Configured Mouse
(WW) The directory /usr/lib/X11/fonts/CID does not exist.
	Entry deleted from font path.
(WW) The directory /usr/lib/X11/fonts/cyrillic does not exist.
	Entry deleted from font path.
(**) FontPath set to unix/:7100,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/Speedo,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi
(==) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.7
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(++) using VT number 7

(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2560 card 1043,80b2 rev 02 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,2561 card , rev 02 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 1043,8089 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1043,8089 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1043,8089 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1043,8089 rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card , rev 82 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 1043,8089 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1043,8089 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1043,80b0 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5961 card 18bc,0132 rev 01 class 03,00,00 hdr 80
(II) PCI: 01:00:1: chip 1002,5941 card 18bc,0133 rev 01 class 03,80,00 hdr 00
(II) PCI: 02:05:0: chip 14e4,4401 card 1043,80a8 rev 01 class 02,00,00 hdr 00
(II) PCI: 02:09:0: chip 1274,5880 card 1274,2000 rev 02 class 04,01,00 hdr 00
(II) PCI: 02:0a:0: chip 1412,1724 card 153b,1147 rev 01 class 04,01,00 hdr 00
(II) PCI: 02:0b:0: chip 109e,036e card 1002,0003 rev 02 class 04,00,00 hdr 80
(II) PCI: 02:0b:1: chip 109e,0878 card 1002,0003 rev 02 class 04,80,00 hdr 80
(II) PCI: 02:0c:0: chip 109e,036c card 0070,13e9 rev 11 class 04,00,00 hdr 

[XFree86] I NEED DRIVERSO FOR SIS 86C201

2003-11-26 Thread Luis Campos Ariño
PLEASE. I need drivers  for video car model SIS 86C201 (SIS94-9516-PFD0104)
(ST201Rev.1.1A)

Thanks.

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


[XFree86] server not starting

2003-11-26 Thread alok bansal
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF] 
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com
 
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 (Red 
Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:18:24 EST 2003 
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Wed Nov 26 16:49:56 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Videocard0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to Unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,01a4 card , rev b2 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 10de,01ac card 10de,0c11 rev b2 class 05,00,00 hdr 80
(II) PCI: 00:00:2: chip 10de,01ad card 10de,0c11 rev b2 class 05,00,00 hdr 80
(II) PCI: 00:00:3: chip 10de,01aa card 10de,0c11 rev b2 class 05,00,00 hdr 80
(II) PCI: 00:01:0: chip 10de,01b2 card 10de,0c11 rev c3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,01b4 card 10de,0c11 rev c1 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,01c2 card 10de,0c11 rev c3 class 0c,03,10 hdr 00
(II) PCI: 00:03:0: chip 10de,01c2 card 10de,0c11 rev c3 class 0c,03,10 hdr 00
(II) PCI: 00:05:0: chip 10de,01b0 card 1043,0c11 rev c2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,01b1 card 1043,8384 rev c2 class 04,01,00 hdr 80
(II) PCI: 00:08:0: chip 10de,01b8 card , rev c2 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 10de,01bc card 10de,0c11 rev c3 class 01,01,8a hdr 00
(II) PCI: 00:1e:0: chip 10de,01b7 card , rev b2 class 06,04,00 hdr 01
(II) PCI: 01:06:0: chip 134d,7890 card 134d,0001 rev 02 class 07,03,04 hdr 00
(II) PCI: 02:00:0: chip 10de,01a0 card 10de,0c11 rev b1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:8:0), (0,1,1), BCTRL: 0x (VGA_EN is cleared)
(II) Bus 1 I/O range:
[0] -1  0   0xb000 - 0xbfff (0x1000) IX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 2 non-prefetchable memory range:
[0] -1  0   0xec00 - 0xecff (0x100) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1  0   0xeff0 - 0xf7ff (0x810) MX[B]
(--) PCI:*(2:0:0) nVidia Corporation NV15 [GeForce2 - nForce GPU] rev 177, Mem @ 
0xec00/24, 0xf000/27, BIOS @ 0xefff/16
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1  0   0xffe0 - 0x (0x20) MX[B](B)
[1] -1  0   0x0010 - 0x3fff 

Re: Where to put xinitrc? (Re: [XFree86] Can't get a 7-button mouse setup correctly.)

2003-11-26 Thread Ing. Jozef Sakalos
Hi Alon,

it depends on which scripts are executed on X startup and in which order 
on your system.

I have it in /etc/X11/xdm/Xstartup - I use SuSE Linux 8.2.

You could put it also in /etc/X11/Xmodmap - here you would write only:
pointer = 1 2 3 6 7 4 5
not full xmodmap -e pointer = 1 2 3 6 7 4 5

Mind the spaces around equal sign.

Another possibility is ~/.Xmodmap.

Let me know  what place works for you.

Best regards,
Jozef
[EMAIL PROTECTED]

On Wednesday 26 November 2003 09:21, Alon Weinstein wrote:
 Hello all.

 After running xmodmap the scrollers work fine. However -- I can't
 make xmodmap run automatically -- I've tried putting a line to run it
 in ~/.xinitrc, and I still have to run it manually every time I start
 an X session -- Is there some other place I should be putting it?
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Re: Matrox G550 with one DVI, 1 CRT

2003-11-26 Thread Dr Andrew C Aitchison
On Wed, 26 Nov 2003, Stephen CS Howe wrote:

 Hi, I found your very interesting XFree config file on the mailing list.
 
 Note:If you can't be bothered reading all this, just post me your latest 
 Xfre86config, and I will look at it for hints.
 
 I am trying to get my matrox dual -head card working with a Samsung 
 Syncmaster 191T FPD and a Philips 105S 19 inch CRT monitor.
 I have got quite close, but my main problems stem from the fact that the 
 head allocation from the card is not clear, as it apparently 
 reconfigures the head allocation depending on what you connect to it.

The card calls the DVI monitor head 0, if it finds it at power on, 
otherwise the VGA head is head 0.

There is the config file 
Option SwappedHeadtrue
which reverses the head allocation.


 Anyway, I have a number of questions:-
 1Do I need Xinerama  to spread my desktop across 2 monitors ?
With the mga_drv.o driver from XFree86 yes.
If I remember correctly, the XFree86 driver on the CD that comes with the card
will do 
 2Do I need DPI working to get my LCD monitor working ? If so, are 
 Xinerama and DPI mutually exclusive?

DPI ? Do you mean DVI ?
There shouldn't be a conflict between Xinerama and DVI.
(The DVI socket will actually do DVI-A (analog) if you use the DVI-VGA 
adaptor; for some monitors the picture quality may be as good.)

If you do mean DPI, as in dots-per-inch, yes there is a problem with 
dual-head setups. If you rely on DPMS to provide the server with the
screen size, then the driver only asks the first head, and reports
those values for both screens.
I would recommend that you put a line like
DisplaySize 376 301 # millimeters
in each monitor section of the config file.
The size doesn't have to be the correct one, it may be best to multiply 
the number of pixels on each screen by the DPI, so that both monitors 
report say 75 or 100 DPI.

 3. I have the following plan to discover good settings for my monitors:-
 1. Plug in monior one only, autoconfigure from redhat GUI and save 
 XFree86 config.
 2. Remove Monitor 1 and plug in monitor 2, then rerun redhat GUI to 
 configure second monitor.
 3. Plug in both monitors, cut n paste each monitor configs from 
 individual files, and add the bits necessary for dual head to my 
 xfree86config.
 does this sound like a good plan for a no-brainer like myself ?

Seems worth a try.

-- 
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


[XFree86] Cannot start X server

2003-11-26 Thread Stephen Hilliard
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com

Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED]) (gcc
version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST
2003
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Wed Nov 26 12:01:48 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Videocard0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout gb
(**) XKB: layout: gb
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(++) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(WW) Warning, couldn't open module bitmap
(II) UnloadModule: bitmap
(EE) Failed to load module bitmap (module does not exist, 0)
(II) LoadModule: pcidata
(WW) Warning, couldn't open module pcidata
(II) UnloadModule: pcidata
(EE) Failed to load module pcidata (module does not exist, 0)

Fatal server error:
Unable to load required base modules, Exiting...




Im having a few problems as my RedHat 9 machine will not start X server
anymore.  Not sure what has caused the problem

It is having problems loading the modules, when I looked in /usr/X11R6/lib I
could not access the modules directory, it said there was an Input/Output
Error.

Something has got messed up, is there a simple way to reinstall X that could
fix the problem?

Thanks

Stephen


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.543 / Virus Database: 337 - Release Date: 21/11/2003
 


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


[XFree86] Tekbul internet Rehberi - iyi bayramlar.!

2003-11-26 Thread Tekbul Duyurular
Tüm islam aleminin Ramazan bayrami kutlu olsun.!

Beraber nice bayramlara ...


TEKBUL.COM Administrator
http://www.tekbul.com

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


[XFree86] problems with 2.6.0-test10 / xfree86 4.3.0

2003-11-26 Thread Jodok Batlogg
sometimes (after working for a while) my x-server suddenly crashes

i attached the logfile

thanks!

jodok

ps.: i hope it's right to send such errormessages to you?

--
jodok batlogg
solution2u.net gmbh · hof 4 · a-6861 alberschwende
fon +43 5579 85777-65 · fax -77 · mobil +43 699 11841546
http://solution2u.net/ · [EMAIL PROTECTED]
have a nice day 


XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-gentoo-r6 i686 [ELF] 
Build Date: 26 October 2003
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Wed Nov 26 14:01:51 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 0 (0)
(**) |   |--Monitor IBM ThinkPad TFT
(**) |   |--Device ATI Radeon Mobility #0
(**) |--Screen Screen 1 (1)
(**) |   |--Monitor Sony SDM N50
(**) |   |--Device ATI Radeon Mobility #1
(**) |--Input Device Trackpoint
(**) |--Input Device Bluetooth Mouse
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc102
(**) XKB: model: pc102
(**) Option XkbLayout de
(**) XKB: layout: de
(**) Option XkbVariant nodeadkeys
(**) XKB: variant: nodeadkeys
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to 
/usr/X11R6/lib/X11/fonts/Type1,/usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi,/usr/X11R6/lib/X11/fonts/100dpi,/usr/X11R6/lib/X11/fonts/TTF,/usr/X11R6/lib/X11/fonts/truetype,/usr/X11R6/lib/X11/fonts/ukr,/usr/X11R6/lib/X11/fonts/cyrillic,/usr/X11R6/lib/X11/fonts/Speedo
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(**) ModulePath set to /usr/X11R6/lib/modules
(**) Option Xinerama on
(**) Xinerama: enabled
Using vt 7
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8000fd2c, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card , rev 04 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 04 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,2482 card 1014,0220 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,2484 card 1014,0220 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,2487 card 1014,0220 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev 42 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,248c card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,248a card 1014,0220 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,2483 card 1014,0220 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2485 card 1014,0508 rev 02 class 04,01,00 hdr 00
(II) PCI: 00:1f:6: chip 8086,2486 card 1014,0227 rev 02 class 07,03,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c57 card 1014,0509 rev 00 class 03,00,00 hdr 00
(II) PCI: 02:00:0: chip 1180,0476 card 4000, rev 80 class 06,07,00 hdr 82
(II) PCI: 02:00:1: chip 1180,0476 card 4800, rev 80 class 06,07,00 hdr 82
(II) PCI: 02:02:0: chip 1260,3873 card 1668,0406 rev 01 class 02,80,00 hdr 00
(II) PCI: 02:08:0: chip 8086,1031 card 1014,0209 rev 42 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,7), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1  0   0x3000 - 0x30ff (0x100) IX[B]
[1] -1  0   0x3400 - 0x34ff (0x100) IX[B]
[2] -1 

[XFree86] Matrox Interlaced Mode?

2003-11-26 Thread Michael Keller
Hello List!

I've a Problem with my X Configuration. 
I want to switch my Matrox Millenium G200 Graphics Adapter into
interlaced mode, but it won't do that. 

I try to connect a RGB-TFT Module (It's only a TFT Module, not a real
Screen) to my Graphics Adapter as shown here:
http://home1.gte.net/bs/sharp2.html
Due to the fact that there are existing modelines for the MGA.MON file
in WinXX I think that there also have to be working modelines for that
in XFree, because i really don't want to run Win on this machine...

I just need a TV-like RGB NTSC Output as shown here:
http://www.sput.nl/hardware/tv-x.html

And so i copied some modelines from there:
http://www.unix-ag.uni-kl.de/~pfeffer/tvout/
an tried to get that work...

But my X server doesn't like these modelines (bad mode click/ interlace/
doublescan). 

Whats wrong with it?

My XF86Config (the necessary parts of it):

Section Monitor
  Identifier   Monitor[0]
  ModelNameLQ5AW116
  VendorName   Sharp
modeline ntsc_320x240 6.04186 320 328 352 384 240 244 247 262
-hsync -vsync # H 15734 [Hz], V 60.0534 [Hz]
modeline ntsc_400x300 7.55232 400 408 448 480 300 398 404 525 -hsync
-vsync interlace # H 15734 [Hz], V 59.939 [Hz]
modeline ntsc_512x384 9.69214 512 528 568 616 384 440 446 525 -hsync
-vsync interlace # H 15734 [Hz], V 59.939 [Hz]
modeline ntsc_640x480 12.2096 640 664 720 776 480 488 494 525 -hsync
-vsync interlace  # H 15734 [Hz], V 59.939 [Hz]
modeline ntsc_720x480 13.72 720 744 808 872 480 488 494 525 -hsync
-vsync interlace # H 15734 [Hz], V 59.939 [Hz]
#modeline ntsc_640x242 12.7 640 656 744 808 242 246 251 264
-hsync -vsync interlace
modeline ntsc_320x242 6.04186 320 328 352 384 242 245 248 262 -hsync
-vsync # H 15734 [Hz], V 60.0534 [Hz]
modeline ntsc_640x484 12.0837 640 656 704 768 484 490 496 525 -hsync
-vsync interlace # H 15734 [Hz], V 59.939 [Hz]
Modeline [EMAIL PROTECTED] 17.62 800 832 896 928 600 614 617 631 interlace
EndSection


Section Device
  BoardNameMGA G200 AGP
  BusID1:0:0
  Driver   mga
  Identifier   Device[0]
  VideoRam  8192
  VendorName   Matrox
EndSection



Section Screen
  DefaultDepth  16
 SubSection Display
Depth  24
Modes  ntsc_320x240 ntsc_400x300 ntsc_512x384
ntsc_640x480 ntsc_720x480 ntsc_320x242 ntsc_640x484
 EndSubSection
 SubSection Display
Depth  16
Modes  [EMAIL PROTECTED] ntsc_320x240 ntsc_400x300
ntsc_512x384 ntsc_640x480 ntsc_720x480 ntsc_320x242
ntsc_640x484
 EndSubSection
 SubSection Display
Depth  8
Modes   ntsc_640x242 ntsc_320x240 ntsc_400x300
ntsc_512x384 ntsc_640x480 ntsc_720x480 ntsc_320x242
ntsc_640x484
 EndSubSection

 Device   Device[0]
 Identifier   Screen[0]
 Monitor  Monitor[0]
EndSection



And the errorlog of the X-Server:


(II) MGA: driver for Matrox chipsets: mga2064w, mga1064sg, mga2164w,
mga2164w AGP, mgag100, mgag100 PCI, mgag200, mgag200 PCI, mgag400,
mgag550
(--) Chipset mgag200 found
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor=The XFree86 Project
compiled for 4.3.0, module version = 0.1.0
(--) MGA(0): Chipset: mgag200
(II) Loading /usr/X11R6/lib/modules/drivers/mga_hal_drv.o
(II) Module mga_hal: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
(==) MGA(0): Matrox HAL module used
(**) MGA(0): Depth 16, (--) framebuffer bpp 16
(==) MGA(0): RGB weight 565
(==) MGA(0): Using AGP 1x mode
(--) MGA(0): Linear framebuffer at 0xE000
(--) MGA(0): MMIO registers at 0xDC00
(--) MGA(0): Pseudo-DMA transfer window at 0xDD00
(==) MGA(0): BIOS at 0xC
(--) MGA(0): Video BIOS info block at offset 0x07A60
(--) MGA(0): Found and verified enhanced Video BIOS info block
(**) MGA(0): VideoRAM: 8192 kByte
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.2.0
(==) MGA(0): Write-combining range (0xe000,0x80)
(II) MGA(0): I2C bus DDC initialized.
(II) MGA(0): I2C device DDC:ddc2 registered at address 0xA0.
(II) MGA(0): I2C device DDC:ddc2 removed.
(II) MGA(0): I2C device DDC:ddc2 registered at address 0xA0.
(II) MGA(0): I2C device DDC:ddc2 removed.
(II) MGA(0): I2C Monitor info: 0x8534c00
(II) MGA(0): Manufacturer: MAX  Model: 1b6c  Serial#: 16584
(II) MGA(0): Year: 1998  Week: 30
(II) MGA(0): EDID Version: 1.0
(II) MGA(0): Analog Display Input,  Input Voltage Level: 0.714/0.286 V
(II) MGA(0): Sync:  Separate
(II) MGA(0): Max H-Image Size [cm]: horiz.: 32  vert.: 24
(II) MGA(0): Gamma: 1.50
(II) MGA(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
(II) MGA(0): redX: 0.618 redY: 0.343   greenX: 0.272 greenY: 0.596
(II) MGA(0): blueX: 0.142 blueY: 0.062   whiteX: 

Re: [XFree86] problems with 2.6.0-test10 / xfree86 4.3.0

2003-11-26 Thread gustavo
 Hello Jodok.

 I'm not an expecialist on X-serever, but after see your XFree86.0.log, 
in the end, it say you:
 Could not init font path element /usr/X11R6/lib/X11/fonts/TTF, 
removing from list!
 Could not init font path element /usr/X11R6/lib/X11/fonts/truetype, 
removing from list!
So I believe that you try mont this fonts in the 
'/etc/X11/XF86Config-4', so firts remove it
(or comment) .

 I sugest to, to update to XFree 4.3 if you didn't.

 regards
  Gustavo
Jodok Batlogg wrote:

sometimes (after working for a while) my x-server suddenly crashes

i attached the logfile

thanks!

jodok

ps.: i hope it's right to send such errormessages to you?



XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-gentoo-r6 i686 [ELF] 
Build Date: 26 October 2003
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Wed Nov 26 14:01:51 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 0 (0)
(**) |   |--Monitor IBM ThinkPad TFT
(**) |   |--Device ATI Radeon Mobility #0
(**) |--Screen Screen 1 (1)
(**) |   |--Monitor Sony SDM N50
(**) |   |--Device ATI Radeon Mobility #1
(**) |--Input Device Trackpoint
(**) |--Input Device Bluetooth Mouse
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc102
(**) XKB: model: pc102
(**) Option XkbLayout de
(**) XKB: layout: de
(**) Option XkbVariant nodeadkeys
(**) XKB: variant: nodeadkeys
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to /usr/X11R6/lib/X11/fonts/Type1,/usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi,/usr/X11R6/lib/X11/fonts/100dpi,/usr/X11R6/lib/X11/fonts/TTF,/usr/X11R6/lib/X11/fonts/truetype,/usr/X11R6/lib/X11/fonts/ukr,/usr/X11R6/lib/X11/fonts/cyrillic,/usr/X11R6/lib/X11/fonts/Speedo
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(**) ModulePath set to /usr/X11R6/lib/modules
(**) Option Xinerama on
(**) Xinerama: enabled
Using vt 7
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8000fd2c, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card , rev 04 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 04 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,2482 card 1014,0220 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,2484 card 1014,0220 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,2487 card 1014,0220 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev 42 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,248c card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,248a card 1014,0220 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,2483 card 1014,0220 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2485 card 1014,0508 rev 02 class 04,01,00 hdr 00
(II) PCI: 00:1f:6: chip 8086,2486 card 1014,0227 rev 02 class 07,03,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c57 card 1014,0509 rev 00 class 03,00,00 hdr 00
(II) PCI: 02:00:0: chip 1180,0476 card 4000, rev 80 class 06,07,00 hdr 82
(II) PCI: 02:00:1: chip 1180,0476 card 4800, rev 80 class 06,07,00 hdr 82
(II) PCI: 02:02:0: chip 1260,3873 card 1668,0406 rev 01 class 02,80,00 hdr 00
(II) PCI: 02:08:0: chip 8086,1031 card 1014,0209 rev 42 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,7), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x 

[XFree86] Upgraded to Xfree86 4.3 and now it cannot open glide2x

2003-11-26 Thread Fabio Buitrago








Hi All, 



I am working with a graphics card
i82865G and to have the drivers I upgraded to 4.3 (from 4.2). 



When I try to configure it I get the error from logfile: 



(II) LoadModule: glide

(II) Loading /usr/X11R6/lib/modules/drivers/glide_drv.o

(II) Module glide: vendor=The XFree86 Project

 compiled for 4.3.0,
module version = 1.0.0

 Module class: XFree86
Video Driver

 ABI class: XFree86
Video Driver, version 0.6

(II) Loading sub module glide2x

(II) LoadModule: glide2x

(WW) Warning, couldn't open module glide2x

(II) UnloadModule: glide2x

(EE) Glide driver:



Could not load the shared library file for Glide:
libglide2x.so! 



I did not find the file libglide2x.so
under usr/lib .. 



If I use SaX2 (from suse linux) I am able to reforce it to choose the
grphics card Intel- i830 but when I start the Xwindow it opens in grey
background and it just hangs .. I then need to unplug the PC to be able to
restart it. (not even Ctrl-Atl-del works)



Attached is the logfile



Any idea will be appreciated !!












XFree86.0.log
Description: Binary data


[XFree86] ATI FireGL4 drivers

2003-11-26 Thread Lloyd A Treinish
Does anyone know if a driver for the ATI FireGL4 card suitable for XFree86
4.3.0 and the 2.4.20-18.9 kernel (RedHat 9) is available?  The latest
driver (11/26/2002) from ATI (binary only) does not work (a whole list of
incompatibilities).  It was built for XFree86 4.2.0 and libc 6.2 (glibc
2.2).  ATI does provide newer drivers, but only for their newer cards.
Those drivers don't appear to work either with this older card.

Thanks.

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


[XFree86] Tekbul internet Rehberi - iyi bayramlar.!

2003-11-26 Thread Tekbul Duyurular
Tüm islam aleminin Ramazan bayrami kutlu olsun.!

Beraber nice bayramlara ...


TEKBUL.COM Administrator
http://www.tekbul.com

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


Re: [XFree86] ATI FireGL4 drivers

2003-11-26 Thread Alan Hourihane
On Wed, Nov 26, 2003 at 11:09:33AM -0500, Lloyd A Treinish wrote:
 Does anyone know if a driver for the ATI FireGL4 card suitable for XFree86
 4.3.0 and the 2.4.20-18.9 kernel (RedHat 9) is available?  The latest
 driver (11/26/2002) from ATI (binary only) does not work (a whole list of
 incompatibilities).  It was built for XFree86 4.2.0 and libc 6.2 (glibc
 2.2).  ATI does provide newer drivers, but only for their newer cards.
 Those drivers don't appear to work either with this older card.

We have no idea what ATI's own drivers do or do not support.

Your best contacting ATI.

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


[XFree86] Call India for 0.1995 Pakistan for 0.25

2003-11-26 Thread Sohna Watan
Title: Sohna Watan









You have received this email because you have
signed up on our 
website or one of our affiliates to receive discounts of up to 80% on 
everything from software to cars. If you wish to be excluded from our
service 
please visit our website and we will be glad to take you
off.


[XFree86] Tekbul internet Rehberi - iyi bayramlar.!

2003-11-26 Thread Tekbul Duyurular
Tüm islam aleminin Ramazan bayrami kutlu olsun.!

Beraber nice bayramlara ...


TEKBUL.COM Administrator
http://www.tekbul.com

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


[XFree86] error when building mesa

2003-11-26 Thread Peppe
This is what I get:

Make[5]: Entering directory `/home/giuseppe/cvs/build/lib/GL/mesa/src/X86'
rm -f common_x86_asm.i
cpp -Dlinux -D__i386__ -D_POSIX_C_SOURCE=199309L
-D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE   
   
-D_GNU_SOURCE-D__ELF__ -DMALLOC_0_RETURNS_NULL 
-DGLXEXT -DXF86DRI -DGLX_DIRECT_RENDERING -DGLX_USE_DLOPEN -DGLX_USE_MESA  
-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM 
-I../../../../../exports/include -I../../../../../include/extensions 
-I../../../../../extras/Mesa/src-I../../../../../extras/Mesa/src/X86   
  
-I../../../include   common_x86_asm.S | \
grep -v '^\#'  common_x86_asm.i
cc1: error: invalid option `tune=pentiumpro'
make[5]: *** [common_x86_asm.o] Error 1

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


Re: [XFree86] Installation failed couldn't find pam_appl.h

2003-11-26 Thread [EMAIL PROTECTED]
Joshua Brickel schrieb:
Hi,

 

When I tried to install Xfree86 version 4.3 the installation failed with 
a message that it could not find the pam_appl.h file.  I am using debian 
3.0.  I was wondering if anyone knows what library this is connected to 
and where I would get the files that are needed.
[EMAIL PROTECTED]:~$ apt-cache search pam
omissions
libpam0g-dev - Development files for PAM
more omissions
 

Thanks,

 

Joshua Brickel

AlphaCell Wireless

System Validation, Team Leader

22 Zarhin St.

Industrial Area, Raanana,  43662

Israel

Tel:   +972-9-769-9836

Fax:  +972-9-769-9665

 
Shalom!
wij


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


[XFree86] Help !!!

2003-11-26 Thread Sisco



Hello,

I´ im writing you from Barcelona, Spain. 

I have some trouble installing "X" in my linux 
system (Mandrake 9.1), based on a Pentium IV, with an ATI Radeon 7000 Card and a 
LG Studioworks 700S monitor.
I have 512 Mb of memory, with a 80 GB hard disc, 
who is half-used by Windows XP and Linux.

I´ m not a linux expert and I don´ t understand 
where is the problem.
I send you my /etc/X1/XF86Config-4 file and the log 
file : /var/log/Xfree86.0.log.

Thank you for all.
Francisco Martínez


Xfree86.0.log
Description: Binary data


XF86Config-4
Description: Binary data


Re: [XFree86] Radeon 9000 and XV

2003-11-26 Thread George Socker
OK, I tried changing it and rebuilding. It didn't fix it. The WinXP 
driver doesn't have any problems, though. I can send you some video, 
but files are very large(285MB) for just a couple of minutes.  

On Tuesday, November 25 2003 09:45 am, Alex Deucher wrote:
 I noticed that the other night as I was working on the driver, but I
 didn't have any content large enough to test it with.  I think it
 might be a hold over from the old r128 driver.  switch it to
 2048x2048 and give it a shot.  It shouldn't hurt anything.  If it
 works we can submit a patch to get it fixed in future releases.

 Alex

 Hello.

 I have a HD-2000 HDTV PCI card. When using the XVideo extension to
 display HDTV format video, the right third of the image is a pink
 bar. I have looked through the driver source and noticed that
 although the maximum image size in radeon_video.c is 2048x2048 , the
 offscreen image

 size is limited to 1024x1024. Is this likely the cause of the
 problem? If so, will it cause problems if I change it to 2048x2048? I
 have a Radeon 9000 with 64MB ram, and am running X at 1152x864 @
 75HZ.



pgp0.pgp
Description: signature


Re: [XFree86] Radeon 9000 and XV

2003-11-26 Thread Thomas Winischhofer
George Socker wrote:
OK, I tried changing it and rebuilding. It didn't fix it. The WinXP 
driver doesn't have any problems, though. I can send you some video, 
XP might use some Direct Draw YUV-Blit stuff instead of the video 
overlay.

but files are very large(285MB) for just a couple of minutes.  

On Tuesday, November 25 2003 09:45 am, Alex Deucher wrote:

I noticed that the other night as I was working on the driver, but I
didn't have any content large enough to test it with.  I think it
might be a hold over from the old r128 driver.  switch it to
2048x2048 and give it a shot.  It shouldn't hurt anything.  If it
works we can submit a patch to get it fixed in future releases.
Alex


Hello.

I have a HD-2000 HDTV PCI card. When using the XVideo extension to
display HDTV format video, the right third of the image is a pink
bar. 
This looks very much like the overlay simply isn't capable of that size. 
Especially if the pitch is OK (read: the remaining contents of the video 
is displayed in order). It could very well be that the overlay can only 
deal with videos = 1280 in horizontal size.

I don't know anything about radeon hardware, but on some other hardware, 
there sometimes exists a register for the line buffer length (or FIFO 
size or the like). Perhaps such a thing exists on the radeon, and needs 
adjustment for larger videos.

Other issues that usually influence the overlay capabilities are dot 
clock and display resolution. However, in such cases, overlays mostly 
show a different effect, like flashing dots, rather than missing areas.

I have looked through the driver source and noticed that
although the maximum image size in radeon_video.c is 2048x2048 , the
offscreen image
size is limited to 1024x1024. Is this likely the cause of the
problem? If so, will it cause problems if I change it to 2048x2048? I
have a Radeon 9000 with 64MB ram, and am running X at 1152x864 @
75HZ.
Thomas

--
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] ATI FireGL4 drivers

2003-11-26 Thread GS HUNT
My first choice would to use the dirivers supplied by Xfree..

Xfree 4.3.0 has support for 3d ATI Drivers...which are almost as fast as the 
ATI binaries... not to mention they are more stable..

However if you really need the ATI binaries... try downloading  3.2.8 fglrx 
drivers...which seemed to be the unified driver for many of the ATI cards.. 
hopefully it will be compatible.


http://www2.ati.com/drivers/firegl/fglrx-glc22-4.3.0-3.2.8.i586.rpm

If you don't have a precompiled matching kernel module... you will have to 
have kernel source so it can link its binaries correctly.

Gary


On November 26, 2003 04:09 pm, Lloyd A Treinish wrote:
 Does anyone know if a driver for the ATI FireGL4 card suitable for XFree86
 4.3.0 and the 2.4.20-18.9 kernel (RedHat 9) is available?  The latest
 driver (11/26/2002) from ATI (binary only) does not work (a whole list of
 incompatibilities).  It was built for XFree86 4.2.0 and libc 6.2 (glibc
 2.2).  ATI does provide newer drivers, but only for their newer cards.
 Those drivers don't appear to work either with this older card.

 Thanks.

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

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


[XFree86] XClient Doubt

2003-11-26 Thread CPD do CCBEU



Dear Sirs

Whenever I made login in the XFree86 is showed the 
Ice Worm as interface. I would like to know 
how can I alter the interface standard to Kde or 
Gnome.  
Thank you very much


Re: [XFree86] error when building mesa

2003-11-26 Thread GS HUNT
That problem looks like a compiler problem...

your compiler doesn't support pII tuning...

Try getting a newer c++ compiler..

Gary




On November 26, 2003 09:33 pm, Peppe wrote:
 This is what I get:

 Make[5]: Entering directory `/home/giuseppe/cvs/build/lib/GL/mesa/src/X86'
 rm -f common_x86_asm.i
 cpp -Dlinux -D__i386__ -D_POSIX_C_SOURCE=199309L
 -D_POSIX_SOURCE -D_XOPEN_SOURCE -D_BSD_SOURCE -D_SVID_SOURCE
 -D_GNU_SOURCE-D__ELF__ -DMALLOC_0_RETURNS_NULL
 -DGLXEXT -DXF86DRI -DGLX_DIRECT_RENDERING -DGLX_USE_DLOPEN -DGLX_USE_MESA
 -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM
 -I../../../../../exports/include -I../../../../../include/extensions
 -I../../../../../extras/Mesa/src   
 -I../../../../../extras/Mesa/src/X86 -I../../../include   common_x86_asm.S
 | \
 grep -v '^\#'  common_x86_asm.i
 cc1: error: invalid option `tune=pentiumpro'
 make[5]: *** [common_x86_asm.o] Error 1

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

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


Re: [XFree86] server not starting

2003-11-26 Thread Christopher Thom
Quoth alok bansal:

 Could not init font path element Unix/:7100, removing from list!

 Fatal server error:
 could not open default font 'fixed'

make sure xfs (the font server) is started before you try to start X.
This can usually be accompanied by making sure /etc/init.d/xfs start is
called before xdm.

on a debian system, you just make sure there is a link from
/etc/rc5.d/S90xfs to /etc/init.d/xfs.  Dunno how redhat does it though...

cheers
chris
-- 
-
|   |
|  TELESCOPE, n.|
|  A device having a relation to the eye similar to that of the |
|  telephone to the ear, enabling distant objects to plague us with a   |
|  multitude of needless details. Luckily it is unprovided with a bell  |
|  summoning us to the sacrifice.   |
| -- Ambrose Bierce, The Devil's Dictionary   |
|   |
-
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] ATI FireGL4 drivers

2003-11-26 Thread Ian Romanick
GS HUNT wrote:

My first choice would to use the dirivers supplied by Xfree..

Xfree 4.3.0 has support for 3d ATI Drivers...which are almost as fast as the 
ATI binaries... not to mention they are more stable..

However if you really need the ATI binaries... try downloading  3.2.8 fglrx 
drivers...which seemed to be the unified driver for many of the ATI cards.. 
hopefully it will be compatible.

http://www2.ati.com/drivers/firegl/fglrx-glc22-4.3.0-3.2.8.i586.rpm

If you don't have a precompiled matching kernel module... you will have to 
have kernel source so it can link its binaries correctly.
The drivers you mention are for the Radeon based FireGL cards.  Lloyd 
was asking about the older pre-Radeon based FireGL cards.  There are 
*no* drivers in the XFree86 source tree for those cards.  The two chip 
families are as different as x86 and PowerPC. :)

On November 26, 2003 04:09 pm, Lloyd A Treinish wrote:

Does anyone know if a driver for the ATI FireGL4 card suitable for XFree86
4.3.0 and the 2.4.20-18.9 kernel (RedHat 9) is available?  The latest
driver (11/26/2002) from ATI (binary only) does not work (a whole list of
incompatibilities).  It was built for XFree86 4.2.0 and libc 6.2 (glibc
2.2).  ATI does provide newer drivers, but only for their newer cards.
Those drivers don't appear to work either with this older card.
Thanks.


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


Re: [XFree86] server not starting

2003-11-26 Thread Satej Ankolekar
HI alok
 This could mean a lot of things. This happend to me before twice.
The first time it works when I commented out the line in /etc/X11/XF86Config
that dealt with FontPath
The second time my permissions on the /tmp folder were wrong. Oh GOD! I
don't want to remember those days . The worst in my life. I finally decided
to reinstall Redhat linux 7.1!

Christopher Thom wrote:

 Quoth alok bansal:

  Could not init font path element Unix/:7100, removing from list!
 
  Fatal server error:
  could not open default font 'fixed'

 make sure xfs (the font server) is started before you try to start X.
 This can usually be accompanied by making sure /etc/init.d/xfs start is
 called before xdm.

 on a debian system, you just make sure there is a link from
 /etc/rc5.d/S90xfs to /etc/init.d/xfs.  Dunno how redhat does it though...

 cheers
 chris
 --
 -
 |   |
 |  TELESCOPE, n.|
 |  A device having a relation to the eye similar to that of the |
 |  telephone to the ear, enabling distant objects to plague us with a   |
 |  multitude of needless details. Luckily it is unprovided with a bell  |
 |  summoning us to the sacrifice.   |
 | -- Ambrose Bierce, The Devil's Dictionary   |
 |   |
 -
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86

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


[XFree86] Problems getting Matrox G250 work with Xfree on Debian. Help Needed

2003-11-26 Thread Abhijit Desai
Hi
I am using a XFree on a debian unix machine. The Graphic card that I am 
having is Matrox G250 AGP card. When I install XFree on this machine it 
works fine. But when I start XFree using startx it gives a blank screen and 
startx does not work.

Please help me in getting the Matrox G250 AGP card with XFree. I am 
attaching the XFree
I am attaching the Xfree log file and the XF86-Config-4 files. Please have a 
look at it and lemme know what I need to do. Please help me in getting this 
working. Please lemme know if there is any patch that I can use. I also 
tried using XFree4.3 too but still does not work.

Thanks
Abhijit
XFree Log file
---
This is a pre-release version of XFree86, and is not supported in any way. 
Bugs may be reported to [EMAIL PROTECTED] and patches submitted to 
[EMAIL PROTECTED] Before reporting bugs in pre-release versions, please 
check the latest version in the XFree86 CVS repository

(http://www.XFree86.Org/cvs)

XFree86 Version 4.1.0.1 / X Window System

(protocol Version 11, revision 0, vendor release 6510)

Release Date: 21 December 2001

If the server is older than 6-12 months, or if your card is

newer than the above date, look for a newer version before

reporting problems. (See http://www.XFree86.Org/FAQ)

Build Operating System: Linux 2.4.20-8um i686 [ELF]

Module Loader present

(==) Log file: /var/log/XFree86.0.log, Time: Sun Nov 23 19:48:25 2003

(==) Using config file: /etc/X11/XF86Config-4

Markers: (--) probed, (**) from config file, (==) default setting,

(++) from command line, (!!) notice, (II) informational,

(WW) warning, (EE) error, (NI) not implemented, (??) unknown.

(==) ServerLayout Default Layout

(**) |--Screen Default Screen (0)

(**) | |--Monitor Generic Monitor

(**) | |--Device Generic Video Card

(**) |--Input Device Generic Keyboard

(**) Option XkbRules xfree86

(**) XKB: rules: xfree86

(**) Option XkbModel pc104

(**) XKB: model: pc104

(**) Option XkbLayout us

(**) XKB: layout: us

(==) Keyboard: CustomKeycode disabled

(**) |--Input Device Configured Mouse

(**) |--Input Device Generic Mouse

(WW) The directory /usr/lib/X11/fonts/cyrillic does not exist.

Entry deleted from font path.

(**) FontPath set to 
unix/:7100,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/Speedo,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi

(==) RgbPath set to /usr/X11R6/lib/X11/rgb

(==) ModulePath set to /usr/X11R6/lib/modules

(--) using VT number 7

(WW) Cannot open APM

(II) Module ABI versions:

XFree86 ANSI C Emulation: 0.1

XFree86 Video Driver: 0.4

XFree86 XInput driver : 0.2

XFree86 Server Extension : 0.1

XFree86 Font Renderer : 0.2

(II) Loader running on linux

(II) LoadModule: bitmap

(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a

(II) Module bitmap: vendor=The XFree86 Project

compiled for 4.1.0.1, module version = 1.0.0

Module class: XFree86 Font Renderer

ABI class: XFree86 Font Renderer, version 0.2

(II) Loading font Bitmap

(II) LoadModule: pcidata

(II) Loading /usr/X11R6/lib/modules/libpcidata.a

(II) Module pcidata: vendor=The XFree86 Project

compiled for 4.1.0.1, module version = 0.1.0

ABI class: XFree86 Video Driver, version 0.4

(II) PCI: Probing config type using method 1

(II) PCI: Config type is 1

(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000

(II) PCI: PCI scan (all values are in hex)

(II) PCI: 00:00:0: chip 8086,1a21 card , rev 01 class 06,00,00 hdr 
00

(II) PCI: 00:01:0: chip 8086,1a23 card , rev 01 class 06,04,00 hdr 
01

(II) PCI: 00:02:0: chip 8086,1a24 card , rev 01 class 06,04,00 hdr 
01

(II) PCI: 00:1e:0: chip 8086,2418 card , rev 02 class 06,04,00 hdr 
01

(II) PCI: 00:1f:0: chip 8086,2410 card , rev 02 class 06,01,00 hdr 
80

(II) PCI: 00:1f:1: chip 8086,2411 card 8086,2411 rev 02 class 01,01,80 hdr 
00

(II) PCI: 00:1f:2: chip 8086,2412 card 8086,2412 rev 02 class 0c,03,00 hdr 
00

(II) PCI: 00:1f:3: chip 8086,2413 card 8086,2413 rev 02 class 0c,05,00 hdr 
00

(II) PCI: 01:05:0: chip 1013,6003 card 103c,124d rev 01 class 04,01,00 hdr 
00

(II) PCI: 01:0b:0: chip 1113,1211 card 103c,9207 rev 10 class 02,00,00 hdr 
00

(II) PCI: 02:1f:0: chip 8086,1360 card , rev 02 class 06,04,00 hdr 
01

(II) PCI: 03:00:0: chip 8086,1161 card 8086,1161 rev 01 class 08,00,20 hdr 
80

(II) PCI: 03:09:0: chip 9005,008f card 103c,1241 rev 02 class 01,00,00 hdr 
00

(II) PCI: 04:00:0: chip 102b,0521 card 102b,ca6c rev 03 class 03,00,00 hdr 
00

(II) PCI: End of PCI scan

(II) LoadModule: scanpci

(II) Loading /usr/X11R6/lib/modules/libscanpci.a

(II) Module scanpci: vendor=The XFree86 Project

compiled for 4.1.0.1, module version = 0.1.0

ABI class: XFree86 Video Driver, version 0.4

(II) UnloadModule: scanpci

(II) Unloading /usr/X11R6/lib/modules/libscanpci.a

(II) Host-to-PCI bridge:

(II) PCI-to-ISA bridge:

(II) PCI-to-PCI bridge:

(II) 

Re: [XFree86] Can't get a 7-button mouse setup correctly.

2003-11-26 Thread Ing. Jozef Sakalos
Hi Owen,

On Tuesday 25 November 2003 21:59, OS wrote:
Do you have any
 experience with the Logitech mice ? 

No, I don't. 

 Should I be using a different 
 protocol ? IMPS/2 and ExplorerPS/2 don't work at all. 

Try another protocol. Protocol has to be correct before anything else. I 
tried to use another protocol with M$ IntelliMouse. Movement, 3 buttons 
and wheel worked but not other buttons. I had to choose ExplorerPS/2 to 
make them working.

What protocol to use for Logitech would be good question for developers, 
I guess.

 Is there 
 anything I can do to see what is coming from the mouse given that xev 
 shows absolutely nothing for buttons 4, 5, 6  7. 

I have experience that if you do not see mouse button presses in xev you 
can forget it will work. I don't know of any other tool that goes more 
to the hardware.

 I am coming to the conclusion that Logitech mice will never be fully
 supported by X

This is question or remark for developers - I really don't know.

 :-( which is a shame as M$ mice are a lot more pricey 

Just my opinion: On the contrary of Microsoft software, the Microsoft 
HARDWARE is worth the money you spend for it.

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


[XFree86] Re: I need help setting up my video card

2003-11-26 Thread Mike A. Harris
On Wed, 26 Nov 2003, Andrew Lester wrote:

Date: Wed, 26 Nov 2003 18:38:49 -0600
From: Andrew Lester [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Subject: I need help setting up my video card

Hi, I am using Red Hat Linux 9 with Xfree86 4.3 and I have a VisionTek 
Xtasy 9200 SE 128mb PCI  video card, and there are no VisionTek video 
cards, and VisionTek dosn't make drivers for linux. So I am forced to 
use my crappy Intel 845 video card, and I can't play  UT2003 with it. so 
If you could point me to drivers to it or put them in the upcoming 
release of Xfree86 I would greatly appreciate it.

Radeon PCI hardware is supported only experimentally with 3D in 
XFree86 4.3.0.  It works for some people and not at all for 
others.  It isn't clear what the problems are, and nobody is 
working on it currently, however volunteers are always welcome to 
try to pinpoint the problems on their systems.  You need to 
enable ForcePCIMode for it to work at all.

Be sure you are running the latest updates that have just been 
made available via up2date or ftp also.



-- 
Mike A. Harris

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


[XFree86] Problems with graphics chipset 852GM/855GM and LCD wide screen

2003-11-26 Thread Davide Dozza
Hi all,

I've a notebook with Intel graphics chipset 852GM/855GM and a widescreen 
LCD with resolution 1280x800.

Under mandrake 9.2 the HW is recognized as i810 and it's work but I 
can't set the resolution mode 1280x800 even if I define it as Modeline 
option.

I've tried all possible configuration came up in my mind

I've attacched both Log and XF86Config-4 files.

Any suggestion would be very appreciated.

Davide
# File generated by XFdrake.

# **
# Refer to the XF86Config man page for details about the format of
# this file.
# **

Section Files
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Mandrake 6.0 and later now use a font server independent of
# the X server to render fonts.
FontPath unix/:-1
EndSection

Section ServerFlags
AllowMouseOpenFail # allows the server to start up even if the mouse doesn't work
#DontZap # disable CrtlAltBS (server abort)
#DontZoom # disable CrtlAltKP_+/KP_- (resolution switching)
EndSection

Section Module
Load dbe # Double-Buffering Extension
Load v4l # Video for Linux
Load extmod
Load type1
Load freetype
Load glx # 3D layer
Load dri # direct rendering
EndSection

Section DRI
Mode 0666
EndSection

Section InputDevice
Identifier Keyboard1
Driver Keyboard
Option XkbModel pc105
Option XkbLayout it
Option XkbOptions 
EndSection

Section InputDevice
Identifier Mouse1
Driver mouse
Option Protocol PS/2
Option Device /dev/psaux
Option Emulate3Buttons
Option Emulate3Timeout 50
EndSection

Section Monitor
Identifier monitor1
VendorName Generic
ModelName Flat Panel 1024x768
HorizSync 31.5-57
VertRefresh 40-70

# Sony Vaio C1(X,XS,VE,VN)?
# 1024x480 @ 85.6 Hz, 48 kHz hsync
ModeLine 1024x48065.00 1024 1032 1176 1344   480  488  494  563 -hsync -vsync

# TV fullscreen mode or DVD fullscreen output.
# 768x576 @ 79 Hz, 50 kHz hsync
ModeLine 768x576 50.00  768  832  846 1000   576  590  595  630

# 768x576 @ 100 Hz, 61.6 kHz hsync
ModeLine 768x576 63.07  768  800  960 1024   576  578  590  616

Mode 1280x800_60.00
# 1280x800 @ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
DotClock 83.46
HTimings 1280 1344 1480 1680
VTimings 800 801 804 828
Flags-HSync +Vsync
EndMode

# 1280x800 @ 60.00 Hz (GTF) hsync: 49.68 kHz; pclk: 83.46 MHz
#Modeline 1280x800_60.00  83.46  1280 1344 1480 1680  800 801 804 828  -HSync 
+Vsync
EndSection

Section Device
Identifier device1
VendorName Intel Corporation
BoardName Intel 85x
Driver i810
BusID PCI:0:2:0
Option DPMS
EndSection

Section Screen
Identifier screen1
Device device1
Monitor monitor1
DefaultColorDepth 16

Subsection Display
Depth 8
EndSubsection

Subsection Display
Depth 15
EndSubsection

Subsection Display
Depth 16
Modes 1280x800_60.00
EndSubsection

Subsection Display
Depth 24
Modes 1280x800_60.00
EndSubsection
EndSection

Section ServerLayout
Identifier layout1
Screen screen1
InputDevice Keyboard1 CoreKeyboard
InputDevice Mouse1 CorePointer
EndSection

XFree86 Version 4.3.0
Release Date: 9 May 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.18-23mdksmp i686 [ELF] 
Build Date: 10 September 2003
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Thu Nov 27 12:59:51 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout layout1
(**) |--Screen screen1 (0)
(**) |   |--Monitor monitor1
(**) |   |--Device device1
(**) |--Input Device Keyboard1
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout it
(**) XKB: layout: it
(WW) Option XkbOptions requires an string value
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Mouse1
(**) FontPath set to unix/:-1
(==) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(**) Option AllowMouseOpenFail
Using vt 7
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The