CVS Update: xc (branch: )

2003-06-09 Thread David Dawes
[EMAIL PROTECTED]
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/09 08:01:41

xc/programs/fc-cache

Update of /home/x-cvs/xc/programs/fc-cache
In directory public.xfree86.org:/tmp/cvs-serv22295/fc-cache

Log Message:
Directory /home/x-cvs/xc/programs/fc-cache added to the repository

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


CVS Update: xc (branch: trunk)

2003-06-09 Thread Matthieu Herrb
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/09 11:49:39

Log message:
  typo

Modified files:
  xc/programs/Xserver/os/:
connection.c 
  
  Revision  ChangesPath
  3.58  +2 -2  xc/programs/Xserver/os/connection.c

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


Fw: Reverse engineering Windows Radeon IGP320/340 driver?

2003-06-09 Thread Wouter Bijlsma



I already posted this to the DRI devel mailing 
list, but perhaps someone here knows more about it.

- Original Message - 
From: Wouter 
Bijlsma 
To: [EMAIL PROTECTED] 

Sent: Sunday, June 08, 2003 5:40 PM
Subject: Reverse engineering Windows Radeon IGP320/340 
driver?

Hi,

I was just wondering if someone has tried to do 
some reverse engineering on the windows display drivers for the Radeon 
IGP320/340. As far as I understand the IGP320/340 is based on the Radeon 7000 
(R100)? I'm not a display driver developer, but doesn't this mean that apart 
fromsome differences in the interface to the chipset a DRI driver for the 
IGP chipset would be largely the same as the 7000 driver? I noticed that the 
Windows drivers are universal (there's onedriver dll for all R100 based 
cards), so maybe it would be possible to disassembleit to find the code 
that detects the chipset and sets up thehooks to address it and 
tofind the differenceswith the 7000 chips?

If this would be feasible, I'd be happy to spend 
some workon it. Not thatI pretendto be able to code a working 
3D driver, but if it turns out the existing 7000 drivercould handle 3D on 
the IGP320/340 with minor modificationsI might be able toget 
something to work.

I would really, REALLY like to have 3D support 
under linux on my brand new laptop ;-) I already inquired ATI about linux 
support, but I don't have the impression they are very willing to provide 
chipset specs...

Regards,
 
  Wouter 
Bijlsma,
  [EMAIL PROTECTED]


Re: twm stop run

2003-06-09 Thread mnicolet
Hello Frank
Thank you for your answer to the twm question. I am considering fvwm, but I
was urged to test
fltk. And that urgency was because before of fltk, I tried FOX, with all
tests SIGSEGVing at the
very start. So, I was doubting regarding my compilation environment for X.
I was trying to contact you or another qnx port team member to ask some
basic questions.
If you don´t take this as abuse, now that I know your mailbox, I would like
to ask those again,
and directing this mail to you and not the list, because I think this is
very specific to QNX 4.x.
I tried first the binary distribution from the jcmichot page, but that
failed to run, ( later I learned why
: it was trying to open a unix socket for local connections ), then I
compiled XFree86 4.2 from source, under these restrictions:
1) I don´t have libcrypt, only login, and only in 3r ( login3r.lib ).
2) I have only TCP/IP 4.23 and 4.25 run times, so, no Unix sockets.
Then, I adapted QNX4.cf to this environment, eliminating UNIXCONN and
changing compiling options to -5r.
Also, I needed to ´touch´ some sources and makefiles ( If you consider these
interesting, I can post you the changes - in fact, one is to my judge, very
important ). All went ok, and, as you could see
from my posting to the list, I have a functional X environment. But some
questions arise
1 - the most intriguing: why the so big stack ( if you remember, QNX4.cf
forces XFree86 linking to
 -N4096000 ). I tried to figure out if some modules are using alloca, but
the allocation coding is so
deep wrapped with macros ( also redefined ) that it proves a useless or
unsure path. So, I am asking to the people who knows. The main question is
that under the QNX 4 execution model, the stack
is allocated as hinted, even if the process don´t need all the space. After
a while, the data segment continues to grow - some 1 Mb more, I guess. This
is ok, because obviously, some data is allocated from heap. But I am asking
me if the stack remains largely unused.
2 - from the binary distribution, I see some clients ( xqsh, by example )
whose sources are not in the
source tree from xfree.org. Is there a way to get those specific QNX clients
sources ? Of course, the main question is keyboard management, I guess.
3 - Some more general xfree distribution question: I noted that cpp is not
in the source tree. Thankfully, I had it from the binary previously
installed. How could I obtain the source ?

Thank you in advance
Regards
Marcelo Nicolet
- Original Message -
From: Frank Liu [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, June 09, 2003 1:59 AM
Subject: Re: twm stop run


 possibly a twm bug, I would suggest trying another window manager
 like fvwm.



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


Re: Fw: Reverse engineering Windows Radeon IGP320/340 driver?

2003-06-09 Thread Alex Deucher
--- Wouter Bijlsma [EMAIL PROTECTED] wrote:
 
 It's a pity the DRI folks don't have access to the hardware. I do.
 But I'm not a driver developer (though I'm quite skilled in C,
 assembler and graphics code). Would it be a bad thing for me to try
 and find out if the existing 7000 driver can be adapted to work on
 the IGP chipsets? Would it actually be possible to get something
 useful out of this, or is this to complex or involved for me? Would
 the results be of any use to the DRI developers? I'm not talking
 about reverse engineering the whole driver, only finding out if the
 IGP chipset is very different from the 7000.
 

What you could do is compare the current IGP 2D code in CVS with the
r100 code, then look at differences and start messing with the r100 DRI
driver.  The fix might not be all that complicated.

Alex


__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Fw: Reverse engineering Windows Radeon IGP320/340 driver?

2003-06-09 Thread Gbor Lnrt
On Mon, Jun 09, 2003 at 06:04:19PM +0200, Wouter Bijlsma wrote:
  In general, reverse engineering drivers tends to irritate hardware 
  companies.  Since we want to maintain good working relationships with 
  these companies, so that they will give us documentation and sample 
  boards, we're better off not irritating them.  That's not to mention the 
  fact that it's very difficult to get anything useful out of it.
  
  The problem WRT 3D on the whole range of IGP chipsets is that the 
  relevant DRI developers don't have access to the hardware.  Moreover, 
  most of them don't have the bandwidth to work on debugging the problems.
 
 Ok, I understand RE might irritate HW companies and that this is not a
 good thing. I already sent a really polite e-mail about support for the
 IGP chipsets to ATI, and I hope a lot of people will do the same. The
 problem is that (as I see it) more and more companies are closing up their
 specs anyway (nVidia, but they never even provided specs of their chips,

Agreed. Matrox Gxxx family is quite outdated compared with today's top
cards, but even now everybody looks for these cards on various mailing
lists (eg in our project named mplayer) just because that card is quite
WELL supported ... nVidia releases binary only drivers, yes. But I would
like to use framebuffer, or something similar to our mga_vid driver
(XVideo like overlay on framebuffer, so using BES) so I have no idea
to buy nVidia because I need it with Linux and _NO_ windows etc ...
If nVidia would be well supported like Matrox of course I would consider
to buy nVidia cards ...

- Gbor (larta'H)
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: iBook us-keyboard problem

2003-06-09 Thread David Dawes
On Sat, Jun 07, 2003 at 07:51:04PM +0700, Ivan Pascal wrote:
  Hi,

 The linux-ppc kernel has an option (CONFIG_MAC_ADBKEYCODES) to use the old 
 ADB-style keycodes. I imagine setting this option to no uses the conversion 
 you're talking about. For the record, the scancodes I see (from showkey -s) 
 are as follows:
 
 KeyPad Equals :  0x5c 0xdc
 Left Arrow :  0xe0 0x4b 0xe0 0xcb

Wow!  It is exactly what I told about.
I didn't say what Xserver's driver does with one-byte codes.
Actually it does:
- converts 0xe0 xx sequences to some one byte code
- and then adds 8 to every code, including one-byte scan-codes and codes
(one-byte too) got from the sequences covertion.

  Therefore 0x5c code after that becomes 5c+8 = 0x64 hex or 100 dec.
And the Left arrow sequence at the first step is converted to 0x5c too and
after adding 8 becomes 100 (dec).

The X server's driver uses codes (like 0x5c) that it doesn't expect to
ever see as input to encode the 0xe0 0xXX two-byte codes.

We have a KEY_KP_Equal value defined in common/atKeynames.h: 0x76 (+8 = 126).
This conflicts with the value used for META in xkbcomp/keycodes/xfree86.

My suggestion would be the following patch for the XFree86 DDX, and
assign META to a different value, assign KPEQ to 126 in
xkbcomp/keycodes/xfree86, (and make KPEQ to a keysym in the appropriate
places).

Index: xc/programs/Xserver/hw/xfree86/common/xf86Events.c
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/common/xf86Events.c,v
retrieving revision 3.149
diff -u -r3.149 xf86Events.c
--- xc/programs/Xserver/hw/xfree86/common/xf86Events.c  3 Apr 2003 16:20:23 -  
 3.149
+++ xc/programs/Xserver/hw/xfree86/common/xf86Events.c  9 Jun 2003 19:23:10 -
@@ -456,8 +456,14 @@
 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 */
+#endif  /* !(i386  SVR4) */
 
 #ifdef __linux__
   if (xf86Info.kbdCustomKeycodes) {
Index: xc/programs/xkbcomp/keycodes/xfree86
===
RCS file: /home/x-cvs/xc/programs/xkbcomp/keycodes/xfree86,v
retrieving revision 3.20
diff -u -r3.20 xfree86
--- xc/programs/xkbcomp/keycodes/xfree8615 May 2003 13:31:58 -  3.20
+++ xc/programs/xkbcomp/keycodes/xfree869 Jun 2003 19:26:13 -
@@ -138,6 +138,7 @@
 
 KP0  =  90;
 KPDL =  91;
+KPEQ = 126;
 
 FK13 =  118;
 FK14 =  119;
@@ -298,7 +299,7 @@
 MDSW =93; // U5D
 LVL3 =   124; // U7C
 ALT  =   125; // U7D
-META =   126; // U7E
+META =   156; // I1C
 SUPR =   127; // U7F
 HYPR =   128; // U80
 
Index: xc/programs/xkbcomp/symbols/us
===
RCS file: /home/x-cvs/xc/programs/xkbcomp/symbols/us,v
retrieving revision 3.12
diff -u -r3.12 us
--- xc/programs/xkbcomp/symbols/us  20 Nov 2002 04:49:03 -  3.12
+++ xc/programs/xkbcomp/symbols/us  9 Jun 2003 19:29:21 -
@@ -160,6 +160,7 @@
 key  KP2 {   [  KP_Down, KP_2]   };
 key  KP3 {   [  KP_Next, KP_3]   };
 key KPEN {   [   KP_Enter]   };
+key KPEQ {   [   KP_Equal]   };
 
 key  KP0 {   [  KP_Insert,   KP_0]   };
 key KPDL {  [  KP_Delete,KP_Decimal ]};
Index: xc/programs/xkbcomp/symbols/pc/pc
===
RCS file: /home/x-cvs/xc/programs/xkbcomp/symbols/pc/pc,v
retrieving revision 1.8
diff -u -r1.8 pc
--- xc/programs/xkbcomp/symbols/pc/pc   15 May 2003 13:32:00 -  1.8
+++ xc/programs/xkbcomp/symbols/pc/pc   9 Jun 2003 19:28:53 -
@@ -165,6 +165,7 @@
 key  KP2 {   [  KP_Down, KP_2]   };
 key  KP3 {   [  KP_Next, KP_3]   };
 key KPEN {   [   KP_Enter]   };
+key KPEQ {   [   KP_Equal]   };
 
 key  KP0 {   [  KP_Insert,   KP_0]   };
 key KPDL {   [  KP_Delete,   KP_Decimal ]};


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: iBook us-keyboard problem

2003-06-09 Thread David Dawes
On Mon, Jun 09, 2003 at 03:31:01PM -0400, David Dawes wrote:
On Sat, Jun 07, 2003 at 07:51:04PM +0700, Ivan Pascal wrote:
  Hi,

 The linux-ppc kernel has an option (CONFIG_MAC_ADBKEYCODES) to use the old 
 ADB-style keycodes. I imagine setting this option to no uses the conversion 
 you're talking about. For the record, the scancodes I see (from showkey -s) 
 are as follows:
 
 KeyPad Equals :  0x5c 0xdc
 Left Arrow :  0xe0 0x4b 0xe0 0xcb

Wow!  It is exactly what I told about.
I didn't say what Xserver's driver does with one-byte codes.
Actually it does:
- converts 0xe0 xx sequences to some one byte code
- and then adds 8 to every code, including one-byte scan-codes and codes
(one-byte too) got from the sequences covertion.

  Therefore 0x5c code after that becomes 5c+8 = 0x64 hex or 100 dec.
And the Left arrow sequence at the first step is converted to 0x5c too and
after adding 8 becomes 100 (dec).

The X server's driver uses codes (like 0x5c) that it doesn't expect to
ever see as input to encode the 0xe0 0xXX two-byte codes.

We have a KEY_KP_Equal value defined in common/atKeynames.h: 0x76 (+8 = 126).
This conflicts with the value used for META in xkbcomp/keycodes/xfree86.

My suggestion would be the following patch for the XFree86 DDX, and
assign META to a different value, assign KPEQ to 126 in
xkbcomp/keycodes/xfree86, (and make KPEQ to a keysym in the appropriate
places).

Index: xc/programs/Xserver/hw/xfree86/common/xf86Events.c
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/common/xf86Events.c,v
retrieving revision 3.149
diff -u -r3.149 xf86Events.c
--- xc/programs/Xserver/hw/xfree86/common/xf86Events.c 3 Apr 2003 16:20:23 -  
 3.149
+++ xc/programs/Xserver/hw/xfree86/common/xf86Events.c 9 Jun 2003 19:23:10 -
@@ -456,8 +456,14 @@
 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 */
+#endif  /* !(i386  SVR4) */
 
 #ifdef __linux__
   if (xf86Info.kbdCustomKeycodes) {

The following might be a better patch for xf86Events.c, because these
conversions should only happen with there is no scan prefix.

Index: xc/programs/Xserver/hw/xfree86/common/xf86Events.c
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/common/xf86Events.c,v
retrieving revision 3.149
diff -u -r3.149 xf86Events.c
--- xc/programs/Xserver/hw/xfree86/common/xf86Events.c  3 Apr 2003 16:20:23 -  
 3.149
+++ xc/programs/Xserver/hw/xfree86/common/xf86Events.c  9 Jun 2003 19:52:16 -
@@ -440,25 +440,6 @@
 goto special;
 #endif /* __sparc__ */
 
-#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 */
-}
-  }
-#endif  /* i386  SVR4 */
-
 #ifdef __linux__
   if (xf86Info.kbdCustomKeycodes) {
 specialkey = SpecialServerMap[scanCode];
@@ -489,6 +470,30 @@
   break;
 #endif
 }
+#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 

Re: vsync

2003-06-09 Thread Mark Vojkovich
On Mon, 9 Jun 2003, joerg hanke wrote:

 hi there,
 
 is it possible to get info about when a vsync happened?

Not in any portable way via software.  There are
device specific solutions on various cards, however.

 (i want to sync an external hw with pictures shown on display)

Can you do it in hardware?  Extracting vsync from the
VGA connector is trivial.  


Mark.

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


(none)

2003-06-09 Thread Thomas
=DIAL-A-PRANK=


1 Dial 0906 664 1902
2 Select the prank [Eg: You owe the inland revenue £20K].
3 Enter your victims telephone number.
4 Listen to their reaction as the computer dials out to them!


==Features==

# Listen to your victim`s reaction!
# Voice recognition - reacts to your victims response.
# Auto-records the jokes; let your friends hear the prank later.



Data ticket:1579. Calls to 0906 664 1902 cost one pound and fifty pence per minute. 
Service provider: TPX 0871 872 3731. To not receive future promotions please call 0871 
872 3731.
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: [XFree86] Fail to boot into X, please help

2003-06-09 Thread Andy Goth
On Monday, June 9, 2003 12:32 am, Keung Chi Tat wrote:
 I am using Redhat linux 9.0.

We feel for you. :^)

 Everytime my try to start X, it will switch into graphic mode ( look
 fine), after a few second, it switch back to text, and then switch
 between graphic mode and text mode serveral time.

 Final it show up a dialog in text mode with a sentence,
 Failed to start display server serval times in a short period;
 disabling display :0

 attachments are my XFree86 log file and config ,

Your log doesn't indicate a failure.  In fact, it doesn't even show the server 
exiting, as if the server was up and running at the time you copied it.

One idea comes to mind... maybe your server is working but your X login 
program (xdm, kdm, etc.) either isn't there or exits immediately (crash?).  
That will cause your server to give all appearances of crashing without 
giving any errors in the log.

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

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


Re: [XFree86] [PATCH] mouse.c for non-x86 mouse-wheel

2003-06-09 Thread Rene Rebe
Hi,

On: Sun, 8 Jun 2003 17:28:14 +0200,
Matthieu Herrb [EMAIL PROTECTED] wrote:
 Rene Rebe wrote (in a message from Sunday 8)
   #
   # ROCK Linux: rock-src/package/x11/xfree86/ppc-imps2-wheel.patch
   # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
   #
   # This program is free software; you can redistribute it and/or modify
   # it under the terms of the GNU General Public License as published by
   # the Free Software Foundation; either version 2 of the License, or
   # (at your option) any later version. A copy of the GNU General Public
   # License can be found at Documentation/COPYING.
   #
 
 Sorry but code under the GPL cannot be considered for inclusion in
 XFree86. 
 Please put your patches under the MIT or BSD license. 
 See http://www.xfree86.org/4.3.0/LICENSE1.html for an sample license
 (The one used on files owned by the XFree86 project itself). 

Ah yes ... forgott about this: As author of the patch I relicense this
code fragment (,-) under the conditions of the BSD license for
inclusion into XFree.

(The copyright not is just auto-generated into every file of our
distribution (which is GPL) because we had problems with people
stealing code without honoring our license which formerly was only
written in one LICENSE file ...)

Sincerely yours,
  René Rebe
- ROCK Linux stable release maintainer

--  
René Rebe - Europe/Germany/Berlin
  [EMAIL PROTECTED] [EMAIL PROTECTED]
http://www.rocklinux.org http://www.rocklinux.org/people/rene   
http://gsmp.tfh-berlin.de/gsmp http://gsmp.tfh-berlin.de/rene


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


Re: [XFree86] [PATCH] xkbcomp/symbols/macintosh/{us,de}

2003-06-09 Thread Rene Rebe
Hi,

As author of the patch I relicense this data fragment (,-) under the
conditions of the BSD license for inclusion into XFree.

On: Sun, 08 Jun 2003 16:05:12 +0200 (CEST),
Rene Rebe [EMAIL PROTECTED] wrote:
 Hi,
 
 This is not for immediate apply, but for some discussion:
 
 This is the first time I edit xkb files, so comments are very welcome
 ... I modified the files because the macintosh de layout is not really
 usable - at least on iBooks ... All the third and fourth level symbols
 are not reachable (important for the de map) :-(((
 
 The behavior matches the one of Mac OS X.
 
 Is there some active maintainer of the files? I would volunteer to
 adapt the behavior to the Mac OS X one ... - maybe with a PC-style
 variant, too.

Sincerely yours,
  René Rebe
- ROCK Linux stable release maintainer

--  
René Rebe - Europe/Germany/Berlin
  [EMAIL PROTECTED] [EMAIL PROTECTED]
http://www.rocklinux.org http://www.rocklinux.org/people/rene   
http://gsmp.tfh-berlin.de/gsmp http://gsmp.tfh-berlin.de/rene


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


[XFree86] Ctrl-Alt-Backspace

2003-06-09 Thread Ivan Pascal
  Hi,

 Is there any way to remap the zap-server key combination to be something other 
 than Ctrl-Alt-Backspace?  Whenever I type it, X dies, but my computer also 
 enters suspend mode, which is annoying.  The stupid BIOS doesn't give me an 
 option to disable this particular feature, so...

There is a special keysym Terminate_Server.
Put it into a keyboard map on the key  you want.

-- 
 Ivan U. Pascal |   e-mail: [EMAIL PROTECTED]
   Administrator of |   Tomsk State University
 University Network |   Tomsk, Russia
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] vsync

2003-06-09 Thread joerg hanke
hi there,

is it possible to get info about when a vsync happened?

(i want to sync an external hw with pictures shown on display)

joerg hanke

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


[XFree86] Can't start X

2003-06-09 Thread pjohnson_xf86
Hi,

I Just installed Red Hat 9, selected 'everything' on a P4 (Jetway P4 MFP533  
motherboard w/ on-board video).

When I try to start X, the screen blinks, then goes black (looks like 'sleep' mode).  
System freezes, requiring hard reboot.

I'm new to Linux and XFree86, and not sure how to start debugging this.  I've turned 
off acceleration in the config file, but it doesn't change anything.

Any help would be very much appreciated.

TIA,
Patrick

xf86.log
Description: Mac BinHex archive


[XFree86] ALERT: You are being watched! y qebh hmzhfj yv

2003-06-09 Thread Javier Fitch
Protect Your Privacy NOW!

Did you know that government agencies are spying on your computer? Hackers? Marketers? 
Etc.

We'll the latest program gets rid of all these sources and protects you.

Avoid the following:

* Unwanted people/agencies on your computer
* Your computer keeping a incriminating log of what you do
* Being traced by others online
* Slow Computer Speeds
* PLUS MUCH MORE!

Click below to Learn more and get your essential copy today!


http://www.bestdealss.net/cgi-bin/kherefer.cgi/he/index008.html?MID=khe008r=NewProductHot2



Many employees remain unaware technology isn't private. They may visit sexually 
explicit Web sites and not realize their employer is watching, for example. Many don't 
know messages can be retrieved months later.

-- USA Today
















To be removed click below:
http://cythsia.com/auto/index.htm
ryoflhljvc piazzelaicavwx mdmqlft thzg abjcylbwi hymsyhbd klqfnigaqr mhvmq   wa pijw
qg  fzotlorbv c 

[XFree86] XFree86 and codepage 866

2003-06-09 Thread Andrew Zabolotny
Hello!

I need to have a separate rxvt session with codepage IBM-866 (DOS
cyrillic) inside. Unfortunately, XFree86 does not support it natively. I
tried to add some files to the lib/X11/locale/ directory which describes
the codepage, but when LANG=ru_RU.CP866 XSupportsLocale() anyways
returns that current locale is not supported.

Is there a way to add codepage 866 support without having to hack Xlib
source code? I was told that Xlib have these code pages built-in, thus
there is no way to add a new translation table without recompiling Xlib.
This is very sad as I always thought Unix is a flexible operating system
:-(

-- 
Greetings,
   Andrew

P.S. If developers don't want to make code page translation tables
external to Xlib, maybe they can add at least the possibility to
look for such files in the case Xlib *doesnt know* the requested
translation table? Otherwise poor people like me will always have to do
dirty tricks in order to handle data exchange with legacy operating
systems (in my case I need the 866 codepage because it is used in
russian Windows consoles and this cannot be changed).
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] what's the name for Btn6Up?

2003-06-09 Thread Piotr Sawuk
in 4.2.1 using a 5-button-mouse with wheel I assigned scroll-wheel-events
to the buttons 6 and 7, but I can't catch these events. in some old gnome
the wheel-movement results in positioning the cursor in a text-field, but
how can I catch this in other programs?

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


Re: [XFree86] Raedon 7500 card, blank window when booting

2003-06-09 Thread Daniel Liu
Yep, that fixed my problem =)  Thanks for everything!  Looks like I had
the same problem as you with my Raedon 7500 PCI card.

-Daniel Liu

On Sun, 8 Jun 2003, Andy Goth wrote:

 On Sunday, June 8, 2003 6:15 pm, Daniel Liu wrote:
  Sorry, but how do u disable DRI?

 In your XF86Config file, comment out the line that says 'Load dri' in the
 Module section:

 Section Module
 ...
 # Load dri
 ...
 EndSection

 That should do it.

 Tell us if this fixes your problem.  If it does, then you and I are probably
 in the same boat, because I have this very same issue with my Radeon 7500.


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


[XFree86] Trident XP4m32

2003-06-09 Thread Dayton Clark
Folks,

I've put XFree86 4.3.0 (w/FreeBSD) on a Toshiba Tecra M1.  The chip is a
Trident XP4m32 which appears to be brand new and is not supported by XFree86
trident driver.  The  vesa driver works _except_ the colors are all screwed
up.

I've spent a couple of days on the web and reading the man pages and have
yet to figure out how to get access to the color map in use by the vesa
driver.  Is it possible?  Is there a tool which I can use to manipulate the
color map?

Any help would be appreciated.

thanks
dayton

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


Re: [XFree86] Can't start X

2003-06-09 Thread pjohnson_xf86
At 8:02 AM -0400 6/9/03, [EMAIL PROTECTED] wrote:
When I try to start X, the screen blinks, then goes black (looks like 'sleep' mode).  
System freezes, requiring hard reboot.

Perhaps I was a bit hasty ... I can get the system back by forcing the X server to 
quit with CTRL-ALT-Backspace.

But I see nothing but a black screen when I run startx.

Any hints on what to do ?

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


Re: [XFree86] what's the name for Btn6Up?

2003-06-09 Thread Mark Vojkovich
On Mon, 9 Jun 2003, Piotr Sawuk wrote:

 in 4.2.1 using a 5-button-mouse with wheel I assigned scroll-wheel-events
 to the buttons 6 and 7, but I can't catch these events. in some old gnome
 the wheel-movement results in positioning the cursor in a text-field, but
 how can I catch this in other programs?
 

You can get these through ButtonPress and Release events.
How were you trying to get them?


Mark.

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


Re: [XFree86] Can't start X

2003-06-09 Thread Mark Vojkovich
   We need to see the /var/log/XFree86.0.log


Mark.

On Mon, 9 Jun 2003 [EMAIL PROTECTED] wrote:

 At 8:02 AM -0400 6/9/03, [EMAIL PROTECTED] wrote:
 When I try to start X, the screen blinks, then goes black (looks like 'sleep' 
 mode).  System freezes, requiring hard reboot.
 
 Perhaps I was a bit hasty ... I can get the system back by forcing the X server to 
 quit with CTRL-ALT-Backspace.
 
 But I see nothing but a black screen when I run startx.
 
 Any hints on what to do ?
 
 Thanks,
 Patrick
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


Re: [XFree86] Can't start X

2003-06-09 Thread pjohnson_xf86
   We need to see the /var/log/XFree86.0.log

Hi Mark,

I had attached it to the initial posting.  But I have also made a little progress, so 
maybe I don't need to send it to the list again.  (I can do that if necessary, but I 
also want to respect bandwidth.)

I am using the Jetway P4MFP533 motherboard with built-in Prosavage DDR display.  I 
believe that was the problem, since changing the Driver in the Device section from 
savage to vesa allows the GUI to start up.

Of course, I'm probably not getting the benefit of any of the acceleration built into 
the chip set, so now I have to figure out if I can get a better savage driver, and if 
I can figure out how to load it.

I found one here: http://www.probo.com/timr/savage40.html, but it doesn't say it works 
with XFree86 4.3.0-2, which is what I'm using with RH9.

Any ideas or suggestions ?

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


[XFree86] xFree86 crashes on startup - please help :)

2003-06-09 Thread Slava Mikerin
Hi,
I am a linux newbe. Could someone please help me with
my xFree86 problem.. I would really appreciate it. I
attaching the log file.

thanks,
Slava

__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

XFree86.0.log
Description: XFree86.0.log


[XFree86] xFree86 crashes on startup - please help :)

2003-06-09 Thread Slava Mikerin
Hi,
I am a linux newbe. Could someone please help me with
my xFree86 problem.. I would really appreciate it. I
attaching the log file.

thanks,
Slava

__
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

XFree86.0.log
Description: XFree86.0.log


[XFree86] Compiling XFree with BuildLowMem

2003-06-09 Thread Miles Roper
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?

Cheers

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


Re: [XFree86] Fail to boot into X, please help

2003-06-09 Thread Keung Chi Tat




I argee what you said, I have installed Redhat 7.0 and 8.0 successfully on
this machine.
I think it is not the problem of X server. 
If that is the case, could you or anyone point me to a document that can
tell me how to fix it or how to change the X login program.

Thanks, 
 


Andy Goth wrote:

  On Monday, June 9, 2003 12:32 am, Keung Chi Tat wrote:
  
  
I am using Redhat linux 9.0.

  
  
We feel for you. :^)

  
  
Everytime my try to start X, it will switch into graphic mode ( look
fine), after a few second, it switch back to text, and then switch
between graphic mode and text mode serveral time.

Final it show up a dialog in text mode with a sentence,
"Failed to start display server serval times in a short period;
disabling display :0"

attachments are my XFree86 log file and config ,

  
  
Your log doesn't indicate a failure.  In fact, it doesn't even show the server 
exiting, as if the server was up and running at the time you copied it.

One idea comes to mind... maybe your server is working but your X login 
program (xdm, kdm, etc.) either isn't there or exits immediately (crash?).  
That will cause your server to give all appearances of crashing without 
giving any errors in the log.

  






[XFree86] Unable to StartX

2003-06-09 Thread Kelley Hilborn
Title: Message



I sent 
a message similar to this one the other day, but I relaized the log that I sent 
with it
was 
basically unreadable. So I cleaned up the log so it's not such a jumble of 
words.
Here's 
my problem. When I type 'startx', or 'xf86cfg' my screen goes blank 
like it's about
to 
open up a GUI, but instead just gives me a black screen with blinking cursor, 
and I can't 
get anything out of it. I'm 
running OBSD 3.3 on a Compaq EVO D300V 1.4machine.
The 
graphics card should be a built in Intel. Can anyone please look at the 
log file attached,
and 
get back to me if you see anything? I've been struggling with this one for 
about three 
days 
now...
Thanks!


XFree86.8.log
Description: Binary data


[XFree86] X problem

2003-06-09 Thread jon



any ideas as to whats 
up?


XFree86.0.log
Description: Binary data


RE: [XFree86] Reporting problem about X Server Crashing

2003-06-09 Thread Kelley Hilborn
You need to attach the /var/log/XFree86.0.log to your email.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of [EMAIL PROTECTED]
Sent: Tuesday, June 10, 2003 12:24 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] Reporting problem about X Server Crashing


Hi,
   I have got a system which has an intel 845G/GL graphics card. Red Hat
Linux 8 is installing weel in the system but whenever I am trying to
start X Server it crashes. My monitor resolution is :
   800 x 600 @ 85 Hz
  It will be of great help if you can help me.
 Thanking you,
Rupak.
This is the log that has been generated when X-server crashed:



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]




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

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