Xv and resolution loss on matrox cards

2004-04-15 Thread Michael Lampe
I'm rehashing an old thread from xpert, 
http://marc.theaimsgroup.com/?t=9772209053r=1w=2 and propose the 
following patch, derived from how mga_vid.c (kernel module for Matrox 
BES from mplayer) programs the card. It basically disables that 
'accelerated 2x horizontal zoom' thing which causes the problem. (With 
this option on, it looks like information from only every other pixel is 
used.)

It also turns back on 'chroma upsampling' (which was only turned off in 
a failed attempt to solve the issue, see quoted thread) and changes the 
vsync position to 2 (a la mga_vid.c, seems as good a constant as what 
was used before but is simpler).

A good example for testing is 
http://cox.iwr.uni-heidelberg.de/~ug/films/stefan.mov

-Michael

Index: programs/Xserver/hw/xfree86/drivers/mga/mga_video.c
===
RCS file: /cvs/xc/programs/Xserver/hw/xfree86/drivers/mga/mga_video.c,v
retrieving revision 1.34
diff -u -r1.34 mga_video.c
--- programs/Xserver/hw/xfree86/drivers/mga/mga_video.c 20 Feb 2004 16:59:49 - 
 1.34
+++ programs/Xserver/hw/xfree86/drivers/mga/mga_video.c 15 Apr 2004 12:35:35 -
@@ -578,48 +578,29 @@
 short src_w, short src_h,
 short drw_w, short drw_h
 ){
+#define VSYNC_POS 2
+
 MGAPtr pMga = MGAPTR(pScrn);
-int tmp, hzoom, intrep;
-int maxOverlayClock;
+int tmp, intrep;
 
 CHECK_DMA_QUIESCENT(pMga, pScrn);
 
-/* got 48 scanlines to do it in */
-tmp = INREG(MGAREG_VCOUNT) + 48;
-/* FIXME always change it in vertical retrace use CrtcV ?*/
-if(tmp  pScrn-currentMode-CrtcVTotal)
-   tmp -= 49; /* too bad */
-else
-tmp = pScrn-currentMode-CrtcVTotal -1;
-
-tmp = pScrn-currentMode-VDisplay +1;
-/* enable accelerated 2x horizontal zoom when pixelclock 135MHz */
-
-if ((pMga-ChipRev = 0x80) || (pMga-Chipset == PCI_CHIP_MGAG550)) {
-   /* G450, G550 */
-   maxOverlayClock = 234000;
-} else {
-   maxOverlayClock = 135000;
-}
-
-hzoom = (pScrn-currentMode-Clock  maxOverlayClock) ? 1 : 0;
-
 switch(id) {
 case FOURCC_UYVY:
-   OUTREG(MGAREG_BESGLOBCTL, 0x00c0 | (3 * hzoom) | (tmp  16));
+   OUTREG(MGAREG_BESGLOBCTL, 0x00c0 | (VSYNC_POS  16));
break;
 case FOURCC_YUY2:
 default:
-   OUTREG(MGAREG_BESGLOBCTL, 0x0080 | (3 * hzoom) | (tmp  16));
+   OUTREG(MGAREG_BESGLOBCTL, 0x0080 | (VSYNC_POS  16));
break;
 }
 
 OUTREG(MGAREG_BESA1ORG, offset);
 
 if(y1  0x0001)
-   OUTREG(MGAREG_BESCTL, 0x00040c41);
+   OUTREG(MGAREG_BESCTL, 0x00050c41);
 else 
-   OUTREG(MGAREG_BESCTL, 0x00040c01);
+   OUTREG(MGAREG_BESCTL, 0x00050c01);
  
 OUTREG(MGAREG_BESHCOORD, (dstBox-x1  16) | (dstBox-x2 - 1));
 OUTREG(MGAREG_BESVCOORD, (dstBox-y1  16) | (dstBox-y2 - 1));
@@ -640,7 +621,7 @@
 OUTREG(MGAREG_BESVISCAL, tmp  0x001c);
 
 intrep = ((drw_w == src_w) || (drw_w  2)) ? 0 : 1;
-tmp = (((src_w - intrep)  16)/(drw_w - intrep))  hzoom;
+tmp = (((src_w - intrep)  16)/(drw_w - intrep));
 if(tmp = (32  16))
tmp = (32  16) - 1;
 OUTREG(MGAREG_BESHISCAL, tmp  0x001c);


Don't be left out

2004-04-15 Thread Eugenio Mayer
An associate of yours has set you up on a romantic appointment with someone.

Here is the invitation:
http://uniquedatingsite.com/confirm/?oc=53031001


The online dating club
made by WOMEN


Re: [I18n] Keysyms for Unicode values

2004-04-15 Thread Markus Kuhn
Dave Williss wrote on 2004-04-14 22:39 UTC:
 I've noticed that for the most part, XKeysym values are just
 the Unicode value of the character.

No, look closer, they are not. Unicode did not exist yet when keysyms
were defined, therefore, keysyms are in a sense something similar to
Unicode, but the code positions are competely different.

 However, there are
 obviously Unicode values which would overlap keysyms
 in the 0xFE00 to 0x range which would conflict.
 
 I've also noticed references to passing keysyms with
 the 0x0100 bit set to mean that the lower part of
 the keysym is a Unicode value.

 So my question is, for what Unicode values do I _need_ to
 use the 0x0100 bit and what ones should I not?
 I assume that if just set it for everything, old X clients
 would be confused by it and not know what to do.

The relationship between the keysyms and Unicode is currently being
addressed in a revision of the X11 protocol standard appendix that
officially defines the keysyms.

You can watch some of this process on the X.Org wiki page

  http://freedesktop.org/XOrg/KeySyms

In a nutshell: for characters for which a keysym already exists (with a
few exceptions where the meaning of the keysym is unclear), use the
existing keysym value. For characters for which no keysym exists, add
0x0100 to the Unicode value and use that instead. An official
round-trip compatible Unicode mapping table for the existing keysyms is
under preparation and will be part of the next major X.Org release.

http://www.cl.cam.ac.uk/~mgk25/unicode.html#x11

Markus

-- 
Markus Kuhn, Computer Lab, Univ of Cambridge, GB
http://www.cl.cam.ac.uk/~mgk25/ | __oo_O..O_oo__

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


[XFree86] Your cable Bill

2004-04-15 Thread Claude.Albright


[XFree86] Lower-Your-Cable-Bills

2004-04-15 Thread Madge.Shapiro
Thu, 15 Apr 2004 05:33:32 -0400
  
Dear Digital Cable-TV Viewer   


Have you heared about our Cable-TV-Adaptors allows cable watchers to get unlimited 
in-demand payperview channels, movies and sport events at 
N0-cost--2892891.3688440.JavaMail.ebayapp.rc-m8qjt17517--
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] XFree86 binary for via_drv.o

2004-04-15 Thread Jan VAN BESIEN
Hi

I'm using fedora core 1 on a asus motherbord with a via km400 chipset. 
Some months ago I downloaded via_drv.o and an XFree86 binary which worked 
perfectly well. I try to do the same now, but I don't seem to find that 
XFree86 binary.

The one on http://www.xfree86.org/~alanh/ is not correct? (way to small size).

Just copying the module, and keeping the existing XFree86 (from 
XFree86-4.3.0-55.rpm) is not working.

What am I doing wrong?

thanks in advance,
Jan
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] (no subject)

2004-04-15 Thread
Hello xfree86,
  HELP ME!!!
  On Red Hat Linux 7.0 and NVidia GeForce 2 i can`t start X Server. It
  get me message Fatal server error: screens not found!
  Please, help me!

-- 
Best regards,
 PeRsEi  mailto:[EMAIL PROTECTED]


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


[XFree86] S-video under X-Windows on FreeBSD 4.10

2004-04-15 Thread Erik Schoonover
I am working on a project that I need to be able to get s-video to work
under FreeBSD and X-Windows. I am using a GeForce4 mx440 card and/or a ATI
Raddeon 9200. I can get mplayer to work with VGA and play a dvd, but I get
nothing when I plug in the s-video to the TV I get nothing. I know that the
svideo works becuase I can but it in a windows box and get the video. Is
there anything that I need to add to the Xf86Config file or is there a
change to one of the drivers? Any help that can give me please. 

Erik
[EMAIL PROTECTED]

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


[XFree86] my x server failed

2004-04-15 Thread naju
 hi,


 my x server fails to start.because of this i cannot get my work done. though the text mode works it is not much fun.
   i am attaching the /var/log/XFree86.0.log file as problem.txt
   please give me an early reply.I am in a problemIndiatimes Email now powered by APIC Advantage. Help! HelpClick on the image to chat with me

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 Apr 14 14:56:39 2004
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Intel 810
(**) |--Input Device Mouse0
(**) |--Input Device Mouse1
(**) |--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,7120 card 8086,7120 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7121 card 8086,0200 rev 03 class 03,00,00 hdr 00
(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:5: chip 8086,2415 card 11d4,4352 rev 02 class 04,01,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: 0x0002 (VGA_EN is cleared)
(II) Bus 1 I/O range:
[0] -1  0   0xc000 - 0xcfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xefd0 - 0xefdf (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xe7b0 - 0xe7bf (0x10) 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:*(0:1:0) Intel Corp. 82810 CGC [Chipset Graphics Controller] rev 3, Mem @ 
0xe800/26, 0xeff8/19
(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]
[3] -1  0   0x000c - 0x000e (0x3) MX[B]
[4] -1  0   0x - 0x0009 (0xa) MX[B]
[5] -1  0   0x - 0x (0x1) IX[B]
[6] -1  0   0x - 0x00ff (0x100) IX[B]
(II) Active PCI resource ranges:
[0] -1  0   0xeff8 

[XFree86] Microsoft Basic Optical Mouse(USB)

2004-04-15 Thread Jonatan Palsson
Hello, i am using a Microsoft Basic Optical Mouse(USB) and it works fine most of the 
time, but within 5 sec of movement, it jumps to a random location, then its fine again.
I find this very annoying.
I am currently using /dev/input/mice as my device for the mouse and Auto as 
protocol..
What should i do?
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [inbox] [XFree86] Microsoft Basic Optical Mouse(USB)

2004-04-15 Thread David
The problem is probably not XFree or Linux.
Optical mice do this a lot. If you can boot another OS you could check whether 
it behaves the same way. 

Experiment with mouse pads. You want one that is matt rather than glossy.



On Friday 16 Apr 2004 16:06, Jonatan Palsson wrote:
 Hello, i am using a Microsoft Basic Optical Mouse(USB) and it works fine
 most of the time, but within 5 sec of movement, it jumps to a random
 location, then its fine again. I find this very annoying.
 I am currently using /dev/input/mice as my device for the mouse and Auto
 as protocol.. What should i do?
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86

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


Re: [inbox] [XFree86] Microsoft Basic Optical Mouse(USB)

2004-04-15 Thread Jonatan Palsson
On Thu, 15 Apr 2004 18:22:52 +0200
David [EMAIL PROTECTED] wrote:

 The problem is probably not XFree or Linux.
 Optical mice do this a lot. If you can boot another OS you could check whether 
 it behaves the same way. 
 
 Experiment with mouse pads. You want one that is matt rather than glossy.
 
 
 
 On Friday 16 Apr 2004 16:06, Jonatan Palsson wrote:
  Hello, i am using a Microsoft Basic Optical Mouse(USB) and it works fine
  most of the time, but within 5 sec of movement, it jumps to a random
  location, then its fine again. I find this very annoying.
  I am currently using /dev/input/mice as my device for the mouse and Auto
  as protocol.. What should i do?
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

Okay, that made me feel really lame.. (prolly as lame as i am)
I removed the mousepad.. works great..
/me slaps self :D
Thanks alot, David.

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


Re: [XFree86] X does not start

2004-04-15 Thread buffer emailaccount
Thank you. That did the trick.
--

--- Mark Vojkovich [EMAIL PROTECTED] wrote:
You are using the nv driver that comes with
 XFree86 but
 you have a glx module from an ancient NVIDIA binary
 release.
 Remove NVIDIA's
 /usr/X11R6/lib/modules/extensions/libglx.so
 and the nv driver should start.
 
   Mark.
 
 On Tue, 13 Apr 2004, buffer emailaccount wrote:
 
  Please help !
 
  X does not start after I upgraded my machine from
  RedHat 7.2 to 9.0. I then installed the current
  version of XFree86 4.4 but that did not help
 either.
 
  The system has a nVIDIA, Quadro2 Pro 64MB Video
 Card
  and is connected to a Dell M991 monitor.
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86





__
Do you Yahoo!?
Yahoo! Tax Center - File online by April 15th
http://taxes.yahoo.com/filing.html
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] How to configure XFree86

2004-04-15 Thread Bruno Faria



Dear all,

I'm runningXFree86 under Linux RetHat 
7.1

I'd like to know how to configure XFree in order to 
retain subwindows.

Thank you very much for your help in 
advance.

Best regards,
Bruno


[XFree86] Xfree86 quits but gives no error - may be nvidia drivers related

2004-04-15 Thread John
xf86/os versions:
(B
(BXFree86 Version 4.3.0.1
(BRelease Date: 15 August 2003
(BX Protocol Version 11, Revision 0, Release 6.6
(BBuild Operating System: Linux 2.4.20-xfs-r3 i686 [ELF]
(B
(Bdetails:
(B
(BOk, the deal is this.  I recently had everything working just dandy with 
(BXinerama
(Band two screens.  I recently decided to remove one of the cards, rewrite my
(BXF86 Config file, and just use one screen.  The card I am using is a TNT2.
(B
(BI am using the nvidia drivers and glx.  What happens if I try to run 
(B'startx'
(Bas a user, I will see the nvidia splash screen, then X will exit right back
(Bto the console.  There are no errors given, even in the log (I'll paste
(Bthat in) The line it displays on exit is:
(B
(B(II) [GLX]: Initializing GLX extension
(B
(BAs root, X loads just fine (same config file as user).  So I figure this is
(Bprobably permissions somewhere.  The other possibility is xinerama is 
(Bcausing
(Bproblems.  I suspected this and recompiled xf86 (I use gentoo and emerged
(Bwith the "-xinerama" use flag, but for some reason I still see the 
(Bextension
(B"initializing" in the log)
(B
(BI'll be grateful for any pointers.  I've tried a bunch of stuff already.
(BAs follows is my config and last log run as a user.
(B
(B--
(B
(BThis is a pre-release version of XFree86, and is not supported in any
(Bway.  Bugs may be reported to [EMAIL PROTECTED] and patches submitted
(Bto [EMAIL PROTECTED]  Before reporting bugs in pre-release versions,
(Bplease check the latest version in the XFree86 CVS repository
(B(http://www.XFree86.Org/cvs).
(B
(BXFree86 Version 4.3.0.1
(BRelease Date: 15 August 2003
(BX Protocol Version 11, Revision 0, Release 6.6
(BBuild Operating System: Linux 2.4.20-xfs-r3 i686 [ELF]
(BBuild Date: 14 April 2004
(B	Before reporting problems, check http://www.XFree86.Org/
(B	to make sure that you have the latest version.
(BModule Loader present
(BMarkers: (--) probed, (**) from config file, (==) default setting,
(B  (++) from command line, (!!) notice, (II) informational,
(B  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(B(==) Log file: "/var/log/XFree86.0.log", Time: Thu Apr 15 15:46:01 2004
(B(==) Using config file: "/etc/X11/XF86Config"
(B(==) ServerLayout "Simple Layout"
(B(**) |--Screen "Screen 1" (0)
(B(**) |   |--Monitor "q71"
(B(**) |   |--Device "tnt2"
(B(**) |--Input Device "Mouse1"
(B(**) |--Input Device "Keyboard1"
(B(**) Option "AutoRepeat" "500 30"
(B(**) Option "XkbRules" "xfree86"
(B(**) XKB: rules: "xfree86"
(B(**) Option "XkbModel" "pc101"
(B(**) XKB: model: "pc101"
(B(**) Option "XkbLayout" "us"
(B(**) XKB: layout: "us"
(B(==) Keyboard: CustomKeycode disabled
(B(**) FontPath set to 
(B"/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(B(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(B(==) ModulePath set to "/usr/X11R6/lib/modules"
(BUsing vt 7
(B(--) using VT number 7
(B
(B(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(B(II) Module ABI versions:
(B	XFree86 ANSI C Emulation: 0.2
(B	XFree86 Video Driver: 0.6
(B	XFree86 XInput driver : 0.4
(B	XFree86 Server Extension : 0.2
(B	XFree86 Font Renderer : 0.4
(B(II) Loader running on linux
(B(II) LoadModule: "bitmap"
(B(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(B(II) Module bitmap: vendor="The XFree86 Project"
(B	compiled for 4.3.0.1, module version = 1.0.0
(B	Module class: XFree86 Font Renderer
(B	ABI class: XFree86 Font Renderer, version 0.4
(B(II) Loading font Bitmap
(B(II) LoadModule: "pcidata"
(B(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(B(II) Module pcidata: vendor="The XFree86 Project"
(B	compiled for 4.3.0.1, module version = 1.0.0
(B	ABI class: XFree86 Video Driver, version 0.6
(B(II) PCI: Probing config type using method 1
(B(II) PCI: Config type is 1
(B(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(B(II) PCI: PCI scan (all values are in hex)
(B(II) PCI: 00:00:0: chip 8086,7190 card , rev 02 class 06,00,00 hdr 
(B00
(B(II) PCI: 00:01:0: chip 8086,7191 card , rev 02 class 06,04,00 hdr 
(B01
(B(II) PCI: 00:04:0: chip 8086,7110 card , rev 02 class 06,01,00 hdr 
(B80
(B(II) PCI: 00:04:1: chip 8086,7111 card , rev 01 class 01,01,80 hdr 
(B00
(B(II) PCI: 00:04:2: chip 8086,7112 card , rev 01 class 0c,03,00 hdr 
(B00
(B(II) PCI: 00:04:3: chip 8086,7113 card , rev 02 class 06,80,00 hdr 
(B00
(B(II) PCI: 00:06:0: chip 9005,001f card 9005,000f rev 00 class 01,00,00 hdr 
(B00
(B(II) PCI: 00:0a:0: chip 8086,1229 card 103c,10c0 rev 02 class 02,00,00 hdr 
(B00
(B(II) PCI: 01:00:0: chip 

Re: [inbox] [XFree86] Microsoft Basic Optical Mouse(USB)

2004-04-15 Thread David
Don't feel too bad about it. I had to learn this from my vendor! 
Coincidentally his advertising mouse mats work excellently with my optical 
mouse.

On Friday 16 Apr 2004 18:54, Jonatan Palsson wrote:
 On Thu, 15 Apr 2004 18:22:52 +0200

 David [EMAIL PROTECTED] wrote:
  The problem is probably not XFree or Linux.
  Optical mice do this a lot. If you can boot another OS you could check
  whether it behaves the same way.
 
  Experiment with mouse pads. You want one that is matt rather than glossy.
 
  On Friday 16 Apr 2004 16:06, Jonatan Palsson wrote:
   Hello, i am using a Microsoft Basic Optical Mouse(USB) and it works
   fine most of the time, but within 5 sec of movement, it jumps to a
   random location, then its fine again. I find this very annoying.
   I am currently using /dev/input/mice as my device for the mouse and
   Auto as protocol.. What should i do?
   ___
   XFree86 mailing list
   [EMAIL PROTECTED]
   http://XFree86.Org/mailman/listinfo/xfree86
 
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86

 Okay, that made me feel really lame.. (prolly as lame as i am)
 I removed the mousepad.. works great..
 /me slaps self :D
 Thanks alot, David.

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

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


Re: [inbox] [XFree86] Microsoft Basic Optical Mouse(USB)

2004-04-15 Thread Dustin E
David, i have this problem with my logitech mouse in windows. For windows i
have to install correct drivers... (i must change the normal PS/2 drivers
with the logitech ones) maybe its the same with your mouse. While building
another linux from scratch last week with the 2.6.2 kernel i saw alot of
mouse support in it you should try compiling a new kernel.

Note for my mouse i can get away with running:
# cd /dev
# ln -s psaux

-DustinE
- Original Message - 
From: David [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, April 15, 2004 1:32 PM
Subject: Re: [inbox] [XFree86] Microsoft Basic Optical Mouse(USB)


 Don't feel too bad about it. I had to learn this from my vendor!
 Coincidentally his advertising mouse mats work excellently with my optical
 mouse.

 On Friday 16 Apr 2004 18:54, Jonatan Palsson wrote:
  On Thu, 15 Apr 2004 18:22:52 +0200
 
  David [EMAIL PROTECTED] wrote:
   The problem is probably not XFree or Linux.
   Optical mice do this a lot. If you can boot another OS you could check
   whether it behaves the same way.
  
   Experiment with mouse pads. You want one that is matt rather than
glossy.
  
   On Friday 16 Apr 2004 16:06, Jonatan Palsson wrote:
Hello, i am using a Microsoft Basic Optical Mouse(USB) and it
works
fine most of the time, but within 5 sec of movement, it jumps to a
random location, then its fine again. I find this very annoying.
I am currently using /dev/input/mice as my device for the mouse and
Auto as protocol.. What should i do?
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
  
   ___
   XFree86 mailing list
   [EMAIL PROTECTED]
   http://XFree86.Org/mailman/listinfo/xfree86
 
  Okay, that made me feel really lame.. (prolly as lame as i am)
  I removed the mousepad.. works great..
  /me slaps self :D
  Thanks alot, David.
 
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86

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

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


[XFree86] XIO: fatal IO error 105 (No buffer space available)

2004-04-15 Thread Curt, WE7U
I'm running an application on linux.  Every once in a while (two
times so far this week) the application will fall over with this
message:

  XIO: fatal IO error 105 (No buffer space available)

Doing a google search I found a similar Cygwin problem.  Our
application will run under Cygwin as well but at the moment I'm
discussing a Linux problem:

  http://www.cygwin.com/ml/cygwin-xfree/2001-q4/msg00558.html

This seems to adequately describe the problem I'm seeing.  The
problem seems to happen overnight for me, perhaps when the system is
busy right after midnight rolling over logfiles and such.  The
application (xastir.sourceforge.net) is busy writing a lot of small
pixmaps to the screen at times, particularly when at U.S.-view or
World-wide-view map scales.

Is there anything I can do in the application to prevent this or is
it an X11 library bug?


I'm running SuSE Linux 9.0 and this X11 version:

  XFree86 Version 4.3.0.1
  Release Date: 9 May 2003
  X Protocol Version 11, Revision 0, Release 6.6
  Build Operating System: SuSE Linux [ELF] SuSE
  Build Date: 12 February 2004

--
Curt, WE7U  archer at eskimo dot com
Arlington, WA, USA  http://www.eskimo.com/~archer
Lotto:A tax on people who are bad at math. -- unknown
Windows:  Microsoft's tax on computer illiterates. -- WE7U
The world DOES revolve around me:  I picked the coordinate system!
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] El lugar donde buscar tu pareja

2004-04-15 Thread Charo Clayton
Title: Top Singles Networks
Le gustaría ver miles de fotos de solteros que están buscando su pareja?Solo haga clic aqu y seleccione sexo y edad de las personas que le gustaría conocer, y descubra también, lo que nos cuentan en sus perfiles.No espere más para conocer a la persona que tanto le gustaría, tome el destino en sus manos y descubra lo fácil que es conocer gente en Top Singles Network. Clic acáCargue su perfil en forma gratuita y expóngase a que miles de solteros se comuniquen con Ud. Clic acáLo esperamos.Top Singles Network StaffSi desea desuscribirse de este sitio, por favor envie un email presionando opcion 1 o simplemente envie un email en blanco a desuscribiremail2@yahoocommx




Re: [XFree86] (no subject)

2004-04-15 Thread Mark Vojkovich
   We need to see the /var/log/XFree86.0.log to be sure, but
generally that error means that your XFree86 version is too old
to support your video card.  I would guess that your XFree86
is years old.

Mark.

On Wed, 10 Mar 2004, [Windows-1251] Ïåðñåé wrote:

 Hello xfree86,
   HELP ME!!!
   On Red Hat Linux 7.0 and NVidia GeForce 2 i can`t start X Server. It
   get me message Fatal server error: screens not found!
   Please, help me!

 --
 Best regards,
  PeRsEi  mailto:[EMAIL PROTECTED]


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


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


Re: [XFree86] S-video under X-Windows on FreeBSD 4.10

2004-04-15 Thread Mark Vojkovich
   It won't work with the nv driver that ships with XFree86,
but it's supposed to be able to work with NVIDIA's binary drivers.

Mark.

On Thu, 15 Apr 2004, Erik Schoonover wrote:

 I am working on a project that I need to be able to get s-video to work
 under FreeBSD and X-Windows. I am using a GeForce4 mx440 card and/or a ATI
 Raddeon 9200. I can get mplayer to work with VGA and play a dvd, but I get
 nothing when I plug in the s-video to the TV I get nothing. I know that the
 svideo works becuase I can but it in a windows box and get the video. Is
 there anything that I need to add to the Xf86Config file or is there a
 change to one of the drivers? Any help that can give me please.

 Erik
 [EMAIL PROTECTED]

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

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


Re: [XFree86] How to configure XFree86

2004-04-15 Thread Mark Vojkovich
   Subwindows?  You mean backing store/save unders?  That would
be +bs from the commandline.  Eg. startx -- +bs.

Mark.

On Thu, 15 Apr 2004, Bruno Faria wrote:

 Dear all,

 I'm running XFree86 under Linux Ret Hat 7.1

 I'd like to know how to configure XFree in order to retain subwindows.

 Thank you very much for your help in advance.

 Best regards,
 Bruno

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


[XFree86] Trouble with my X server

2004-04-15 Thread Johnny Alberto Madrid Heredia
hello, i'm from Venezuela and i really tell you a big thanks to help with 
the next trouble. 

I agree the file '/var/log/XFree86.0.log' 

_XSERVTransSocketINETCreateListener: ...SocketCreateListener() failed
_XSERVTransMakeAllCOTSServerListeners: server already running

Fatal server error:
Cannot establish any listening sockets - Make sure an X server isn't already running

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]



Re: [XFree86] Xfree86 quits but gives no error - may be nvidia drivers related

2004-04-15 Thread Mark Vojkovich
On Thu, 15 Apr 2004, John wrote:

 xf86/os versions:

 XFree86 Version 4.3.0.1
 Release Date: 15 August 2003
 X Protocol Version 11, Revision 0, Release 6.6
 Build Operating System: Linux 2.4.20-xfs-r3 i686 [ELF]

 details:

 Ok, the deal is this.  I recently had everything working just dandy with
 Xinerama
 and two screens.  I recently decided to remove one of the cards, rewrite my
 XF86 Config file, and just use one screen.  The card I am using is a TNT2.

 I am using the nvidia drivers and glx.  What happens if I try to run
 'startx'
 as a user, I will see the nvidia splash screen, then X will exit right back
 to the console.  There are no errors given, even in the log (I'll paste
 that in) The line it displays on exit is:


   According to the log file, there's nothing wrong with the
server.  Perhaps this is a problem with your startx script instead
(like the window manager no longer works).  Does just running
XFree86 alone work?


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


Re: [XFree86] Problems with my X server

2004-04-15 Thread Mark Vojkovich
   Your attachment appears to be incomplete.  We need to see
the full /var/log/XFree86.0.log file.

Mark.

On Thu, 15 Apr 2004, Johnny Alberto Madrid Heredia wrote:

 hello i'm from Venezuela and i want to help me about the trouble that i
 agree.

 please read the adjust that i put

 thanks so much...


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


Re: [inbox] [XFree86] Microsoft Basic Optical Mouse(USB)

2004-04-15 Thread David
I don't rule out that this could solve it. After all the mouse should not 
behave that way. Point is, changing the mouse pad worked and I still am not 
at home with compiling kernels. (The road to gurudom is long and steep).

However point noted for when I install Mandrake 10 - in the near future I 
hope.


On Thursday 15 Apr 2004 22:48, Dustin E wrote:
 David, i have this problem with my logitech mouse in windows. For windows i
 have to install correct drivers... (i must change the normal PS/2 drivers
 with the logitech ones) maybe its the same with your mouse. While building
 another linux from scratch last week with the 2.6.2 kernel i saw alot of
 mouse support in it you should try compiling a new kernel.

 Note for my mouse i can get away with running:
 # cd /dev
 # ln -s psaux

 -DustinE
 - Original Message -
 From: David [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, April 15, 2004 1:32 PM
 Subject: Re: [inbox] [XFree86] Microsoft Basic Optical Mouse(USB)

  Don't feel too bad about it. I had to learn this from my vendor!
  Coincidentally his advertising mouse mats work excellently with my
  optical mouse.
 
  On Friday 16 Apr 2004 18:54, Jonatan Palsson wrote:
   On Thu, 15 Apr 2004 18:22:52 +0200
  
   David [EMAIL PROTECTED] wrote:
The problem is probably not XFree or Linux.
Optical mice do this a lot. If you can boot another OS you could
check whether it behaves the same way.
   
Experiment with mouse pads. You want one that is matt rather than

 glossy.

On Friday 16 Apr 2004 16:06, Jonatan Palsson wrote:
 Hello, i am using a Microsoft Basic Optical Mouse(USB) and it

 works

 fine most of the time, but within 5 sec of movement, it jumps to a
 random location, then its fine again. I find this very annoying.
 I am currently using /dev/input/mice as my device for the mouse and
 Auto as protocol.. What should i do?
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
   
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
  
   Okay, that made me feel really lame.. (prolly as lame as i am)
   I removed the mousepad.. works great..
   /me slaps self :D
   Thanks alot, David.
  
   ___
   XFree86 mailing list
   [EMAIL PROTECTED]
   http://XFree86.Org/mailman/listinfo/xfree86
 
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86

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

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