CVS Update: xc (branch: trunk)

2003-06-11 Thread Thomas Winischhofer
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/11 04:58:28

Log message:
Missing patch

Modified files:
  xc/programs/Xserver/hw/xfree86/drivers/sis/:
init.h sis_driver.c 
  
  Revision  ChangesPath
  1.10  +3 -3  xc/programs/Xserver/hw/xfree86/drivers/sis/init.h
  1.94  +338 -274  xc/programs/Xserver/hw/xfree86/drivers/sis/sis_driver.c

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


Someone has re-implemented ucs2any.pl in C

2003-06-11 Thread Aidan Kehoe
Hi, 

In the interests of portability--their base system doesn't ship with
perl--the NetBSD people have implemented ucs2any.pl in C. There's a version
at

http://backyard.homeunix.net:8080/~ben/ucs2any/

It's worth considering including this in the XFree86 tree, if the
server-side re-encoding is a long way from being complete. 

Bye, 

- Aidan Kehoe
-- 
Parhásárd; rex quondam Pokémonorum, rex futuram Pokémonorum. 
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Someone has re-implemented ucs2any.pl in C

2003-06-11 Thread Matthias Scheler
On Wed, Jun 11, 2003 at 02:54:41PM +0100, Aidan Kehoe wrote:
 In the interests of portability--their base system doesn't ship with
 perl--the NetBSD people have implemented ucs2any.pl in C. There's a version
 at
 
 http://backyard.homeunix.net:8080/~ben/ucs2any/

I was the one who initiated rewriting ucs2any.pl as C program and would
like to ask that this program is not intergrated into the XFree86 sources
at the moment.

The version available under the URL above is far from being usable at the
moment:
- It's not portable (non-ANSI C compliant, asprintf(3), etc.)
- It crashes when used as a replacement for ucs2any.pl in a full build.

I'm in the process of sorting these issue out with the author and will
submit the program via [EMAIL PROTECTED] once the problems are fixed.

Kind regards

-- 
Matthias Scheler  http://scheler.de/~matthias/
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: iBook us-keyboard problem

2003-06-11 Thread Frank Murphy
 +#if defined (i386)  defined (SVR4)
 +/*
 + * PANIX returns DICOP standards based keycodes in using 106jp
 + * keyboard. We need to remap some keys.
 + */
 +if(xf86Info.panix106 == TRUE){
 +  switch (scanCode) {
 +  case 0x56:scanCode = KEY_BSlash2;  break;  /* Backslash */
 +  case 0x5A:scanCode = KEY_NFER; break;  /* No Kanji
 Transfer*/ +  case 0x5B:scanCode = KEY_XFER;  break;  /* Kanji
 Tranfer */ +  case 0x5C:scanCode = KEY_Yen;   break;  /* Yen curs
 pgup */ +  case 0x6B:scanCode = KEY_Left; break;  /* Cur Left
 */ +  case 0x6F:scanCode = KEY_PgUp;  break;  /* Cur PageUp */ +
  case 0x72:scanCode = KEY_AltLang;break;  /* AltLang(right) */
 +  case 0x73:scanCode = KEY_RCtrl;break;  /* not needed */ +  
}
 +} else
 +#else /* i386  SVR4 */
 +{
 +  switch (scanCode) {
 +  case 0x5c:scanCode = KEY_KP_Equal; break; /* Keypad Equal */
 +  }
 +}
 +#endif  /* !(i386  SVR4) */
}

else if (


 I'll commit this (and the rest of the patch).  Could someone test it
 and let us know if it works correctly?

Looking at the patch and xf86Events.c, I don't understand why this switch code 
is if'ed out for the i386/SVR4 case. Is that a special configuration for 
Japanese keyboards that don't have KPEQ?

Thanks for your help with this,

Frank

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


Re: iBook us-keyboard problem

2003-06-11 Thread David Dawes
On Wed, Jun 11, 2003 at 05:57:25PM +0200, Frank Murphy wrote:

 +#if defined (i386)  defined (SVR4)
 +/*
 + * PANIX returns DICOP standards based keycodes in using 106jp
 + * keyboard. We need to remap some keys.
 + */
 +if(xf86Info.panix106 == TRUE){
 +  switch (scanCode) {
 +  case 0x56:scanCode = KEY_BSlash2; break;  /* Backslash */
 +  case 0x5A:scanCode = KEY_NFER;break;  /* No Kanji
 Transfer*/ +  case 0x5B:scanCode = KEY_XFER; break;  /* Kanji
 Tranfer */ +  case 0x5C:scanCode = KEY_Yen;  break;  /* Yen curs
 pgup */ +  case 0x6B:scanCode = KEY_Left;break;  /* Cur Left
 */ +  case 0x6F:scanCode = KEY_PgUp; break;  /* Cur PageUp */ +
  case 0x72:scanCode = KEY_AltLang;   break;  /* AltLang(right) */
 +  case 0x73:scanCode = KEY_RCtrl;   break;  /* not needed */ +  
}
 +} else
 +#else /* i386  SVR4 */
 +{
 +  switch (scanCode) {
 +  case 0x5c:scanCode = KEY_KP_Equal; break; /* Keypad Equal */
 +  }
 +}
 +#endif  /* !(i386  SVR4) */
}

else if (


 I'll commit this (and the rest of the patch).  Could someone test it
 and let us know if it works correctly?

Looking at the patch and xf86Events.c, I don't understand why this switch code 
is if'ed out for the i386/SVR4 case. Is that a special configuration for 
Japanese keyboards that don't have KPEQ?

It shouldn't be #if'd out for that case (I'll fix that), but the
i386/SVR4-specific case is for a platform where 0x5C (and some
other codes) is generated for other, Japanese-specific, keys.

Have you tested whether it fixes the KP_Equal problem you reported?

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


Re: status of SiS 3d?

2003-06-11 Thread Sven Luther
On Mon, Jun 02, 2003 at 09:51:00PM -0700, Alex Deucher wrote:
 --- Ian Romanick [EMAIL PROTECTED] wrote:
  
  I certainly wouldn't buy one to replace my Radeon 8500! :)  It would
  be 
  exclusively to update the drive.  It's the same reason I would be a 
  Gamma card w/an R2 rasterizer...too bad there are *none* on eBay. 
  After 
  I realized that, I pretty much give up any hopes of the gamma driver 
  ever being updated.  That is, unless 3dlabs were to give out 
  documentation for an R3 or R4 rasterizer.
  
 
 I've heard 3dlabs is pretty good about giving out docs to driver
 developers, although that was before creative labs bought them.

I know of two cases were they gave docs after creative labs bought them,
so i think this did not change their policy very much.

I may look into the gamma case once i get access to a motherboard
supporting the agp 1/2x gamma+pm3 card i have again.

Friendly,

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


Keyboard driver for X

2003-06-11 Thread Jason Kim



Hi all..
Has anyone developedkeyboard driverfor X 
?Or does anyone know current situation?

(Current X-server accesses the console directly to read 
keyboard input.. right?)

Have a nice night...


[XFree86] Cannot Start X-Server

2003-06-11 Thread rupak
Hi,
   I have a video card Intel 82845G/GL. I am installing Red Hat Linux 8 on
the system. But the X Server cannot start.
 The following is the log file:

  XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
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/)
Build Operating System: Linux 2.4.18-11smp i686 [ELF]
Build Host: daffy.perf.redhat.com

Module Loader present
OS Kernel: Linux version 2.4.18-14 ([EMAIL PROTECTED])
(gcc version 3.2 20020903 (Red Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50
EDT 2002
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: Tue Jun 10 10:27:23 2003
(EE) Unable to locate/open config file
(EE) Error from xf86HandleConfigFile()

Fatal server error:
no screens found

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]



  Somebody told me that installing Red Hat Linux 9 will solve the
problem. But can't the problem be solved with Red Hat Linux 8.
   Rupak.



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


[XFree86] Problem on redhat 7.3 an application in xterm larger than thescreen

2003-06-11 Thread lgibe


sdw0.sdw
Description: filename=text1.sdw


[XFree86] problem

2003-06-11 Thread HAMZA ZAHID
Protect your PC - Click here for McAfee.com VirusScan Online XFree86 Version 4.1.0 (Red Hat Linux release: 4.1.0-3) / X Window System
(protocol Version 11, revision 0, vendor release 6510)
Release Date: 2 June 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.7-0.13.1smp i686 [ELF]
Build Host: stripples.devel.redhat.com
Module Loader present
(==) Log file: /var/log/XFree86.0.log, Time: Wed Jun 11 14:34:56 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 XFree86 Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor E40-3
(**) |   |--Device My Video Card
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) 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.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, 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, 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 = 0x8060, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3148 card 174b,1106 rev 00 class 06,00,00 hdr 
00
(II) PCI: 00:01:0: chip 1106,b091 card , rev 00 class 06,04,00 hdr 
01
(II) PCI: 00:08:0: chip 109e,036e card , rev 11 class 04,00,00 hdr 
80
(II) PCI: 00:08:1: chip 109e,0878 card , rev 11 class 04,80,00 hdr 
80
(II) PCI: 00:0a:0: chip 1317,0985 card 1113,1216 rev 11 class 02,00,00 hdr 
00
(II) PCI: 00:10:0: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 
80
(II) PCI: 00:10:1: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 
80
(II) PCI: 00:10:2: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 
80
(II) PCI: 00:10:3: chip 1106,3104 card 1106,3104 rev 82 class 0c,03,20 hdr 
00
(II) PCI: 00:11:0: chip 1106,3177 card 174b,1106 rev 00 class 06,01,00 hdr 
80
(II) PCI: 00:11:1: chip 1106,0571 card 174b,1106 rev 06 class 01,01,8a hdr 
00
(II) PCI: 00:11:5: chip 1106,3059 card 4005,4730 rev 50 class 04,01,00 hdr 
00
(II) PCI: 01:00:0: chip 5333,8d04 card 5333,8d04 rev 00 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, 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) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0x - 0x (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0c (VGA_EN is set)
(II) Bus 1 I/O range:
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0xec00 - 0xec0f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0xe000 - 0xe7ff (0x800) MX[B]
(II) Bus -1: bridge is at (0:17:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI: (0:8:0) BrookTree unknown chipset (0x036e) rev 17, Mem @ 
0xec122000/12
(--) PCI:*(1:0:0) S3 unknown chipset (0x8d04) rev 0, Mem @ 0xec00/19, 
0xe000/27
(II) Addressable bus resource ranges are
	[0] -1	0x - 0x (0x0) MX[B]
	[1] -1	0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0xffe0 - 0x (0x20) MX[B](B)
	[1] -1	0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
	[2] -1	0x000f - 0x000f (0x1) MX[B]
	[3] -1	0x000c - 0x000e (0x3) MX[B]
	[4] -1	0x - 0x0009 (0xa) MX[B]
	[5] -1	0x - 0x (0x1) IX[B]
	[6] -1	0x - 

[XFree86] Can't install over existing X!

2003-06-11 Thread Glenn McCord
I was having a horrid time with the source so I tried out the binaries. 
I did the Xinstall.sh -check and it told me:

Checking which OS you're running...
uname reports 'Linux' version '2.4.20', architecture 'i686'.
Object format is 'ELF'.  libc version is '6.3.2' (6.3).
Binary distribution name is 'Linux-ix86-glibc23'

So I downloaded all the files, put them all in the same folder and ran 
Xinstall agian (outside X). But I get this error:

Checking which OS you're running...
uname reports 'Linux' version '2.4.20', architecture 'i686'.
Object format is 'ELF'.  libc version is '6.3.2' (6.3).
Xinstall.sh: line 1050:  1487 Segmentation fault  $TAR xzf 
$VERSTARBALL $VERSIONFILE
Warning: can't detect the bindist version
Checking for required files ...

This is on top of a Yoper version of Linux that has X 4.3.0 alredy 
installed, but I'm having some issues so I figured installing over it 
may help.

Thanks for any help,
Glenn
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Please teach me

2003-06-11 Thread Tadayuki Tomita

(B
(B
(B
(BHello,
(BI am a enginner of Network and OS and Database.
(BThe machine thatwas crashed X Server have been running 
(Bfor 3 month.
(BBut Itwas crached when it is reboot.
(BI cannot understand why it was crached.
(B
(BI send the attached file. 
(BPlease teache me how to run the Xserver 
(Bagain
(B
(B
(BRegards
(B
(BTadayuki Tomita
(B
(B

XFree86.0.log
Description: Binary data


[XFree86] Problem with PCI Geforce4 MX 440 and garbled sound (dual-head)

2003-06-11 Thread Kelly Gibson
I am running a dual-head system and I have a small problem with the
sound related to the video cards.  When sound is played on the AGP card
there doesn't seem to be any problem at all, but when I watch a video,
scroll on a web page, or open gnome-terminal and type on the pci card
(the geforce 4) it will begin to distort badly.  I have tried many
fixes to this solution not limited to:  adjusting the latency, moving
pci cards around, recompiling Xfree, and reinstalling the nvidia
driver.  My setup seems to be otherwise just fine.  I can post my
XF86Config if necessary, but I am hoping this is some known issue.

System specs:

Gentoo Linux
XFree86:  4.3.0
using Nvidia's driver
Xinerama is on (note this doesn't seem to matter)
Athlon XP 1800
512mb mem
Geforce 2
geforce 4 mx440

Other potentially relevant information:

 Bus  0, device  11, function  0:
Multimedia audio controller: Ensoniq 5880 AudioPCI (rev 2).
  IRQ 3.
  Master Capable.  Latency=248.  Min Gnt=12.Max Lat=128.
  I/O at 0xd800 [0xd83f].
 Bus  0, device  15, function  0:
VGA compatible controller: nVidia Corporation NV17 [GeForce4 MX440]
(rev 163).
  IRQ 5.
  Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
  Non-prefetchable 32 bit memory at 0x2000 [0x20ff].
  Prefetchable 32 bit memory at 0x2800 [0x2fff].
  Prefetchable 32 bit memory at 0x2100 [0x2107].
  Bus  1, device   0, function  0:
VGA compatible controller: nVidia Corporation NV11 [GeForce2 MX]
(rev 178).
  IRQ 11.
  Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
  Non-prefetchable 32 bit memory at 0xcc00 [0xccff].
  Prefetchable 32 bit memory at 0xb000 [0xb7ff].

Thank you for your time,

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


RE: [XFree86] Please teach me

2003-06-11 Thread Cynthia Grossen
Your font server isn't running.

This link has information on how to fix it.
http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/s1-x-fonts.h
tml

The best solution would be to hard-code your paths in your config
(/etc/X11/XF86Config-4) file though add the following lines to the Files
section

   FontPath   /usr/X11R6/lib/X11/fonts/misc:unscaled
   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/Speedo

-Original Message-
From: Tadayuki Tomita [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 11, 2003 8:14 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] Please teach me
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] Cannot Start X-Server

2003-06-11 Thread Cynthia Grossen
You haven't configured your X installation yet. redhat-config-xfree86 is
the command that you'll want to use for that. And no, you don't need to
upgrade to redhat 9 to solve that particular problem.

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, June 11, 2003 4:18 AM
 To: [EMAIL PROTECTED]
 Subject: [XFree86] Cannot Start X-Server
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] problem

2003-06-11 Thread Cynthia Grossen
You'll need to upgrade to 4.3. Your driver is too new for 4.1.

-Original Message-
From: HAMZA ZAHID [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 11, 2003 5:55 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] problem
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] problem with var file + can't strart x

2003-06-11 Thread Cynthia Grossen
Try checking the permissions on your /var and /var/log/ directories and make
sure that they allow write access, if they do they check the
file(var/log/Xfree86.0.log) for the same.

 -Original Message-
 From: Kamil A'Shalwani [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, June 10, 2003 6:15 PM
 To: [EMAIL PROTECTED]
 Subject: [XFree86] problem with var file + can't strart x
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] X server crashing when switching to console

2003-06-11 Thread Tomas Rebok
Hello everybody! 

I've the following problem:
My 4.3.0 X server often crashes when I'm switching from X server to
console display (or after little time working in).
Could somebody help me? I've read a lot of web pages, the whole this
mailing list, no solution. Have somebody similar problem? Any idea of
solution?

And now something about my HW:
PIV 2,0GHz, 512 MB RAM, integrated graphic card (Intel VGA compatible
controller: Intel Corp. 82845G/GL).

Something about my SW:
I use Debian 3.0 with 2.4.20 kernel.

The XFree86 log file (after crash) is enclosed.

Can anybody help me?

Thanks a lot. Tom.




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.2.99.3 / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 21 December 2002
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/)
Build Operating System: Linux 2.4.7-10custom i686 [ELF] 
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 May 19 21:13:30 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout XFree86 Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Card0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us,cz
(**) XKB: layout: us,cz
(**) Option XkbOptions grp:switch,grp:shift_toggle,grp_led:scroll
(**) XKB: options: grp:switch,grp:shift_toggle,grp_led:scroll
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to 
/usr/local/X11R6/lib/X11/fonts/TTF/,/usr/local/X11R6/lib/X11/fonts/misc-il2/,/usr/local/X11R6/lib/X11/fonts/75dpi-il2/,/usr/local/X11R6/lib/X11/fonts/100dpi-il2/,/usr/local/X11R6/lib/X11/fonts/misc/,/usr/local/X11R6/lib/X11/fonts/Speedo/,/usr/local/X11R6/lib/X11/fonts/Type1/,/usr/local/X11R6/lib/X11/fonts/75dpi/,/usr/local/X11R6/lib/X11/fonts/100dpi/
(**) RgbPath set to /usr/local/X11R6/lib/X11/rgb
(**) ModulePath set to /usr/local/X11R6/lib/modules
(--) using VT number 11

(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/local/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.2.99.3, 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/local/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.2.99.3, 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 = 0x8090, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2560 card 1458,2560 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,2562 card 1458,2562 rev 03 class 03,00,00 hdr 00
(II) PCI: 00:1d:0: chip 8086,24c2 card 1458,24c2 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1458,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1458,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1458,5004 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 1458,24c2 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1458,24c2 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1458,a002 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:08:0: chip 8086,103a card 8086,3013 rev 82 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,1), 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:30:0), (0,1,1), BCTRL: 0x0006 

[XFree86] Tracing .... ?

2003-06-11 Thread Auge Mike
Hi all,

I really want to know how can I trace or debug XFree86 drivers and library? 
Is there any tools and utilities for that?

Yours,

_
The new MSN 8: smart spam protection and 2 months FREE*  
http://join.msn.com/?page=features/junkmail

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


Re: [XFree86] Compiling XFree with BuildLowMem

2003-06-11 Thread David Dawes
On Tue, Jun 10, 2003 at 11:24:50AM +1200, Miles Roper wrote:
Hi,

I'm trying to compile XFree86 4.3.0.1 with

#define BuildLowMem = YES

as it seems to be a option for low memory machines.  I'm trying to reduce
memory consumption of XFree for a thinclient solution.

When compiling the following error occurs

+ ln -s ../../../../programs/xmh/box6 .
make[4]: *** No rule to make target `../cfb/cfb8cppl.c', needed by
`cfb8cppl.c'.  Stop.
make[3]: *** [includes] Error 2
make[2]: *** [includes] Error 2
make[1]: *** [includes] Error 2

seems to be a problem with 

xfree86-4.30/xc/programs/Xserver/lmfcfb'

Ideas?

This is an option that was added to an X Consortium release some time
ago.  At best it's in need of being reworked, but given our move away
from cfb, it probably isn't useful anymore, at least not for the XFree86
server.

Aside from building smaller versions of mfb and cfb (which XFree86 only
rarely uses), it also disables scalable font backends.  You can achieve
the same thing for the XFree86 server by simply not loading those font
modules.

Minimising the footprint of the XFree86 server for certain classes of
applications would be an interesting project.  Progress in that direction
could be made by carefully modularising some of the built-in code (and
drivers?).  For your specific application, a good start would be to do
some analysis and find out where most of the memory is being eaten up.
It might not be what you expect.

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


[XFree86] Problem installing Xvbf

2003-06-11 Thread Wesley Ng



I tried to install Xvbf inRedhat Linux 9.0, but 
error occured when try to install the xvbf. The error msg I getting are as 
follow:
== Extracting /usr/local/src/Xvfb.tgz ==cannot 
handle file 'libc.so.6' with TLS data

You appear to have a termcap file: 
/etc/termcapThis should be edited manually to replace the xterm 
entrieswith those in /usr/X11R6/lib/X11/etc/xterm.termcap

Note: the new xterm entries are required to take 
full advantageof new features, but they may cause problems when used 
witholder versions of xterm. A terminal type 'xterm-r6' is 
includedfor compatibility with the standard X11R6 version of 
xterm.
Can somebody tell me what went wrong?

Regards  thanks in 
advance


[XFree86] Not able to Start Any GUI (XServer/CDE)

2003-06-11 Thread Vijay Kumar
Dear Sir

After successfull installation of Redhat Linux 8.0
i tried to reboot. But i was not able to see any GUI
coming. Manually i tried to run X Server , but i could not
run it.
The contents of the /var/log/XFree86.0.log are as follows

-

XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window 
System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
	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/)
Build Operating System: Linux 2.4.18-11smp i686 [ELF]
Build Host: daffy.perf.redhat.com

Module Loader present
OS Kernel: Linux version 2.4.18-14 
([EMAIL PROTECTED]) (gcc version 3.2 20020903 
(Red
Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50 EDT 2002
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: Tue Jun 10 23:58:58 
2003
(EE) Unable to locate/open config file
(EE) Error from xf86HandleConfigFile()

Fatal server error:
no screens found
-

Please help me in resolving  this issue.

Thanks and Regards
Vijay


___
Get email that means BUSINESS! me @ mycompany.com.
Just Rs.1499/year.
To start, click http://www.rediffmailpro.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Tracing .... ?

2003-06-11 Thread Mark Vojkovich
On Wed, 11 Jun 2003, Auge Mike wrote:

 Hi all,
 
 I really want to know how can I trace or debug XFree86 drivers and library? 
 Is there any tools and utilities for that?
 

   There's a gdb that's been hacked to support XFree86 loadable
modules on ftp.xfree86.org in /pub/xpert/gdb

Mark.

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


Re: [XFree86] Problem with PCI Geforce4 MX 440 and garbled sound(dual-head)

2003-06-11 Thread Mark Vojkovich
   Which motherboard is this?  It's probably a common problem on
that motherboard and a google search may turn something up.

   Generally, these are caused by PCI disconnect interrupts.  When
data is sent to the card more quickly than it can deal with it, the
card pulls itself off the bus and the bridge keeps retrying the
data.  As far as the graphics engine is concerned, pretty much
all drivers make sure they're not sending data to the graphics
engine when there's not room in its fifo.  NVIDIA's drivers
use DMA so they don't even have to deal with that because the DMA
engine won't fetch the data unless there's room in the chip's fifo.
But there's still the issue of software rendering to the framebuffer.
CPU access to the framebuffer can still generate PCI disconnects.
Some motherboards/chipsets are more likely to show problems with
this than others.

Mark.


On 8 Jun 2003, Kelly Gibson wrote:

 I am running a dual-head system and I have a small problem with the
 sound related to the video cards.  When sound is played on the AGP card
 there doesn't seem to be any problem at all, but when I watch a video,
 scroll on a web page, or open gnome-terminal and type on the pci card
 (the geforce 4) it will begin to distort badly.  I have tried many
 fixes to this solution not limited to:  adjusting the latency, moving
 pci cards around, recompiling Xfree, and reinstalling the nvidia
 driver.  My setup seems to be otherwise just fine.  I can post my
 XF86Config if necessary, but I am hoping this is some known issue.
 
 System specs:
 
 Gentoo Linux
 XFree86:  4.3.0
 using Nvidia's driver
 Xinerama is on (note this doesn't seem to matter)
 Athlon XP 1800
 512mb mem
 Geforce 2
 geforce 4 mx440
 
 Other potentially relevant information:
 
  Bus  0, device  11, function  0:
 Multimedia audio controller: Ensoniq 5880 AudioPCI (rev 2).
   IRQ 3.
   Master Capable.  Latency=248.  Min Gnt=12.Max Lat=128.
   I/O at 0xd800 [0xd83f].
  Bus  0, device  15, function  0:
 VGA compatible controller: nVidia Corporation NV17 [GeForce4 MX440]
 (rev 163).
   IRQ 5.
   Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
   Non-prefetchable 32 bit memory at 0x2000 [0x20ff].
   Prefetchable 32 bit memory at 0x2800 [0x2fff].
   Prefetchable 32 bit memory at 0x2100 [0x2107].
   Bus  1, device   0, function  0:
 VGA compatible controller: nVidia Corporation NV11 [GeForce2 MX]
 (rev 178).
   IRQ 11.
   Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
   Non-prefetchable 32 bit memory at 0xcc00 [0xccff].
   Prefetchable 32 bit memory at 0xb000 [0xb7ff].
 
 Thank you for your time,
 
 -- 
 Kelly Gibson [EMAIL PROTECTED]
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


[XFree86] ati R250 9000 washed out color

2003-06-11 Thread Robert Bliss
Hi

  I have an ATI ALL-IN-WONDER Rv250 Radeon 9000 agp board on my system
which is running RH 9.0 kernel 2.4.20.

  I have upgraded X to 4.3.0-13 and have been able to get X to run but
the colors are all washed out. I cought a glimps of someone else having
this problem but when I tried to find any response I lost the thread.

  Any help would be appreciated I have attached my XF86Config file
and my /var/log/XFree86.0.log. The commented out Chipid which is
supposed to make the board look like a Radeon 8500 did not help.


   Any help would be appreciated

 Thanks Bob.



XF86Config
Description: Binary data


XFree86.0.log
Description: Binary data


[XFree86] 6/10 aspect ratio

2003-06-11 Thread Eric Humphries
I have an Inspiron 8500 and I'm trying to get x to change aspect ratios to better fit 
my lcd. Currently its running in 4/3 properly with no issues whatsoever. I'm using the 
stock nv driver in x 4.3.0.

View my Config at:
http://marley.bitstream.net/~hump/XF86Config.txt

View my log at:
http://marley.bitstream.net/~hump/XFree86.0.log.txt

relevant dmesg output:
pci1: PCI bus on pcib1
pci1: NVidia model 0286 graphics accelerator at 0.0 irq 11
agp0: Intel 82845 host to AGP bridge mem 0xec00-0xefff at device 0.0 on pci0

My lcd does 6/10 aspect in windows xp, however my attempts to modify the modeline to 
something using 6/9 or 6/10 seem to be failing. Let me know if I'm overlooking 
something.

-- 
Eric Humphries

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


Re: [XFree86] Sol/Sparc: XLUT MapSbusMem failure

2003-06-11 Thread Mike Russo
Unfortunately this patch produces the same effect. (After patching, I
removed Sbus.o and re-ran make Everything.) xf86MapSbuMem still fails to
map the XLUT region of memory. But thank you boatloads for trying. if
you would like to me to try anything else, let me know (it's not
important and I will be trying to next release).

thanks again,
mike

On Tue, 2003-06-10 at 16:50, Marc Aurele La France wrote:
 On 3 Jun 2003, Mike Russo wrote:
 
  This is a question for anyone who knows anything about the SPARC port
  :-) I compiled and configured v4.3.0 under Solaris 8/gcc 3.2.2 for a
  SS-20 with an SX/CG14 fb, but kept receiving AddScreen/ScreenInit failed
  for driver 0.
  This inspired me to put some debugging messages in
  /usr/src/xc/programs/Xserver/hw/xfree86/drivers/suncg14/cg14_driver.c
  before all the places where it can return FALSE.
  Consequently, I found that it dies when it is trying
  to map the XLUT region of memory:
 
  pCg14-xlut = xf86MapSbusMem (pCg14-psdp, CG14_XLUT_VOFF, 4096);
 
  then I check all the pointers and write a message using xf86DrvMsg():
  if (!pCg14-fb) xf86DrvMsg(pScrn-scrnIndex,X_WARNING,pCg14-fb null);
  if (!pCg14-x32) xf86DrvMsg(pScrn-scrnIndex,X_WARNING,pCg14-x32
  null);
  if (!pCg14-xlut) xf86DrvMsg(pScrn-scrnIndex,X_WARNING,pCg14-xlut
  null);
 
  In my output logfile, I see the message xlut null before the
  inevitable failure. I have tried to get in contact with Dave Miller or
  Jakub at RedHat, but they have not responded. Just throwing it out there
  in case someone knows, because Sun's X server just blows. :-(
 
 This looks like a page size issue.  Please try the attached (or update
 from CVS).
 
 Thanks for reporting the problem.
 
 Marc.
 
 +--+---+
 |  Marc Aurele La France   |  work:   1-780-492-9310   |
 |  Computing and Network Services  |  fax:1-780-492-1729   |
 |  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
 |  University of Alberta   +---+
 |  Edmonton, Alberta   |   |
 |  T6G 2H1 | Standard disclaimers apply|
 |  CANADA  |   |
 +--+---+
 XFree86 Core Team member.  ATI driver and X server internals.
-- 
Mike Russo [EMAIL PROTECTED]
ReadQ Systems, Inc.

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


Re: [XFree86] Setting the colour of white

2003-06-11 Thread Mark Vojkovich
On Wed, 11 Jun 2003, Chris Simmonds wrote:

 Hi,
 
 I have a need to re-define white on an X server to be some other 
 colour. I feel sure that it is a simple thing to do, but I can't quite 
 see how.
 
 Here are some details
 
 Xfree86 4.2.1 running on Linux 2.4.18 kernel
 vesa driver
 LCD panel at 800x600x16
 
 Although it is a full colour panel the application only displays white 
 text on a black background. I can't modify the application in any way, 
 just the configuration of the X server.
 
 Anybody got any ideas?

   It depends how the app works.  If it's asking for white by
name you can change white globally in /usr/X11R6/lib/X11/rgb.txt

   If it asks for colors by specifying r,g,b values explicitly
then you can change white by changing the gamma correction programatically
through the xf86VidMode extension.   See the XF86VidModeSetGammaRamp
and XF86VidModeGetGammaRamp functions.  Basically, get the gamma
ramp out and change the last value in the red, green, and blue arrays
to whatever you want white to be and set the modified gamma ramp.


Mark.

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


[XFree86] X 4.3.0 fatal error [crash]

2003-06-11 Thread Mukesh Rathor

Hi, 
   In the hopes of trying to get my dual monitor work properly, I upgraded
   to 4.3.0 and the darn thing backfired. The X server crashes everytime
   there's no activity, it's not crashed while I'm working. I alwasy come
   back to find it crashed. Any help is appreciated. 

Thanks,
Mukesh 






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 i686 [ELF] 
Build Date: 07 March 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 Jun 11 13:55:31 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Matrox PowerDesk configured.
(**) |--Screen Display Merged (0)
(**) |   |--Monitor Display Merged
(**) |   |--Device MATROX CARD 1
(**) |--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
(**) 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 8086,1a30 card 1028,010e rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 03 class 06,04,00 hdr 01
(II) PCI: 00:1e:0: chip 8086,244e card , rev 12 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,2440 card , rev 12 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,244b card 1028,010e rev 12 class 01,01,80 hdr 00
(II) PCI: 00:1f:3: chip 8086,2443 card 1028,010e rev 12 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2445 card 1028,010e rev 12 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 102b,2527 card 102b,0f84 rev 01 class 03,00,00 hdr 00
(II) PCI: 02:09:0: chip 100b,0020 card 1385,f311 rev 00 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,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-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000e (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xfd80 - 0xfe7f (0x100) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xf800 - 0xf9ff (0x200) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1  0   0xe000 - 0xe0ff (0x100) IX[B]
[1] -1  0   0xe400 - 0xe4ff (0x100) IX[B]
[2] -1  0   0xe800 - 0xe8ff (0x100) IX[B]
[3] -1  0   0xec00 - 0xecff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1  0   0xfe90 - 0xfeaf (0x20) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) Matrox Graphics, Inc. MGA G550 AGP rev 1, Mem @ 0xf800/25, 
0xfe6fc000/14, 0xfd80/23, BIOS @ 0x8000/17
(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 (0x3ff0) MX[B]E(B)
[2] -1  0   0x000f - 0x000f (0x1) MX[B]
   

Re: [XFree86] X 4.3.0 fatal error [crash]

2003-06-11 Thread Mark Vojkovich
  Are you sure it's not crashing when an OpenGL screensaver comes
up?

Mark.

On Wed, 11 Jun 2003, Mukesh Rathor wrote:

 
 Hi, 
In the hopes of trying to get my dual monitor work properly, I upgraded
to 4.3.0 and the darn thing backfired. The X server crashes everytime
there's no activity, it's not crashed while I'm working. I alwasy come
back to find it crashed. Any help is appreciated. 
 
 Thanks,
 Mukesh 
 
 
 
 
 
 

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


Re: [XFree86] specific refresh rate

2003-06-11 Thread Billy Biggs
Daniel Bush ([EMAIL PROTECTED]):

 I am using:
 XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
 
 1) How do I know exactly what refresh rate X is running @?

  It's a pretty easy.  The bottom of this email contains a shell script.
The formula is pixel clock in hz divided by the number of pixels, so
htotal * vtotal.  Since pixel clock is in MHz in a modeline, multiply by
10.

 2) How do I specifically set the refresh rate I want?

  In X 4.3 the 'randr' program can help you easily switch between
defined modelines at various refresh rates, or you can create your own
modelines that have the refresh rate you want.

 I have examined my /var/log/XFree86.0.log and came across the following 
 at the very end:
 GetModeLine - scrn: 0 clock: 65000
 GetModeLine - hdsp: 1024 hbeg: 1040 hend: 1176 httl: 1344
   vdsp: 768 vbeg: 770 vend: 776 vttl: 806 flags: -21474836
 I assume X is using 65Hz

  Wrong.  The dot clock is 65MHz.  Your refresh rate is
(65000*1000)/(1344*806) or 60Hz.

 I have also tried to configure the following Modeline under the Monitor 
 section but, it seams to have no effect:
 Modeline 1024x768 97.40  1024 1072 1192 1416   768  768  771  809

  This would be the same modeline with a high pixel clock and running at
89Hz.  You could likely come up with an 89Hz refresh rate modeline that
was better aligned for your hardware, but you're going about it the
wrong way.  X will choose the highest refresh rate mode available to it,
and it has alot of modes built in.  You should likely make sure the
VertRefresh option (or your HorizSync option) in your Monitor section is
set to not be too restrictive, it will likely fix your problem.

  -Billy

#!/bin/sh
#
# Print the refresh rate, assuming that the bottom of the
# output of xdpyinfo -ext XFree86-VidModeExtension is the
# current modeline, and that it's in the format I expect,
# which may not be true.

MODELINE=`xdpyinfo -ext XFree86-VidModeExtension | tail -1`
DOTCLOCK=`echo $MODELINE | awk '{ print $1 }'`
HTOTAL=`echo $MODELINE | awk '{ print $5 }'`
VTOTAL=`echo $MODELINE | awk '{ print $9 }'`
REFRESH=`echo scale=2;($DOTCLOCK * 100) / ($HTOTAL * $VTOTAL) | bc`

echo Current refresh rate is $REFRESH hz

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


Re: [XFree86] specific refresh rate

2003-06-11 Thread Daniel Bush
Billy Biggs wrote:

Daniel Bush ([EMAIL PROTECTED]):

 

I am using:
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
1) How do I know exactly what refresh rate X is running @?
   

 It's a pretty easy.  The bottom of this email contains a shell script.
The formula is pixel clock in hz divided by the number of pixels, so
htotal * vtotal.  Since pixel clock is in MHz in a modeline, multiply by
10.
 

2) How do I specifically set the refresh rate I want?
   

 In X 4.3 the 'randr' program can help you easily switch between
defined modelines at various refresh rates, or you can create your own
modelines that have the refresh rate you want.
 

I have examined my /var/log/XFree86.0.log and came across the following 
at the very end:
GetModeLine - scrn: 0 clock: 65000
GetModeLine - hdsp: 1024 hbeg: 1040 hend: 1176 httl: 1344
 vdsp: 768 vbeg: 770 vend: 776 vttl: 806 flags: -21474836
I assume X is using 65Hz
   

 Wrong.  The dot clock is 65MHz.  Your refresh rate is
(65000*1000)/(1344*806) or 60Hz.
 

I have also tried to configure the following Modeline under the Monitor 
section but, it seams to have no effect:
Modeline 1024x768 97.40  1024 1072 1192 1416   768  768  771  809
   

 This would be the same modeline with a high pixel clock and running at
89Hz.  You could likely come up with an 89Hz refresh rate modeline that
was better aligned for your hardware, but you're going about it the
wrong way.  X will choose the highest refresh rate mode available to it,
and it has alot of modes built in.  You should likely make sure the
VertRefresh option (or your HorizSync option) in your Monitor section is
set to not be too restrictive, it will likely fix your problem.
 -Billy

#!/bin/sh
#
# Print the refresh rate, assuming that the bottom of the
# output of xdpyinfo -ext XFree86-VidModeExtension is the
# current modeline, and that it's in the format I expect,
# which may not be true.
MODELINE=`xdpyinfo -ext XFree86-VidModeExtension | tail -1`
DOTCLOCK=`echo $MODELINE | awk '{ print $1 }'`
HTOTAL=`echo $MODELINE | awk '{ print $5 }'`
VTOTAL=`echo $MODELINE | awk '{ print $9 }'`
REFRESH=`echo scale=2;($DOTCLOCK * 100) / ($HTOTAL * $VTOTAL) | bc`
echo Current refresh rate is $REFRESH hz

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

Excellent...  As I suspected, my refresh rate is 60.00 hz.  The script 
worked great.

my XF86Config is attached.  

Any suggestions as to how I  can get a Modeline to work.  I have 
atempted to insert on in the Monitor section however it looks like X is 
igroring it.

Thanks for your help,
Dan
No
# XFree86 4 configuration created by redhat-config-xfree86

Section ServerLayout
Identifier Default Layout
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
InputDeviceDevInputMice AlwaysCore
EndSection

Section Files

# RgbPath is the location of the RGB database.  Note, this is the name of the 
# file minus the extension (like .txt or .db).  There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
RgbPath  /usr/X11R6/lib/X11/rgb
FontPath unix/:7100
EndSection

Section Module
Load  dbe
Load  extmod
Load  fbdevhw
Load  glx
Load  record
Load  freetype
Load  type1
EndSection

Section InputDevice

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#   Option  Xleds 1 2 3
# To disable the XKEYBOARD extension, uncomment XkbDisable.
#   Option  XkbDisable
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#   Option  XkbModel  pc102
# If you have a US Microsoft Natural keyboard, you can use:
#   Option  XkbModel  microsoft
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#   Option  XkbLayout de
# or:
#   Option  XkbLayout de
#   Option  XkbVariantnodeadkeys
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#   Option  XkbOptionsctrl:swapcaps
# Or if you just want both to be control, use:
#   Option  XkbOptionsctrl:nocaps
#
Identifier  Keyboard0
Driver  keyboard
Option  XkbRules xfree86
Option  XkbModel pc105
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/psaux
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection

Section 

[XFree86] XFree86 and Radeon IGP-340M

2003-06-11 Thread Daniel Alves
Hi.

I saw back in March that an experimental 2D XFree86 4.3.0 patch for the
Radeon IGP sets was around, so I was wondering if those drivers have
progressed in any way, and if even there is also 3D support.

Thanks for the time

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


Re: [XFree86] Not able to Start Any GUI (XServer/CDE)

2003-06-11 Thread Bharathi S
On 11 Jun 2003, Vijay  Kumar wrote:

 (EE) Unable to locate/open config file

/etc/X11/XF86Config-4 file is NOT found. Bcoz X is not yet configured
in your system. So Configure it, by using redhat-config-xfree86
command (root permission is needed).

Bye :)
-- 
Bharathi S, IndLinuX Team,   (__)
DON Lab,TeNeT Group, oo )
IIT-Madras, Chennai-INDIA.   (_/\ 

Learn By Listening. Understand By Reflecting.

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


[XFree86] Xfree86, ithoYpTXnylGXlZhcTkxrzLoFjBXvJkFerUcICaYblEYyEgBxr

2003-06-11 Thread buk
tKbKOzTFGiUxRtokMWVYjTfEitZYPnqyatjOTevzmoWgxlqktm

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