Re: Endianity problems in XFree86-4 XAA on MipsEB

2003-02-11 Thread Alexandr Andreev
Michel Dänzer wrote:


Yes of course, but In the first case the __most__ significant byte of 
the bits[0] contains data and in the second case the __last__ significant
byte of the bits[0] contains data. So, you obtain swapped pattern0 and 
pattern1 in the tile case.


I see where you're getting at, but does bits[0] really have the same
meaning in both cases?



Yes, I think so.
Let's assume that:
1. bpp = 8, pPixmap-drawable.width = pPixmap-drawable.height = 8;
2. our tile can be reduced to __mono__ 8x8 pattern.

1. stipple case
XAACheckStippleReducibility(PixmapPtr pPixmap)
{
...
CARD32 *IntPtr = (CARD32*)pPixmap-devPrivate.ptr;
CARD32 bits[8];

...
	  /* for our case i = 8*/
   while(i--)
   bits[i] = IntPtr[i]  mask; /* where mask = 0xFF00 */
   break;
...
}

intPtr[0] contains valid data in the most significant byte for BE 
machines, so you
need 0xFF00 mask to get vaild data from intPtr[0] and put it to
bits[0]. So, the MSB of bits[0] contains first string bitmask of 8x8 
pattern.
And I guess there is no any endianity problems here.

2. tile case
XAACheckTileReducibility(PixmapPtr pPixmap, Bool checkMono)
{
CARD32 *IntPtr;
...

if(checkMono) {
...
if(pPixmap-drawable.bitsPerPixel == 8) {
			/* this is our case */
unsigned char *srcp = pPixmap-devPrivate.ptr;
	...
			/* i = j = 8 for our case */
for(y = 0; y  i; y++) {
bits[y] = 0;
for(x = 0; x  j; x++) {
   if(srcp[x] != fg) {
		/* return if there is more then to colors in tile */
if(bg == -1) bg = srcp[x];
else if(bg != srcp[x]) return TRUE;
   } else bits[y] |= 1  x;
}
srcp += pitch;
}
	...

In this case bits[0] also contains the first string of 8x8 pattern
(as I understand), but in the last significant byte (bits[0]  0x00FF).

... but maybe there is a problem in code were pPixmap-devPrivate.ptr
is filled.

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


Re: about change 614. Restore the Alt/Meta mappings for pc104/pc105...

2003-02-11 Thread Mike A. Harris
On 7 Feb 2003, Jens Petersen wrote:

[Feel free to cc me since I'm not currently subscribed to the list.]

Hello,

I would like to ask why the following change was made to the
pc symbols file.  Why should we rather have Super on Win
keys in 4.3, than Meta as in 4.2?  Additionally xkb doesn't
seem to want to have both Alt and Meta on the some modifier
currently afaict.

Thanks for any light on the matter,

One word: consistency

When $JOE_USER goes to one computer, and presses the key labelled 
foo, he expects to have it respond with action bar.  When he 
goes to a different computer with a keyboard with a few extra 
keys, and he presses the key labelled foo, he expects the key 
to respond with action bar as well.

Having a frequently used keypress like Meta be one key on one 
keyboard, and some other key on a very similar keyboard that just 
has a few extra bonus keys, is not only insane, it is a technical 
support nightmare.

I don't think anyone would want to be working telephone helpdesk 
support if Meta was to be a different key on 4 different 
keyboards.  ;o)

There are people out there who prefer the Meta key to not be the 
same as the Alt key, however I believe those people are also 
technically competant enough to configure XFree86 to remap the 
key to be the Windows key or whatever else they choose much 
easier than $JOE_USER can remap Meta to be Alt, where the 
majority of people are going to expect it.

It's just a case of making the defaults sane for the average 
user.

This is the same behaviour as under 4.2.x

-- 
Mike A. Harris




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



Re: repeated X restarts with i810 not freeing sys resources?

2003-02-11 Thread patrick charles
 On Saturday 08 February 2003 05:41 pm, David Dawes wrote:
  On Sat, Feb 08, 2003 at 01:07:25PM -0700, patrick charles wrote:
  How would I communicate this? Somebody on XFree86 working with or have
   contact with the appropriate people in kernel/agpgart development?
 
  First of all, how are you killing the X server?  I haven't seen this
  behaviour when the X server exits normally, and I've done a lot of
  testing where 32MB is allocated per run on machines with only 128MB of
  physical memory.
 
  There are people here familiar with the kernel agpgart driver.
 
  Note that just because top shows that there's little memory free doesn't
  mean that the agpgart driver isn't freeing it.  Also the agpgart driver
  allocates physical pages, never swap.  I'm not sure what the symptoms
  are when it can't get any free physical pages.  On my test system the
  free memory indicated by top does go up when the X server exits, and
  this is on an otherwise idle system.
 
  So, I'd suggest starting a bare X server (run just 'X') on an otherwise
  idle system, see what top reports, then exit it cleanly
  (CtrlAltBackspace), and see if the free memory amount changes.
  Check the X server log to confirm how much memory was allocated via the
  agpgart mechanism (look for the lines containing Allocated).
 
  If that looks OK, then try the same thing you tried before but with a
  bare X server and an idle system.
 
  David


David,

I ran some tests as you suggested. I started up a bare X server using the command 'X' 
on an idle system. I then exited cleanly using ctrl-alt-bak.

I recorded the amount of physical RAM free before and after the X start. I repeated 
this process.

After 13 iterations, the machine became very sluggish.

After 16 iterations, the machine hung.

Still looks like X (or, the agpgart driver?) is not freeing resources.
The machine gradually ran out of physical RAM.

Let me know if I can provide any more information, XFree86 logs, or?

Details attached.

thanks,
-pat


[ 0] after fresh boot
w/ no X running: 84,516K free

[ 1] after running 'X':  56,472K free
[ 1] after ctrl-alt-bak: 68,796K free

[ 2] after running 'X':  48,104K free
[ 2] after ctrl-alt-bak: 60,656K free

[ 3] after running 'X':  40,716K free
[ 3] after ctrl-alt-bak: 53,272K free

[ 4] after running 'X':  33,228K free
[ 4] after ctrl-alt-bak: 45,784K free

[ 5] after running 'X':  25,888K free
[ 5] after ctrl-alt-bak: 38,472K free

[ 6] after running 'X':  18,572K free
[ 6] after ctrl-alt-bak: 31,116K free

[ 7] after running 'X':  11,372K free
[ 7] after ctrl-alt-bak: 23,672K free

[ 8] after running 'X':   4,096K free
[ 8] after ctrl-alt-bak: 16,344K free

[ 9] after running 'X':   1,060K free
[ 9] after ctrl-alt-bak: 13,856K free

[10] after running 'X':   1,180K free
[10] after ctrl-alt-bak: 13,640K free

[11] after running 'X': 952K free
[11] after ctrl-alt-bak: 13,400K free


[12] after running 'X': 984K free
[12] after ctrl-alt-bak: 13,400K free

[13] after running 'X': 948K free
[13] after ctrl-alt-bak: 13,400K free

[14] after running 'X': 948K free
[14] after ctrl-alt-bak: 10,000K free

[15] after running 'X': 944K free
[15] after ctrl-alt-bak:  5,704K free

[16] after running 'X':   [machine hung]
[16] 


After iteration #9, the machine started showing disk swap in use:
  [ 9]436K swap used
  [10]636K swap used
  [11]  1,088K swap used
  [12]  4,532K swap used
  [13]  8,444K swap used
  [14] 12,088K swap used
  [15] 12,492K swap used


After iteration #13, the machine starts to behave sluggishly, both at the command-line 
and when painting/moving the cross-hair cursor on the bare X desktop. Presumably 
because components of the core o/s are being swapped in and out of RAM?
After 16 iterations, X hung on startup, the cross-hair cursor didn't appear. All your 
base are belong to us. I couldn't stop X and got no response when trying to remotely 
ssh to the machine.

System is a Dell GX60 with integrated intel extreme graphics

XFree86 Version 4.2.99.901 (4.3.0 RC 1)
Driver is i810
Kernel is 2.4.20-2.36




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



Re: [Fonts] A serious problem about freetype module

2003-02-11 Thread Chisato Yamauchi
 The calculation of bpr looks a little unusual to me, but I don't know
 how all the parameters are used.
 
 I'll commit your patch now since it does help prevent a crash.

  Thanks.

  I confirmed that this buffer overflow occurs memcpy() in 
ftfuncs.c:


if(dx == 0  dy == 0  bpr == bitmap-pitch) {
memcpy(raster, bitmap-buffer, bitmap-rows * bitmap-pitch);
} else if(dx == 0) {


  'bitmap-rows * bitmap-pitch' sometimes exceeds 'ht*bpr' 
when displaying kochi-mincho.ttf, so X crashes.

  The following is a patch for improving safety.  Although 
not 'ht+2' but 'ht' is used, the crash does not occur.


Chisato Yamauchi


*** xc/lib/font/FreeType/ftfuncs.c._orig_   2003-02-09 21:02:43.0 +0900
--- xc/lib/font/FreeType/ftfuncs.c  2003-02-11 17:30:35.0 +0900
***
*** 600,627 
  bpr = (((wd + (instance-bmfmt.glyph3) - 1)  3)  
 -instance-bmfmt.glyph);
  if(tgp) {
! raster = (char*)xalloc((ht+2) * bpr);
  if(raster == NULL) 
  return AllocError;
! memset(raster, 0, (ht+2) * bpr);
  }
  
  if(dx == 0  dy == 0  bpr == bitmap-pitch) {
! memcpy(raster, bitmap-buffer, bitmap-rows * bitmap-pitch);
  } else if(dx == 0) {
! for(i = MAX(0, -dy); i  bitmap-rows  i + dy  ht; i++)
! memcpy(raster + (i + dy) * bpr,
!bitmap-buffer + i * bitmap-pitch,
!bitmap-pitch);
  } else {
  for(i = MAX(0, -dy); i  bitmap-rows  i + dy  ht; i++) {
  for(j = MAX(0, -dx); j  bitmap-width  j + dx  wd; j++) {
  int set;
  set = (bitmap-buffer[i * bitmap-pitch + j / 8] 
 1  (7 - j % 8));
! if(set)
! raster[(i + dy) * bpr + (j + dx) / 8] |=
! 1  (7 - (j + dx) % 8);
  }
  }
  }
--- 600,643 
  bpr = (((wd + (instance-bmfmt.glyph3) - 1)  3)  
 -instance-bmfmt.glyph);
  if(tgp) {
! raster = (char*)xalloc(ht * bpr);
  if(raster == NULL) 
  return AllocError;
! memset(raster, 0, ht * bpr);
  }
  
  if(dx == 0  dy == 0  bpr == bitmap-pitch) {
!   size_t cpy_size=bitmap-rows * bitmap-pitch;
!   if( ht*bpr  cpy_size ) cpy_size=ht*bpr;
! memcpy(raster, bitmap-buffer, cpy_size);
  } else if(dx == 0) {
! for(i = MAX(0, -dy); i  bitmap-rows  i + dy  ht; i++){
!   int cpy_begin=(i + dy) * bpr;
!   size_t cpy_size=bitmap-pitch;
!   if( cpy_begin  ht*bpr ){
!   if( ht*bpr  cpy_begin+cpy_size ){
!   cpy_size = ht*bpr-cpy_begin;
!   }
!   memcpy(raster + cpy_begin,
!  bitmap-buffer + i * bitmap-pitch,
!  cpy_size);
!   }
!   }
  } else {
  for(i = MAX(0, -dy); i  bitmap-rows  i + dy  ht; i++) {
  for(j = MAX(0, -dx); j  bitmap-width  j + dx  wd; j++) {
  int set;
  set = (bitmap-buffer[i * bitmap-pitch + j / 8] 
 1  (7 - j % 8));
! if(set){
!   int target = (i + dy) * bpr + (j + dx) / 8;
!   if( target  ht*bpr ){
!   raster[target] |= 1  (7 - (j + dx) % 8);
!   }
!   else{
!   break;
!   }
!   }
  }
  }
  }
___
Fonts mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/fonts



[Fonts] Re: A serious problem about freetype module

2003-02-11 Thread Mike FABIAN
Chisato Yamauchi [EMAIL PROTECTED] $B$5$s$O=q$-$^$7$?(B:
(B
(B It's strange, but I can't reproduce the crash, although I your
(B fix isn't yet included in the XFree86-4.2.99.901_CVS_20030205
(B I am currently running 
(B 
(Bxfd -fn -kochi-mincho-medium-r-normal--50-0-0-0-c-0-jisx0208.1983-0
(B 
(B doesn't crash when I use only the freetype module and not the xtt
(B module.
(B
(B   There are few glyphs of kochi-mincho.ttf leading to crash,
(B so we may not reproduce the crash with xfd.  I confirmed the
(B crash using xfd with this XFLD:
(B
(B   -kochi-mincho-medium-r-normal--24-0-0-0-c-0-jisx0208.1983-0 .
(B
(B   Did you try xfontsel?
(B
(BYes, but it didn't crash either.
(B
(BNow I can't reproduce the crash anymore anyway because I am running
(Byour fixed version already:
(B
(Bcvs log ftfuncs.c
(B[...]
(B
(Brevision 1.26
(Bdate: 2003/02/09 02:44:42;  author: dawes;  state: Exp;  lines: +3 -3
(B 864. Fix an X server crash with the "freetype" module when displaying
(B  kochi-mincho.ttf at a size of 18 pixels or higher (Chisato Yamauchi).
(B
(B
(B-- 
(BMike Fabian   [EMAIL PROTECTED]   http://www.suse.de/~mfabian
$B?gL2ITB-$O;E;v$NE($@!#(B
(B___
(BFonts mailing list
([EMAIL PROTECTED]
(Bhttp://XFree86.Org/mailman/listinfo/fonts



[XFree86] [Re:] Radeon Mobility U1

2003-02-11 Thread dj
I also have a problem with this video card, 
Here's a link http://www.wsu.edu/~ice124/ that well describes what happens on my PC:
Currently, i'm using vesa driver ... and waiting xfree4.3 radeon/ati driver.

Hopes being helpfull


---
David Jeanneteau


Extract from specified link :

Configuring XFree86:

Getting XFree86 up and running is fairly simple.  There are two options for your 
display driver: use the generic vesa driver (provides 
basic 2D functions, but is stable) or the radeon driver (supports SVGA out and 
possibly 3D, but is slow).  I have included XF86Config 
files for both modes below.  Just move the files into your /etc/X11/ folder and rename 
them to XF86Config.

Vesa - This mode is the safest and most stable.  It's the mode I currently use. 
XFree86 4.3 should include a
faster, more optimized VESA driver.
Radeon - This mode is somewhat buggy in XFree86 4.2.  SVGA out works, as well as more 
advanced features

(transparency, etc).  However, this driver is VERY slow drawing to to the screen.  The 
good news is that the Radeon 7500 (which the 
Mobility U1 is based on) is slated to be fully supported in XFree86 4.3, which should 
be released, as they say, very soon.  If you're 
feeling particularly brave, you can try the 4.2.99 CVS from xfree86.org.  Good luck, 
and email me with any news.  If you are wondering, 
here are the settings I used for the display in the file:


 


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



Re: [XFree86] Matrox Millenium and SyncOnGreen

2003-02-11 Thread Dr Andrew C Aitchison
On Tue, 11 Feb 2003, Lincoln Ramsay wrote:

 I am trying to get a Matrox Millenium 1 card to put into an old PC so I
 can power an old fixed frequency monitor. I have a 3-BNC cable that I
 can use but which requires SyncOnGreen. The 4.2.0 mga man page[1]
 suggests that SyncOnGreen will work but Matrox's documentation for the
 Millenium states that it is a separate sync only card. Actually, all the
 supported Matrox cards seem to be separate sync only according to
 Matrox. Perhaps it's a driver thing...
 
 So does anyone know if a Matrox Millenium 1 under XFree86 4.2.0 (or any
 version) supports SyncOnGreen?

The TVP3026 RAMdac on the Matrox Millenium 1 supports sync-on-green,
and code to support it has been in the driver for many years.

There was a time when sync-on-green was broken in the mga driver,
for some cards (I don't remember which) so it might be worth trying
a different version if the first one fails.

I can't find the manual which came with my card to confirm that
Matrox supported sync-on-green on the Millennium, and I've never
connected mine  up to a sync-on-green monitor to confirm it,
but IIRC I got a mono signal on a TV by connecting the green output 
directly to the composite-video in on a SCART socket, and enabling 
sync-on-green.

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

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



[XFree86] Multihead monitor maximum limit

2003-02-11 Thread Widiarto



Hi all,

I wonder how many VGA adapter that XFree86 server 
can handle to use multi head monitor? I've already tried 4 and it work!.. I 
wanna try more than 4 but my motherboard only have 4 PCI :((.
I see on the website there is industrial PC 
backplane which has 18 PCI, is it possible if I use all 18 PCI with 18 VGA 
cards? Does anyone have tried this?
FYI, windows 2000 can support until 10 VGA and 
windows 98 until 8 VGA

Best Regards,

-Widi-


Inalix, PTJl. Cikini Raya 60 ii, Central Cikini 
Building 5th floorJakarta 10330INDONESIA

Phone: 62-21-3918672Mobile: 
62-815-9256801


Re: [XFree86] Multihead monitor maximum limit

2003-02-11 Thread Alan Hourihane
On Tue, Feb 11, 2003 at 05:23:00PM +0700, Widiarto wrote:
 Hi all,
 
 I wonder how many VGA adapter that XFree86 server can handle to use multi head 
monitor? I've already tried 4 and it work!.. I wanna try more than 4 but my 
motherboard only have 4 PCI :((.
 I see on the website there is industrial PC backplane which has 18 PCI, is it 
possible if I use all 18 PCI with 18 VGA cards? Does anyone have tried this?
 
 FYI, windows 2000 can support until 10 VGA and windows 98 until 8 VGA

XFree86 can support upto 16 screens at the moment, there's nothing stopping
you increasing that limit. The define for this is in

xc/programs/Xserver/include/misc.h 

and look for MAXSCREENS.

Different drivers etc may or may not work though. Certainly a good 
percentage of drivers have never been tested with that many heads.

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



Re: [XFree86] SiS - No XF86 drivers for the 650 and XFree does nothingbut give me errors because of this

2003-02-11 Thread Thomas Winischhofer
1) The sever crash is very probably not the fault of the sis driver. 
(The unresolved symbol - which is a bug, though - is not the problem)

2) There are unresolved symbols in libdri.a. Try commenting the line
		Load dri
in XF86Config-4.

Thomas


[EMAIL PROTECTED] wrote:
I downloaded and installed EVERYTHING from the new 4.2.99.3 version of XFree 
and still I can't find one driver that works!  I been trying to get this to 
work forever now and my brain is about done.  I got the Mandrake 9.0 Free 
version of Linux, it works just fine except all I get is the nice prompt 
because without the drivers XFree does nothing but make the screen flash 
during startup.  As far as I can tell I have an SiS 650 and the latest driver 
is for 630 (My computer is a Sony Viao PCV RX850 P4A 2.4Ghz 512MB of ram and 
says it has a 533MHz FSB/32MB 256-bit 3D Graphics Accelerator card and an 80 
GB HD if any of that helps in any way.).  After spending countless hours 
stareing at a blinking comand line cursor and emacs I'd appreciate any help 
from anybody that might have anything to releave my headache.  And I will 
include my latest log for anybody who cares to take some time to help me solve 
this annoyance. If anybody helps me I would be eternally greatful because I 
HATE WINDOWS and if I use it much longer my IQ will go through the floor and 
drown in a puddle in the basement!




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 Feb 10 20:05:48 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Server Layout
(**) |--Screen screen1 (0)
(**) |   |--Monitor My Monitor
(**) |   |--Device device1
(**) |--Input Device Keyboard1
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc101
(**) XKB: model: pc101
(**) Option XkbLayout us
(**) XKB: layout: us
(**) Option XkbOptions ctrl:ctrl_aa,caps:shift_nocancel,altwin:menu
(**) XKB: options: ctrl:ctrl_aa,caps:shift_nocancel,altwin:menu
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Mouse1
(**) FontPath set to unix/:-1
(==) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(**) Option AllowMouseOpenFail
(--) using VT number 2

(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.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/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 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1039,0651 card 1043,8079 rev 01 class 06,00,00 hdr 80
(II) PCI: 00:01:0: chip 1039,0001 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 1039,0962 card , rev 04 class 06,01,00 hdr 80
(II) PCI: 00:02:5: chip 1039,5513 card 104d,8133 rev 00 class 01,01,8a hdr 00
(II) PCI: 00:02:6: chip 1039,7013 card 104d,8128 rev a0 class 07,03,00 hdr 00
(II) PCI: 00:02:7: chip 1039,7012 card 104d,8127 rev a0 class 04,01,00 hdr 00
(II) PCI: 00:03:0: chip 1039,7001 card 104d,8133 rev 0f class 0c,03,10 hdr 80
(II) PCI: 00:03:1: chip 1039,7001 card 104d,8133 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:2: chip 1039,7001 card 104d,8133 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:3: chip 1039,7002 card 104d,8133 rev 00 class 0c,03,20 hdr 00
(II) PCI: 00:12:0: chip 10ec,8139 card 104d,80ea rev 10 class 02,00,00 hdr 00
(II) PCI: 00:13:0: chip 1033,00f2 card 104d,811e rev 01 class 0c,00,10 hdr 00
(II) PCI: 01:00:0: chip 1039,6325 card 104d,811c rev 00 class 03,00,00 hdr 00
(II) PCI: End of 

Re: [XFree86] [XFree86(TM) Bug Report] SiS - No XF86 drivers formy card

2003-02-11 Thread Thomas Winischhofer
Another point:

(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor=NVIDIA Corporation
	compiled for 4.0.2, module version = 1.0.4191
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.1

Your libglx is not only for NVIDIA cards, but also compiled for an 
ancient version of XFree86.

Thomas



Joseph wrote:
Regarding: SiS - No XF86 drivers for my card
Email: [EMAIL PROTECTED]

XFree86 Version: 4.2.99.3

OS: Mandrake 9.0 Free version

Area: Xserver

Server: Other, specify below

Server: SiS 650_651_740

Video Card:

SiS 650_651_740

Description:






--
Thomas Winischhofer
Vienna/Austria
mailto:[EMAIL PROTECTED]http://www.winischhofer.net/



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



Re: [XFree86] SiS - No XF86 drivers for the 650 and XFree does nothing but give me errors because of this

2003-02-11 Thread Alan Hourihane
Actually, it's the fault of the glx.so module that's from NVIDIA on
your system.

Remove the file /usr/X11R6/lib/modules/extensions/glx.so

Alan.

On Tue, Feb 11, 2003 at 11:45:06AM +0100, Thomas Winischhofer wrote:
 1) The sever crash is very probably not the fault of the sis driver. 
 (The unresolved symbol - which is a bug, though - is not the problem)
 
 2) There are unresolved symbols in libdri.a. Try commenting the line
   Load dri
 in XF86Config-4.
 
 Thomas
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] SiS - No XF86 drivers for the 650 and XFree does nothingbut give me errors because of this

2003-02-11 Thread Thomas Winischhofer
Hm, where have I seen this before...?


(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor=NVIDIA Corporation
	compiled for 4.0.2, module version = 1.0.4191
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.1


This is a library for NVIDIA cards, and it is compiled for an ancient 
version of XFree86.

Thomas


[EMAIL PROTECTED] wrote:
I downloaded and installed EVERYTHING from the new 4.2.99.3 version of XFree 
and still I can't find one driver that works!  I been trying to get this to 
work forever now and my brain is about done.  I got the Mandrake 9.0 Free 
version of Linux, it works just fine except all I get is the nice prompt 
because without the drivers XFree does nothing but make the screen flash 
during startup.  As far as I can tell I have an SiS 650 and the latest driver 
is for 630 (My computer is a Sony Viao PCV RX850 P4A 2.4Ghz 512MB of ram and 
says it has a 533MHz FSB/32MB 256-bit 3D Graphics Accelerator card and an 80 
GB HD if any of that helps in any way.).  After spending countless hours 
stareing at a blinking comand line cursor and emacs I'd appreciate any help 
from anybody that might have anything to releave my headache.  And I will 
include my latest log for anybody who cares to take some time to help me solve 
this annoyance. If anybody helps me I would be eternally greatful because I 
HATE WINDOWS and if I use it much longer my IQ will go through the floor and 
drown in a puddle in the basement!


--
Thomas Winischhofer
Vienna/Austria
mailto:[EMAIL PROTECTED]http://www.winischhofer.net/



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



RE: [XFree86] ATI Radeon 9700 pro problems (Powercolor graphics card)

2003-02-11 Thread Alexander Stohr
 (II) PCI: PCI scan (all values are in hex)
 (II) PCI: 00:00:0: chip 8086,2560 card 1043,80b2 rev 02 class 06,00,00 hdr
00
 (II) PCI: 00:01:0: chip 8086,2561 card , rev 02 class 06,04,00 hdr
01

you are having an i845 (82845) based mainboard chipset
which implements the host bridge and the AGP bridge.

 (II) PCI: 01:00:0: chip 1002,4e44 card 1002,0002 rev 00 class 03,00,00 hdr
80
 (II) PCI: 01:00:1: chip 1002,4e64 card 1002,0003 rev 00 class 03,80,00 hdr
00

thats some sort of an ATI Radeon...

 (II) LoadModule: fglrx
 (II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
 (II) Module fglrx: vendor=Fire GL - ATI Research GmbH, Germany
 compiled for 4.1.0, module version = 2.5.1
 Module class: XFree86 Video Driver
 ABI class: XFree86 Video Driver, version 0.4
[...]
 (II) FireGL8700/8800: Driver for chipset: ATI R200 QH (AGP),
 ATI R200 QL (AGP), ATI R200 QT (AGP), ATI R200 BB (AGP),
 Radeon RV250 Id (R9000), Radeon RV250 Ie (R9000),
 Radeon RV250 If (R9000), Radeon RV250 Ig (R9000),
 Radeon RV250 Ld (M9), Radeon RV250 Le (M9), Radeon RV250 Lf (M9),
 Radeon RV250 Lg (M9), Radeon R300 AD (R9500), Radeon R300 AE (R9500),
 Radeon R300 AF (R9500), Radeon R300 AG (Fire GL Z1/X1),
 Radeon R300 ND (R9700 Pro), Radeon R300 NE (R9700/R9500Pro),
 Radeon R300 NF (Unknown), Radeon R300 NG (Fire GL X1)
 (II) Primary Device is: PCI 01:00:0
 (WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1)
found
 (--) Chipset Radeon R300 ND (R9700 Pro) found

your radeon board got detected by the close source drivers.
dont care about that non-matching secondary device, its normal.

 (EE) fglrx(0): [agp] unable to acquire AGP, error xf86_ENODEV
 (EE) fglrx(0): cannot init AGP
 Fatal server error:
 Caught signal 11. Server aborting

it seems that the AGP capabilities of your chipset did not 
initialize for some reason. strange. hmm. at least i meant
those 845 series was a try compatible case. maybe support
for it was only added after the latest fglrx driver release.

you can surely bring your system up if removing the fglrx
kernel module, but then you will lack hardware accelleation.
a better solution would be to fix the non working AGP support
for the mainboard chipset. 

please see /var/log/messages for more log info on that problem.
the root cause can be anything from an odd bios setup, UMA
design (not in your case) or some MTRR initialisation problem.

-Alex.

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



Re: [XFree86] Gainward GeForce 4 Ultra/650-8XAGP Ti4200

2003-02-11 Thread Aivils . Stoss
I have a Gainward GeForce 4 Ultra/650-8X AGP Ti4200 card running on an
Asus
P4S8X motherboard.

I can get the card working at 800x600 256col on the vesa driver but I'm
struggling with anything else.
I think this card is almost identical to the MSI equivalent but I haven't
tried these drivers yet.

Has anyone got this card working under RedHat8.0?

You should grab IA32 linux drivers from www.nvidia.com

Aivils Stoss

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



Re: [XFree86] Multihead monitor maximum limit

2003-02-11 Thread Aivils . Stoss
http://dmx.sourceforge.net/
I have not tried !
Aivils Stoss


   
  
Widiarto 
  
[EMAIL PROTECTED]To: Xfree86 [EMAIL PROTECTED] 
  
m cc: 
  
Sent by:   Subject: [XFree86] Multihead monitor 
maximum limit
xfree86-admin@X
  
Free86.Org 
  
   
  
   
  
2003.02.11 
  
12:23  
  
Please respond 
  
to xfree86 
  
   
  
   
  





Hi all,

I wonder how many VGA adapter that XFree86 server  can handle to use multi
head monitor? I've already tried 4 and it work!.. I  wanna try more than 4
but my motherboard only have 4 PCI :((.
I see on the website there is industrial PC  backplane which has 18 PCI, is
it possible if I use all 18 PCI with 18 VGA  cards? Does anyone have tried
this?

FYI, windows 2000 can support until 10 VGA and  windows 98 until 8 VGA

Best Regards,

-Widi-


Inalix, PT
Jl. Cikini Raya 60 ii, Central Cikini  Building 5th floor
Jakarta 10330
INDONESIA

Phone: 62-21-3918672
Mobile:  62-815-9256801




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



RE: [XFree86] X server problem

2003-02-11 Thread Alexander Stohr
 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

You are using something like RedHat 7.1 ???

 (II) Keyboard Keyboard0 handled by legacy driver
 (II) XINPUT: Adding extended input device Mouse0 (type: MOUSE)
 Could not init font path element unix/:7100, removing from list!
 
 Fatal server error:
 could not open default font 'fixed'
 
 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]

You have used the up2date auto-updater recently?

then you possibly got that screwed auto update for fonts
that comes with messed up access rights for misc fonts.

please either update your font packages to something more recently
or grant the read access rights flag for your fonts to anybody.

-Alex.

PS: there must be a nice guide about that in the archives,
i meant Mike A. Harris has commented a few lines about that as well.

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



[XFree86] SunFFB

2003-02-11 Thread Stefan Pfetzing
Hi,

I just recognized several problems with the SunFFB driver (Sun Creator 3D
cards). Mainly it seems the driver does not support the XShape extension
correctly, but it reports that it does support the extension.

For example if I run Oroborus (www.oroborus.org) on an Xserver with sunffb, it
has completely broken title bars, because it tries to use XShape.
(XQueryShapeExtension tells its working)

So shall I check this some other way? (the XShape version is 1.0) Or is this
just a bug in SunFFB (as I expect)?

bye

Stefan

-- 
http://www.dreamind.de/
Oroborus and Debian GNU/Linux Developer.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



[XFree86] Rental Car Hot Deals from RentalCars.com

2003-02-11 Thread RentalCars.com
Rental Car Hot Deals from http://www.RentalCars.com

Reserve today for the President’s Day Weekend and Spring Vacation!

***Alamo: Super SUV Offer! Only $39/day $219/wk!

http://alamo.com/hotdeals/template.asp?msg=rentalcars_1w_offer

***Thrifty: FREE car rental Upgrade through 2003!

http://www.rentalcars.com/Untitled/Thrifty_/thrifty_.shtml

**Alamo: Sweet Deal on Compact Cars Nationwide 'till April 9!

http://alamo.com/hotdeals/template.asp?msg=affil_rentalcarscom_og

**Budget: FREE Upgrade through 7/2/03!

http://www.budget.com/partners/rentalcars.html

**Dollar: Minivan Offer Now thru 4/15/03! Only $199/week!
 
http://www.dollar.com/promotions/dol39_promo.asp?iatanbr=10003759

**Priceline: Save up to 20%! BIG name brands! Go Ahead-Make an Offer!

http://www.priceline.com/rentalcars/lang/en-us/itinerary.asp?refid=PLRENTALCARSrefclickid=YCYP


*Alamo: Florida  Hawaii Hot Deals on Converibles  Full Size 'till 4/9!

http://www.alamo.com/hotdeals/template.asp?msg=rentalcars_florida_hawaii_offer


*Alamo: Low WEEKEND car rental rates!

http://www.alamo.com/hotdeals/template.asp?msg=affil_rentalcarscom_weekend

*Alamo: Nationwide Minivans at a mini price thru 4/9! $39.99/day!

http://www.alamo.com/hotdeals/template.asp?msg=rd_minivan_rentalcars_offer

*Alamo: Save up to 25% with online reservations! Book Now!

http://res.alamo.com/res/page1.asp?Promonum=598028Ratecode=BQ

*Alamo: Up to 30% off SUV SKI rentals thru 4/30/03-free ski racks!

http://alamo.com/hotdeals/template.asp?msg=affil_rentalcarscom_ski_offer

*Auto Europe: Free One Car Class Upgrades In Select Countries In Europe!
 
http://www.autoeurope.com/showspecial.cfm?specid=49aff=rentalcars

*Avis: FREE Upgrade through 12/31/2003!

http://www.avis.com/cgi-bin/go?LID=991ADID=2557

*Budget: Additional $15 off your 4 day or longer rental!

http://www.budget.com/partners/rentalcars2002.html

*Budget: Save up to 25% off Budget's everyday Low Prices!

http://www.rentalcars.com/Untitled/Budget/budget.shtml

*Dollar: Drive a Minivan for less! $199/week!

http://www.dollar.com/promotions/dol39_promo.asp?iatanbr=10003759

*Dollar: Low Rates! Convenient Locations...what more do you need?

https://www.dollar.com/reservations/index.asp?direct=rescheckratesiatanbr=10003759navbar=false


*Dollar: Save 10% on low rates at all 19 VEGAS locations!

http://www.autorentalguide.com/Auto_Car_Rentals_By_State/Auto_Car_Rental_Nevada/auto_car_rental_nevada.shtml


*Enterprise: Great car rental rates at the airport or your neighborhood!

http://www.enterprise.com/car_rental/deeplinkmap.do?siteid=EMNDMarc=EMNDOM


*Fox: California and  Phoenix! Rates up to 40% lower than most major
agencies!

http://www.foxrentacar.com/mini-sites/rentalcars/index.html

*Hertz: Get a FREE Upgrade through 2003!

http://www.rentalcars.com/Untitled/Hertz/upgrade.shtml

*National: New Low Weekly Rates starting at only $139/day!

http://www.nationalcar.com/servlet/DocHandler/directlinks/index_rentalcars_weekly.jsp


*National: Special GetAWay Weekend rates starting at $25/day!

http://www.nationalcar.com/servlet/DocHandler/directlinks/index_rentalcars_getaway.jsp


*Priceline: Save even more on rental cars! up to 20%!

http://www.priceline.com/rentalcars/lang/en-us/itinerary.asp?refid=PLRENTALCARSrefclickid=RCRVD


*Thrifty: Hot Rates in South Florida thru 1/1/03-6/30/03!Miami, FLL, Key
West, W.Palm Beach- -only $199/week!
 
https://www.thrifty.com/res/main.asp?iata=00226600pc=27aa

*Thrifty: Save 10% off Thrifty's PT Cruisers, Vans, SUVS  Pick-Up Trucks!

http://www.rentalcars.com/Untitled/Thrifty_/10percent.shtml

Rental Car Hot Deals updated daily at http://www.RentalCars.com

Rates as of February 11, 2003 and are subject to availability.
Please confirm your reservation.

Thank you for shopping RentalCars.com. Have a great trip!

---
You are currently subscribed to rentalcars-specials as: [EMAIL PROTECTED]
To unsubscribe send a blank email to 
[EMAIL PROTECTED]
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



[XFree86] Re: [Re:] Radeon Mobility U1

2003-02-11 Thread Mike A. Harris
On Tue, 11 Feb 2003 [EMAIL PROTECTED] wrote:

I also have a problem with this video card, 
Here's a link http://www.wsu.edu/~ice124/ that well describes what happens on my PC:
Currently, i'm using vesa driver ... and waiting xfree4.3 radeon/ati driver.
[SNIP]

Getting XFree86 up and running is fairly simple.  There are two options for your 
display driver: use the generic vesa driver (provides 
basic 2D functions, but is stable) or the radeon driver (supports SVGA out and 
possibly 3D, but is slow).  I have included XF86Config 
files for both modes below.  Just move the files into your /etc/X11/ folder and 
rename them to XF86Config.

Vesa - This mode is the safest and most stable.  It's the mode I currently use. 
XFree86 4.3 should include a
faster, more optimized VESA driver.

By definition, the vesa driver, uses the VESA BIOS Extensions 
present on the video card's ROM BIOS.  This allows the X server 
to set up video modes and manage the video hardware, without 
actually knowing anything about the specific video card itself.  
It does not however provide acceleration.  It is impossible to 
provide acceleration for the vesa driver, because the actual code 
is in the video card's BIOS chip, and not part of the X server.  

The VESA VBE/AF standard includes accelerator functionality, but 
to the best of my knowledge, zero actual video cards provide 
VBE/AF in their BIOSs, and as such, it is impossible to provide 
any kind of 2D acceleration on any hardware when using the vesa 
driver - so it will _always_ be slow.  If anyone is aware of any 
video hardware that does actually provide VBE/AF support in the 
built in BIOS, let me know as it wouldn't be too difficult to add 
VBE/AF support to the vesa driver.  I seriously doubt that any 
cards out there exist that support VBE/AF however, so don't hold 
your breath.



Radeon - This mode is somewhat buggy in XFree86 4.2.  SVGA out works, as well as more 
advanced features

(transparency, etc).  However, this driver is VERY slow drawing to to the screen.  
The good news is that the Radeon 7500 (which the 
Mobility U1 is based on) is slated to be fully supported in XFree86 4.3, which should 
be released, as they say, very soon.  If you're 
feeling particularly brave, you can try the 4.2.99 CVS from xfree86.org.  Good luck, 
and email me with any news.  If you are wondering, 
here are the settings I used for the display in the file:

The Mobility U1 is totally unsupported in 4.2.1 and earlier, 
which is why it doesn't work.  ;o)  It is not to my knowledge 
based on the Radeon 7500 however.  If I'm not mistaken it is 
based on the Radeon 9000.

If someone can test the latest XFree86 CVS code (the absolute 
latest) on a Radeon Mobility U1, and tell me wether or not the 
native radeon driver works or not on it, I'd be more than glad 
to help troubleshoot and add/fix support for it.

Let me know what the output is for the video card:

lspci -vvn

TTYL

-- 
Mike A. Harris


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



Re: [XFree86] Multihead monitor maximum limit

2003-02-11 Thread Egbert Eich
Widiarto writes:
  Hi all,
  
  I wonder how many VGA adapter that XFree86 server can handle to use multi head 
 monitor? I've already tried 4 and it work!.. I wanna try more than 4 but my 
 motherboard only have 4 PCI :((.
  I see on the website there is industrial PC backplane which has 18 PCI, is it 
 possible if I use all 18 PCI with 18 VGA cards? Does anyone have tried this?
  
  FYI, windows 2000 can support until 10 VGA and windows 98 until 8 VGA
  

We have tried 16. I don't recall what MAX_SCREENS is currently.
You may have to increase it and recompile.

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



[XFree86] Problem with startx

2003-02-11 Thread hz
Hello there

I am Hendrik Zandt. I have RedHat 8.0 , but unfortunalety I can't 
startup Xwindows anymore
I looked at the screen information and i noticed that i could sent me 
this report to you

Could you please help me with this.

Thank you

Frendly greetings H. Zandt



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


Re: [XFree86] starting Xwindows

2003-02-11 Thread Egbert Eich
=?iso-8859-1?Q?Georges=5FHansel?= writes:
  I am using the linux distribution 8.1
  The card is ATI Graphics Pro Turbo
  
  When booting with the syslinux floppy disk created at
  the installation, all is O.K.
  When booting with the loadlin program (and the same
  kernel), I can't get Xwindows to start.
  Herewith in attach the corresponding log files.
  
  Is there a solution of this curious problem?
  

Isn't loadlin a loader that works from DOS/Windows?

Your log file looks like a DOS TSR has goofed up your 
BIOS int vector which is required for int10 support
to work properly.

Either use the option:

Option InitPrimary

in the Device section of your config file, or
use some real boot loader.

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



Re: [XFree86] starting Xwindows

2003-02-11 Thread Georges Hansel
 --- Egbert Eich [EMAIL PROTECTED] a écrit : 
=?iso-8859-1?Q?Georges=5FHansel?= writes:
   I am using the linux distribution 8.1
   The card is ATI Graphics Pro Turbo
   
   When booting with the syslinux floppy disk
 created at
   the installation, all is O.K.
   When booting with the loadlin program (and the
 same
   kernel), I can't get Xwindows to start.
   Herewith in attach the corresponding log files.
   
   Is there a solution of this curious problem?
   
 
 Isn't loadlin a loader that works from DOS/Windows?
 
 Your log file looks like a DOS TSR has goofed up
 your 
 BIOS int vector which is required for int10 support
 to work properly.
 
 Either use the option:
 
 Option InitPrimary
 
 in the Device section of your config file, or
 use some real boot loader.
 
 Egbert.



Thank you so much for your answer. All is O.K. now.
Georges

___
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



RE: [XFree86] X server problem

2003-02-11 Thread Cynthia Grossen
the last bit about could not open default font 'fixed' was explained in
depth here.
Sent: Tuesday, February 04, 2003 5:30 AM

Subject: Re: [XFree86] Error Starting X 

You can use Google to search the site, just go to the Advanced Search
Options and set the Domain Option (in the first block of options towards the
bottom) to only search http://www.xfree86.org/. Use the subject line as your
search term, enclose it in quotes.

 -Original Message-
 From: atul garg [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, February 11, 2003 2:25 AM
 To: [EMAIL PROTECTED]
 Subject: [XFree86] X server problem
 
[...]
 Could not init font path element unix/:7100, removing from list!
 
 Fatal server error:
 could not open default font 'fixed'
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



RE: [XFree86] Problems starting Xserver

2003-02-11 Thread Cynthia Grossen
 Cannot open log file /var/log/Xfre86.0.log
I'm guessing your file permissions are set incorrectly for this file
Use the chmod command. I've forgotten the options though so you'll have to
look those up.

HTH,
cyn

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, February 11, 2003 7:42 AM
 To: [EMAIL PROTECTED]
 Subject: [XFree86] Problems starting Xserver
 
 
 Friends
 I´m gettig the following messages after configuring my linux system:
 
 
 giving up
 xinit: No such a file or directory (errno 2): unable to 
 connect to xserver
 xinit: No such process (errno 3): Server error
 sourcing po-space2000v2-tde-alstom-com
 setting POV2_START
 setting POV2_RACINE
 setting POV2_MODE
 sourcing povoars
 setting POV2_START=1
 starting xinit
 /bin: /usr/bin: /usr/X11R6/bin: /usr/local/bin
 
 Fatal server error:
 Cannot open log file /var/log/Xfre86.0.log
 
 Can you Help
 Thanks  Regards
 
 CONFIDENCIAL: Esta mensagem e quaisquer arquivos em anexo são
 confidenciais. Se não for o destinatário da mensagem agradecemos que
 contacte imediatamente o remetente e que a  elimine sem a reproduzir,
 armazenar ou divulgar a qualquer entidade.
 
 CONFIDENTIALITY : This  e-mail  and  any attachments are 
 confidential and
 may be privileged. If  you are not a named recipient, please 
 notify the
 sender immediately and do not disclose the contents to 
 another person, use
 it for any purpose or store or copy the information in any medium.
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



[XFree86] Cannot open mylinux:0.0

2003-02-11 Thread Jerome Auza
Hi,

I'm using redhat linux 7.3 with the X software that
came with the CD.  I installed Linux with medium
firewall security, it uses DHCP for its IP address. 
I'm using the machine together with Sun Ultra
workstations on Solaris 2.7 and up.

I wanted to display applications from the Solaris
machines on my Linux computer but I always get 'Cannot
open display myip:0.0'.  No other message is
displayed.  I have tried setting up xauth and have
made sure I have xhost + and have done setenv DISPLAY
myip:0.0.  If I type xhost - on the linux machine and
try running the solarix x app, I still get the same
error.  I was expecting Refused by server here.

The other way around (linux application being
displayed on Solaris machine) works without any
problems.

I tried running the network device monitor and each
time I run the application on the Solaris machine, I
will see that the linux network device monitor is
receiving data.  This leads me to think that there
should be no network communication problem from sun to
linux.

I also tried using a static IP address and I get the
same problem.

Any suggestions what can be done with this problem?

jerome


__
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



[XFree86] unresolved symbols: drmCtlUninstHandler + co.

2003-02-11 Thread Jani Averbach

Hello!

I just installed XFree86 form CVS:
$ date -r xc/CVS  +%Y-%m-%d %H:%M:%S%z
2003-02-09 17:14:16+0200

And I get following error message when firing up X (with startx):

Symbol drmCtlUninstHandler from module /usr/X11R6/lib/modules/drivers/mga_drv.o is 
unresolved!
Symbol drmCtlInstHandler from module /usr/X11R6/lib/modules/drivers/mga_drv.o is 
unresolved!
Symbol drmGetInterruptFromBusID from module /usr/X11R6/lib/modules/drivers/mga_drv.o 
is unresolved!

However X seems to work just fine.

I include a whole XFree.0.log with this email as an attachment.

XFree86 was compiled with gcc 3.2.1 in Linux 2.4.20, with glibc 2.2.5 and
freetype 2.1.3.

I can't find any particular instruction of reporting bugs, I hope there is
enough information with this email. If not, please don't hesitate ask
more.

Thank you for your jobs with XFree86.

BR, Jani

--
Jani Averbach



XFree86.0.log.bz2
Description: Binary data


Re: [XFree86] Cannot open mylinux:0.0

2003-02-11 Thread Dr Andrew C Aitchison
On Tue, 11 Feb 2003, Jerome Auza wrote:

 Hi,
 
 I'm using redhat linux 7.3 with the X software that
 came with the CD.  I installed Linux with medium
 firewall security, it uses DHCP for its IP address. 
 I'm using the machine together with Sun Ultra
 workstations on Solaris 2.7 and up.
 
 I wanted to display applications from the Solaris
 machines on my Linux computer but I always get 'Cannot
 open display myip:0.0'.  No other message is
 displayed.  I have tried setting up xauth and have
 made sure I have xhost + and have done setenv DISPLAY
 myip:0.0.  If I type xhost - on the linux machine and
 try running the solarix x app, I still get the same
 error.  I was expecting Refused by server here.

I think that medium firewall security blocks X
traffic in that direction.


If you want medium security you should not use xhost.
Consider xauth instead.
I find that ssh makes the xauth cookie management transparent
and use it all the time instead of telnet.

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

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



[XFree86] Report of error

2003-02-11 Thread Juan Carlos Correa Falcon
Please, Help me

What is the error  in my configuration

Thanks
Juan Carlos





_




XFree86.0.log
Description: Binary data


RE: [XFree86] ATI Rageon

2003-02-11 Thread Christophe Saout
Am Mon, 2003-02-10 um 23.35 schrieb Alexander Stohr:

 The card is well supported by Linux,
 but you should rather targert for latest XFree86 beta
 which will become X4.3.0 in some two weeks or so.

Hmm, but with XFree 4.2.x and some later DRI code XVideo worked, with
4.2.99.x it does not...

-- 
Christophe Saout [EMAIL PROTECTED]

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



[XFree86] help - linux drivers for intel

2003-02-11 Thread Ali Asgar
 hai,
i m having intel 845glad mothereboard with integrated sound and 
graphics drivers. i have installed red hat linux 8.0.

it works very slow in graphical mode. also its not detecting my 
sound card. i m using linux in text mode. please help me out.

if its the problem of drivers then please tell me from where i can 
download the required drivers.

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


Re: [XFree86] Intel 845 drivers

2003-02-11 Thread Tom Dolan
 Try this thread, its one person's successful attempt to setup up an Intel
 845 on RedHat 8.0

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

Tom Dolan

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



Re: [XFree86] help - linux drivers for intel

2003-02-11 Thread Mete Kural
Hi Ali,

I have the same problem you have. I'm trying to make
Intel 845 work with Linux. Unfortunately Linux is not
easy as I thought it would be coming from a Windows
background. Hopefully the convenience level of Linux
will catch up with Windows in a few years so anybody
can use Linux. But for now we have to go through the
hassles.

You have to install the latest CVS snapshot of
XFree86. Here are RPMs for it in Red Hat Rawhide:

ftp://ftp.redhat.com/pub/redhat/linux/rawhide/i386/RedHat/RPMS/


You have to download the XFree86 RPMs. I don't know
which ones to install on Red Hat 8.0. I didn't do it
yet either. Does anybody know if the XFree86 RPMs in
the Red Hat rawhid will work with Red Hat 8.0? Which
RPMs should I install?

Hope this helps.

Thanks,
Mete


--- Ali  Asgar [EMAIL PROTECTED] wrote:
   hai,
 i m having intel 845glad mothereboard with
 integrated sound and 
 graphics drivers. i have installed red hat linux
 8.0.
 
 it works very slow in graphical mode. also its not
 detecting my 
 sound card. i m using linux in text mode. please
 help me out.
 
 if its the problem of drivers then please tell me
 from where i can 
 download the required drivers.
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86

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



Re: [XFree86] Intel 845 drivers

2003-02-11 Thread Mete Kural
Oh my... That seems like heck a lot of steps to
install make Intel 845 work. Can't I just install the
RPMs in the rawhide? You must have tried the RPMs
before you did this I suppose. Do they not work?

Thanks,
Mete


--- Tom Dolan [EMAIL PROTECTED] wrote:
  Try this thread, its one person's successful
 attempt to setup up an Intel
  845 on RedHat 8.0
 
 Take a look at: 

http://www.mail-archive.com/xfree86@xfree86.org/msg00515.
 
 Tom Dolan
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86

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



Re: [XFree86] Problem with startx

2003-02-11 Thread Oisin C. Feeley
On Tue, 11 Feb 2003, hz wrote:

Hello there

I am Hendrik Zandt. I have RedHat 8.0 , but unfortunalety I can't
startup Xwindows anymore I looked at the screen information and i
noticed that i could sent me this report to you

Could you please help me with this.

Hi Hendrik,

You need to first look at your log file (probably
/var/log/XFree86.0.log) and see what errors (EE) and warnings (WW) are
present.  If you can't figure out what they mean with the aid of man
XFree86 and http://www.google.com _then_ post the error-log, the
/etc/X11/XF86Config here and ask for help.  Don't forget to specify what
your video-card hardware is (lspci -vv can reveal information about
the exact chipset).  Red Hat 8.0 also has excellent manuals available
which take you through how to configure XFree86 using their
redhat-configure-xfree86.  Unfortunately as you haven't told us what
your hardware is (or anything) noone can help you.

HTH,
Oisin Feeley

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



RE: [XFree86] Gainward GeForce 4 Ultra/650-8XAGP Ti4200

2003-02-11 Thread Mark Vojkovich
  This card is not supported by the 4.2 release so -configure 
won't work on it (4.2 is over a year old).  Upgrade to the 4.3 snapshot 
on ftp.xfree86.org.


Mark.


On Mon, 10 Feb 2003, [EMAIL PROTECTED] wrote:

 OK so this seems to be a SUPPORT issue.
 
 The following was produced by a 'XF86config -configure'.
 __
 XFree86 has found a valid card configuration.
 Unfortunately the appropriate data has not been added to xf86PciInfo.h.
 Please forward 'scanpci -v' output to XFree86 support team.
 __
 
 I have run the pciscan -v and included this output and the XF86 log.
 
 The kernel level is 2.4.18-14
 
 
 mail2web - Check your email from the web at
 http://mail2web.com/ .
 
 
 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] Multihead monitor maximum limit

2003-02-11 Thread Mark Vojkovich
On Tue, 11 Feb 2003, Egbert Eich wrote:

 Widiarto writes:
   Hi all,
   
   I wonder how many VGA adapter that XFree86 server can handle to use multi head 
monitor? I've already tried 4 and it work!.. I wanna try more than 4 but my 
motherboard only have 4 PCI :((.
   I see on the website there is industrial PC backplane which has 18 PCI, is it 
possible if I use all 18 PCI with 18 VGA cards? Does anyone have tried this?
   
   FYI, windows 2000 can support until 10 VGA and windows 98 until 8 VGA
   
 
 We have tried 16. I don't recall what MAX_SCREENS is currently.
 You may have to increase it and recompile.

MAXSCREENS (defined in xc/programs/Xserver/include/misc.h) is
currently 16.


Mark.

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



Re: [XFree86] Dunno the right address to write.

2003-02-11 Thread Mark Vojkovich
On Mon, 10 Feb 2003, [iso-8859-2] Gaskó Mátyás wrote:

 I'm not sure I'm writing to the right address. I have a question about X. I've a 
GeForce4 video card but my x server can't use it. Which X should I download and from 
where to be able to use it? Or do you know the address to write to with this 
question? Thank you in advance for the response.
 Matyas Gasko

   Download the latest 4.3 snapshot (4.2.99.901) from ftp.XFree86.org.


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



[XFree86] FreeBsd - Riva TNT2M64 - Compaq Proliant 5500

2003-02-11 Thread vizion communication
Hi

I am having Fatal Server Error - No screens found problem on
this system.

The log file has the following relevant entries:

(II) Primary device is : PCI 00:02:0
(WW) NV: No matching device section for instance (Bus ID
PCI:0:2:0) found
(EE) No devices detected

It would seem the problem is down to the difference between
02 and 2!!

How can this be best dealt with?

Thanks

David Southwell

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



Re: [XFree86] Multihead monitor maximum limit

2003-02-11 Thread Thierry Herbelot
Le Tuesday 11 February 2003 20:18, Mark Vojkovich a écrit :
 
  We have tried 16. I don't recall what MAX_SCREENS is currently.
  You may have to increase it and recompile.

 MAXSCREENS (defined in xc/programs/Xserver/include/misc.h) is
 currently 16.


   Mark.

  Egbert.


Any recommandation for a multihead PCI graphics board ? (I have seen a 
multi-TNT2 board, but this is not too exciting )

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



[XFree86] FATAL Error advice:

2003-02-11 Thread vizion communication
Hi

I am having Fatal Server Error - No screens found problem on
this system.

FreeBSD 4.7
Compaq Proliant 5500
Graphics card: Riva TNT 2 M64 32MB PCI Version
Card in Primary PCI Bus

The log file has the following relevant entries:

(II) Primary device is : PCI 00:02:0
(WW) NV: No matching device section for instance (Bus ID
PCI:0:2:0) found
(EE) No devices detected

It would seem the problem is down to the difference between
02 and 2!!

How can this be best dealt with?

Thanks for any help

David Southwell

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



[XFree86] programs/Xserver/GL/dri/Imakefile: TRIVIAL (typo?): one extra space leads to a gccmakedep's error

2003-02-11 Thread Denis Zaitsev
VERSION:

4.2.1

OPERATING SYSTEM:

Linux

REPORT:

A space between the gccmakedep's -I option and it's argument in the
programs/Xserver/GL/dri/Imakefile make the gccmakedep stage of the X's
compilation to fail.  The trivial patch attached corrects the problem.
May be another approach - fixing gccmakedep so it allows such a spaces
- would be more adequate, but just for the current state of the
affairs this space is certainly the error.  And just to cure this
error is just the trivial task, which can't be said about the change
of gccmakedep program.

So, please, apply this patch.


--- programs/Xserver/GL/dri/Imakefile.orig  Thu Jan 23 00:47:09 2003
+++ programs/Xserver/GL/dri/Imakefile   Thu Jan 23 00:47:21 2003
@@ -11,7 +11,7 @@ MOBJ = drimodule.o
  SRCS = xf86dri.c dri.c $(MSRC)
  OBJS = xf86dri.o dri.o $(MOBJ)
 
- INCLUDES = -I$(SERVERSRC)/include -I$(INCLUDESRC) -I $(XINCLUDESRC) \
+ INCLUDES = -I$(SERVERSRC)/include -I$(INCLUDESRC) -I$(XINCLUDESRC) \
-I$(EXTINCSRC) \
-I$(XF86OSSRC) -I$(XF86COMSRC) \
-I../include -I../glx -I$(LIBSRC)/GL/include \

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



Re: [XFree86] programs/Xserver/GL/dri/Imakefile: TRIVIAL (typo?):one extra space leads to a gccmakedep's error

2003-02-11 Thread Marc Aurele La France
On Wed, 12 Feb 2003, Denis Zaitsev wrote:

 VERSION:

 4.2.1

 OPERATING SYSTEM:

 Linux

 REPORT:

 A space between the gccmakedep's -I option and it's argument in the
 programs/Xserver/GL/dri/Imakefile make the gccmakedep stage of the X's
 compilation to fail.  The trivial patch attached corrects the problem.
 May be another approach - fixing gccmakedep so it allows such a spaces
 - would be more adequate, but just for the current state of the
 affairs this space is certainly the error.  And just to cure this
 error is just the trivial task, which can't be said about the change
 of gccmakedep program.

 So, please, apply this patch.

 --- programs/Xserver/GL/dri/Imakefile.origThu Jan 23 00:47:09 2003
 +++ programs/Xserver/GL/dri/Imakefile Thu Jan 23 00:47:21 2003
 @@ -11,7 +11,7 @@ MOBJ = drimodule.o
   SRCS = xf86dri.c dri.c $(MSRC)
   OBJS = xf86dri.o dri.o $(MOBJ)

 - INCLUDES = -I$(SERVERSRC)/include -I$(INCLUDESRC) -I $(XINCLUDESRC) \
 + INCLUDES = -I$(SERVERSRC)/include -I$(INCLUDESRC) -I$(XINCLUDESRC) \
   -I$(EXTINCSRC) \
   -I$(XF86OSSRC) -I$(XF86COMSRC) \
   -I../include -I../glx -I$(LIBSRC)/GL/include \

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

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



[XFree86] Sapphire Radeon 9000 DVI-D still no go? ...

2003-02-11 Thread William Gallafent
Hi,

I'm still unable to get a display on a digital flat panel from this
card, with XFree86 built from CVS of a couple of hours ago.

Note that the BIOS doesn't seem to be able to coaxs the card into
displaying via DVI-D either - booting with just a DVI-D connection
produces nothing but a blank screen. It did work right, just once, and
I achieved lovely 2048.768 Xinerama desktop, some time ago, but I've
never replicated it!

If I have booted with DVI-D connected, XFree86 tries to use this as
the primary head - but fails because it can't find any valid modes
through DDC. I tried Option NoDDC but the same thing still happens.

Log and config attached.

Thanks,

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



[XFree86] (no subject)

2003-02-11 Thread Brandon
X windows was working fine, then one day i went to startx and got this. OS 
is Mandrake 9.0

XFree86.9.log
Description: Binary data


[XFree86] [XFree86(TM) Bug Report] X server crashes on my Intel i815: Active ring not flushed

2003-02-11 Thread Olivier ROBERT
Regarding: X server crashes on my Intel i815: Active ring not flushed
Email: [EMAIL PROTECTED]

XFree86 Version: 4.2.1

OS: Mandrake 9.0 (2.4.19 kernel with no customisation, I kept the one from Mandrake)

Area: Xserver

Server: XFree86 (The XFree86 4.x server)

Video Card:

I don't know exactly how to find it, I only know that the chipset is i815. An X 
-scanpci follows:

(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.5
XFree86 XInput driver : 0.3
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.3
(II) Loader running on linux
(II) LoadModule: scanpci
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor=The XFree86 Project
compiled for 4.2.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(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,1130 card 8086,1130 rev 02 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,1132 card 103c,1245 rev 02 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:3: chip 8086,2413 card 8086,2413 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2415 card 103c,1249 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:04:0: chip 10b7,9200 card 103c,1246 rev 78 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
Probing for PCI devices (Bus:Device:Function)

(0:0:0) Intel unknown card (0x1130) using a Intel i815 Bridge
(0:2:0) HP card using a Intel i815
(0:30:0) unknown chip (DeviceId 0x2418) from Intel
(0:31:0) unknown chip (DeviceId 0x2410) from Intel
(0:31:1) Intel unknown card (0x2411) using an unknown chip (DeviceId 0x2411) from Intel
(0:31:2) Intel unknown card (0x2412) using an unknown chip (DeviceId 0x2412) from Intel
(0:31:3) Intel unknown card (0x2413) using an unknown chip (DeviceId 0x2413) from Intel
(0:31:5) HP card using an unknown chip (DeviceId 0x2415) from Intel
(1:4:0) HP card using an unknown chip (DeviceId 0x9200) from 3COM

Description:


XFree86 Version 4.2.1 / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 3 September 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-23mdkenterprise 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.4.log, Time: Tue Feb 11 20:57:53 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout layout1
(**) |--Screen screen1 (0)
(**) |   |--Monitor monitor1
(**) |   |--Device device1
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout fr
(**) XKB: layout: fr
(WW) Option XkbOptions requires an string value
(==) Keyboard: CustomKeycode disabled
(WW) No FontPath specified.  Using compiled-in default.
(==) FontPath set to /usr/X11R6/lib/X11/fonts/misc:unscaled,unix/:-1
(==) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
Using vt 7
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.5
XFree86 XInput driver : 0.3
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.3
(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.2.1, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.3
(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.2.1, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(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,1130 card 8086,1130 rev 02 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,1132 card 103c,1245 rev 02 class 03,00,00 hdr 00
(II) PCI: 00:1e:0: chip 8086,2418 card , rev 02 class 06,04,00 

Re: [XFree86] Geforce 3 and glitches with nv drivers

2003-02-11 Thread AnonimoVeneziano
Mark Vojkovich wrote:


On Sun, 9 Feb 2003, Anton Chu wrote:

 

The nv driver is poorly written.  
   


  I don't think that is accurate.  It doesn't have as many feature as
the binary drivers and it doesn't have the performance, but it has
some benefits.  Namely, that it works on many OSes and architectures
and more people can support it.   I don't think there are any quality
problems with it.  Actually, if you don't need the features of the
binary drivers, I would recommend that you use the nv driver instead.


Mark.


 

You may want to upgrade to the new 'nvidia' 
driver provided by Nvidia themselves.  Check it out at the nvida website:

www.nvidia.com

I've upgraded to the new driver using an old TNT card is the machine is like 
new.  Good luck,
Anton

On Sunday 09 February 2003 01:47 pm, AnonimoVeneziano wrote:
   

Hi all, I use FreeBSD on one of my BOXes, this box is composed by:



MSI KT4 Ultra MoBo

Creative Geforce 3 Ti200 (Made by MSI)

Athlon XP 2400+

C-Media Sound Chip.

All the system is absolutely not Overclocked.


The problem is not a great disaster , but is annoying:

When I start X with nv accellerated (if I disable the accelleration
the problem disappears) drivers and I enter Mozilla and all browsers
that use Gecko (so Netscape and Galeon too) and I try to write something
in a writing field if I move the cursor trough the words that I've wrote
the cursor Image remains in between each letter make all very confused.
Is very difficult find the real cursor in that chaos, but if I write a
letter or I delete something (If I modify the field in anyway) all the
cursor copies disappear.There is another problem. In wmaker and in gnome
too when I select multiple objects on the desktop with the mouse using
the rectangle done by hold pressed the left mouse button down pieces
of this rectangle remain on the screen until I pass over them a window
or any other Objects .

As you can see this problems aren't very important, but very annoying
(in particular when I have to write long E-Mails or something like this).

If I disable the accelleration this disappears (but is very slow!).

I use the lastest XFree86 release 4.2.1 on FreeBSD 4.7 , and I've tried
Debian SID too on this Box with the same problems.

I use AGP4x but with no AGP the problem remains.

Thank you very much for your help

Bye

Marcello

___
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

 

Thank you very much for your help , I'll try immediatly :-)

Bye

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



Re: [XFree86] Hardware mouse cursor visual glitches

2003-02-11 Thread Marc Aurele La France
On Tue, 11 Feb 2003, Felipe Alfaro Solana wrote:

 I have a laptop with an ATI RAGE Mobility M1 AGP 8MB video card
 (Mach64-based) which is running Red Hat Phoebe2 beta distro (8.0.93),
 based on XFree86 4.2.99.901 latest snapshot (Feb, 6th 2003).

 I'm experiencing hardware mouse cursor visual glitches when the mouse
 cursor shape is changed from, let's say, the standard black arrow
 pointer, to another one, for example, the north-south, or west-east
 resize arrow. When the mouse cursor shape is being changed, for a brief
 period of time, I can see a 64x64 rectangle full of garbage instead of
 the mouse cursor. After this brief lapse of time, the cursor returns to
 its normal appearance automatically.

 What's curious about this issue is that I can only reproduce this visual
 glitch when the mouse cursor changes its shape between certain images.
 For example, when transitioning from black arrow cursor to the hand
 cursor (the one shown when the cursor is over an hyperlink), the glitch
 can't be reproduced. If transitioning from the black arrow to any of the
 window-resize cursors, the visual glitch can be seen. This has started
 to happen with XFree86 releases of year 2003.

 As a side note, this is reproducible using XFree's stock ATI video
 driver and also with the SourceForge's GATOS project video driver (which
 provides XVideo support), so I think there must be something with the
 new mouse cursor code that is triggering this.

 Has anyone experienced this? Is this a know issue? I have heards of
 Radeon an SiS video chips having similar problems... Don't know if they
 are related.

Yes.  This a known issue.  I've started looking into this, but have so far
been unable to duplicate the problem.  I'll keep trying.  With any luck,
this'll be fixed in 4.3.

Thanks for the details.

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.

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



[XFree86] Does Red Hat Linux Phoebe beta support Intel 845 really?

2003-02-11 Thread Mete Kural
 XFree86 CVS is where Intel i845 support was first
 added.  XFree86 
 CVS is what is in rawhide, and yes, in Red Hat Linux
 Phoebe beta.  

That's good news! So does Red Hat Linux Phoebe Beta
really support Intel i845 then? I just want to make
sure. In that case, I'll simply put 8.0 away and
download Phoebe. 

Has anybody installed Phoebe and seen that the XFree86
version that comes with it includes the updated
drivers?

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



Re: [XFree86] XFree86 HPUX 10.20 C360 Visualize workstation

2003-02-11 Thread Carlos O'Donell
 
 Sorry, but there is currently no XFree86 port to HP-UX at the moment.  But
 there isn't much preventing you from coming up with one...
 

Though there is a port of Linux to your C360 :)
http://www.parisc-linux.org

Depending on what Visualize card you have there might already be
framebuffer support.

c.

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



Re: [XFree86] Cannot open mylinux:0.0

2003-02-11 Thread Jerome Auza
Hi Andrew,

Your email was very helpful.  I just turned-off the
firewall security (set it to Low) and everything
worked fine now.  I'm in a company network that has a
firewall for outside transactions so I really did not
need the medium firewall security for internal network
needs.

Thank you very much.


jerome

 Hi,
  
  I'm using redhat linux 7.3 with the X
software that
  came with the CD.  I installed Linux with
medium
  firewall security, it uses DHCP for its IP
address. 
  I'm using the machine together with Sun
Ultra
  workstations on Solaris 2.7 and up.
  
  I wanted to display applications from the
Solaris
  machines on my Linux computer but I always
get 'Cannot
  open display myip:0.0'.  No other message
is
  displayed.  I have tried setting up xauth
and have
  made sure I have xhost + and have done
setenv DISPLAY
  myip:0.0.  If I type xhost - on the linux
machine and
  try running the solarix x app, I still get
the same
  error.  I was expecting Refused by server
here.

 I think that medium firewall security
blocks X
 traffic in that direction.


 If you want medium security you should not
use xhost.
 Consider xauth instead.
 I find that ssh makes the xauth cookie
management transparent
 and use it all the time instead of telnet.

__
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine's Day
http://shopping.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



[XFree86] Unsubscribe

2003-02-11 Thread Andrew Goh
Please unsubscribe me from the list.

--- [EMAIL PROTECTED] wrote:
 Send XFree86 mailing list submissions to
   [EMAIL PROTECTED]
 
 To subscribe or unsubscribe via the World Wide Web,
 visit
   http://XFree86.Org/mailman/listinfo/xfree86
 or, via email, send a message with subject or body
 'help' to
   [EMAIL PROTECTED]
 
 You can reach the person managing the list at
   [EMAIL PROTECTED]
 
 When replying, please edit your Subject line so it
 is more specific
 than Re: Contents of XFree86 digest...
 
 
 Today's Topics:
 
1. Re: Server output on (Glyn Kennington)
2. Cursors in XFree (Fabian Wolf)
3. RE: XFConfig requirements for kbd and mouse
 (Jesse Hutton)
4. Nvidia Ge Force 2 MX 100 (Eric)
5. Configuring for  XFree86 (Gerald S. Stoller)
6. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
7. Re: ATI Mach64 and -depth 16 (Marc Aurele La
 France)
8. sis300 (Ronny Nordstrand)
9. Game Locks up in XWindows, how do I get out
 without restarting (Paul Wharff)
   10. Re: Game Locks up in XWindows, how do I get
 out without
restarting (Eric)
   11. Build errors on 4_2_2 branch of the world
 module (Brian C. Dilley)
   12. Re: Game Locks up in XWindows, how do I get
 out without restarting (Paul Wharff)
   13. Re: Game Locks up in XWindows, how do I get
 out without restarting (Ronny Nordstrand)
   14. Pseudo 8bit over 24bit display (Colin Aspin)
   15. i810 driver agpgart error (Michael Cardenas)
   16. Re: i810 driver agpgart error (David Dawes)
   17. Help.Can't enable 3d Acceleration on
 Redhat 8.0 via VooDoo 5 5500 card
 ([EMAIL PROTECTED])
   18. Re: i810 driver agpgart error (David Dawes)
   19. IBM Thinkpad i1200 with VESA function error
 (Anton Chu)
   20. Re: i810 driver agpgart error (Michel
 =?ISO-8859-1?Q?D=E4nzer?=)
   21. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   22. Unable to set vertical refresh rate correctly
 (Eric Mangold)
   23. unsubscribe (Hua zhang)
   24. RE: XFConfig requirements for kbd and mouse
 (Jesse Hutton)
   25. Re: i810 driver agpgart error (David Dawes)
   26. Re: Unable to set vertical refresh rate
 correctly (Eric Mangold)
   27. unsubscribe (Hua zhang)
   28. Re: Game Locks up in XWindows, how do I get
 out without
restarting (Oisin C. Feeley)
   29. unsubscribe xfree86 [EMAIL PROTECTED]
 (Hua zhang)
   30. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   31. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   32. Re: XFConfig requirements for kbd and mouse
 (Brian C. Dilley)
   33. Re: Game Locks up in XWindows, how do I get
 out without restarting (Paul Wharff)
   34. RE: XFConfig requirements for kbd and mouse
 (Jesse Hutton)
   35. RE: XFConfig requirements for kbd and mouse
 (Jesse Hutton)
   36. no driver for ati radedon igp
 320m?/hotmail.com addresses don't work on list
 (David Cougle)
   37. Re: Pseudo 8bit over 24bit display (Dr Andrew
 C Aitchison)
   38. Re: Game Locks up in XWindows, how do I get
 out without restarting (Eric Christopherson)
   39. commands commence before first target.
 ([EMAIL PROTECTED])
   40. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   41. Re: i810 driver agpgart error (Michel
 =?ISO-8859-1?Q?D=E4nzer?=)
   42. Pb Compilation : Makefile.linux:80: ***
 commands commence before first target.
 ([EMAIL PROTECTED])
   43. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   44. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   45. XFree86 4.2.0 (Omer Aloni)
   46. RE: XFConfig requirements for kbd and mouse
 (Peter Finderup Lund)
   47. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   48. Re: XFConfig requirements for kbd and mouse
 (=?ISO-8859-1?Q?Hans_=D6fverbeck?=)
   49. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   50. Driver SIS650 64MB shared (angelo)
   51. ati all in wonder (Tony Wright)
   52. Re: Radeon IGP M320 (Michel
 =?ISO-8859-1?Q?D=E4nzer?=)
   53. support of ATI All-In-Wonder 9000 Series
 (Alexandr Opanasiuk)
   54. RE: XFConfig requirements for kbd and mouse
 (David Turetsky)
   55. RE: XFConfig requirements for kbd and mouse
 (Peter Finderup Lund)
   56. NeoMagic MagicMedia 256AV patched for Xv /
 still not enough (Florent CHANTRET)
   57. RE: XFConfig requirements for kbd and mouse
 (Jesse Hutton)
   58. Re: Game Locks up in XWindows, how do I get
 out without
restarting (Oisin C. Feeley)
   59. Trident cy9385 problems - a little bit more
 information (Glyn Kennington)
   60. 02/06/2003 xfree86 Error Message (TOSH
 MITSUYA)
   61. Cannot configure XFree86 on IBM Thinkpad T23
 2647 LU4 (Steve Shellhammer)
   62. Re: host.def (Michel
 =?ISO-8859-1?Q?D=E4nzer?=)
   63. X fails to boot. (Gregory Berkolaiko)
   64. Re: RADEON 2D offscreen pixmaps limitation
 (Michel =?ISO-8859-1?Q?D=E4nzer?=)
   65. Re: i810 driver agpgart error (Michael
 Cardenas)
   66. My Installation ([EMAIL PROTECTED])
   67. Can not 

Re: [XFree86] Unsubscribe

2003-02-11 Thread Don
 Please unsubscribe me from the list.
Please do it yourself.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] Unsubscribe

2003-02-11 Thread Kurt Wall
Feigning erudition, Andrew Goh wrote:
% Please unsubscribe me from the list.

Do so yourself at the URL appended to each message that passes 
through the list.

Kurt
-- 
Don't get suckered in by the comments -- they can be terribly
misleading.  Debug only code.
-- Dave Storer
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86



Re: [XFree86] i810 driver agpgart error

2003-02-11 Thread Egbert Eich
Michael Cardenas writes:
  Unfortunately, I edited i810_memory.c and changed
  
  if (xf86AgpGARTSupported()  !pI810-directRenderingEnabled
  pI810-GttBound) {
  
  to
  
  if (xf86AgpGARTSupported()  pI810-GttBound) {
  
  and it still produces the same error when I launch a second X server. 
  
  (WW) xf86AcquireGART: AGPIOC_ACQUIRE failed (Device or resource busy)
  (EE) GARTInit: AGPIOC_INFO failed (Invalid argument)
  (EE) I810(0): AGP GART support is not available.  Make sure your kernel has
  agpgart support or that the agpgart kernel module is loaded.
  
  Any suggestions on how to proceed?
  

This is not so easy to fix. 

Only when used *without* DRI I810UnbindGARTMemory() 
unbinds the GART memory. In this case unbinding
works well, starting a second server is no problem.

With DRI unbinding has to be done thru a different
interface. In this case the drm functions drmAgpUnbind(),
 drmAgpRelease(), drmAcquire() and drmBind() need to take 
care of unbinding/releaseing and reacquiring/rebinding
the AGP memory. 
The current driver contains no code doing this.

The patch in attachment 1 fixes this. There is one
bug in the agpgart module and another one in agp_unbind()
in the drm kernel driver which prevent a VT switch when
direct rendering is enabled. Attachment 2 has patches.

One last problem remains: 
These patches don't help starting a second Xserver:
This second Xserver hangs in the lock created by the first
one.
The release() in the drm kernel driver tries to obtain a
lock, when __HAVE_RELEASE is set. This lock is however held
by the first Xsever.
Only the i810 and i830 drivers have __HAVE_RELEASE set
therefore other Xservers aren't affected.

I've added Keith Whitwell, the original author of the i810 driver,
to Cc. Maybe he can help me to find out how to fix this.


Egbert.




diff.i810_vtswitch
Description: Binary data


diff.i810_vtswitch_kernel
Description: Binary data