CVS Update: xc (branch: trunk)

2005-01-20 Thread Marc Aurele La France
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   05/01/20 09:28:10

Log message:
   275. Fix handling of PCI 64-bit BARs (Derived from Michael Yaroslavtsev;
Bugzilla #1531).

Modified files:
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  xc/programs/Xserver/hw/xfree86/common/:
xf86pciBus.c 
  
  Revision  ChangesPath
  3.3388+3 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG
  3.83  +26 -107   xc/programs/Xserver/hw/xfree86/common/xf86pciBus.c

___
Cvs-commit mailing list
Cvs-commit@XFree86.Org
http://XFree86.Org/mailman/listinfo/cvs-commit


CVS Update: xc (branch: trunk)

2005-01-20 Thread Marc Aurele La France
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   05/01/20 09:53:46

Log message:
   276. Ensure DGA screen dimensions fit in 16 bits (Marc La France).

Modified files:
  xc/programs/Xserver/Xext/:
xf86dga2.c 
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  
  Revision  ChangesPath
  1.21  +25 -18xc/programs/Xserver/Xext/xf86dga2.c
  3.3389+2 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG

___
Cvs-commit mailing list
Cvs-commit@XFree86.Org
http://XFree86.Org/mailman/listinfo/cvs-commit


Re: What happened to the fonts?

2005-01-20 Thread Bukie Mabayoje
I am looking into a similar problem too, when xfs is not running.

Mark Vojkovich wrote:

I synced up and built and now, though the server starts fine,
 apps can't get any fonts.  Window managers claim they can't find
 fontsets like fixed so menus and such have no text in them.
 xfontsel seems to work though.  Anyone know what's going on?
 It's like the fonts.alias isn't being read anymore.  I can
 see fixed in the fonts.alias and I can see the corresponding
 font in the fonts.dir and I can see that the font file exists
 and can verify that the server acknowledged that font path.

 Mark.
 ___
 Devel mailing list
 Devel@XFree86.Org
 http://XFree86.Org/mailman/listinfo/devel
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


How to draw a line without a Drawable

2005-01-20 Thread Steven Webb
I want to draw a line across the entire screen, including all windows 
and the desktop but I'm not sure how to achieve this.  Any suggestions? 
 Should I use SDL?

Thanks.
Steve.
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


Re: What happened to the fonts?

2005-01-20 Thread Marc Aurele La France
On Thu, 20 Jan 2005, Bukie Mabayoje wrote:
Mark Vojkovich wrote:
   I synced up and built and now, though the server starts fine,
apps can't get any fonts.  Window managers claim they can't find
fontsets like fixed so menus and such have no text in them.
xfontsel seems to work though.  Anyone know what's going on?
It's like the fonts.alias isn't being read anymore.  I can
see fixed in the fonts.alias and I can see the corresponding
font in the fonts.dir and I can see that the font file exists
and can verify that the server acknowledged that font path.

I am looking into a similar problem too, when xfs is not running.
I've been able to make the fontset message appear with a simple test case 
(holding down the control key and pressing any mouse button while the pointer 
is in an xterm).

I've also tried this with a build where CHANGELOG 264 is backed out and it 
still happens so something else is causing this.  CHANGELOG 264 is

   264. In font handling, avoid potential security issues related to wrap-around
of memory allocation requests (Marc La France).
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 developer and VP.  ATI driver and X server internals.
___
Devel mailing list
Devel@XFree86.Org
http://XFree86.Org/mailman/listinfo/devel


Re: Small issue in the ati/radeon dga driver

2005-01-20 Thread Marc Aurele La France
On Wed, 19 Jan 2005, Marc Aurele La France wrote:
On Mon, 17 Jan 2005, Michel Dänzer wrote:
On Sat, 2005-01-15 at 12:12 +, James Wright wrote:
   Not sure if this is the right place to report this but anyway;

xc/programs/XServer/hw/xfree86/drivers/ati/radeon_dga.c

Line 114: currentMode-imageHeight= (info-FbMapSize / 
currentMode-bytesPerScanline);

On my Radeon IGP chipset with 64MB of VideoRam, this value is calculated 
as
65536 (0x01). Although here the variable is a 32 bit integer, later in 
the
dga library this value is truncated to a 16 bit integer, causing the 
driver to
report the imageHeight as zero. I added a single line beneath Line
144 to clamp the value to the max a 16 bit iteger can hold;

if (currentMode-imageHeight  0x) currentMode-imageHeight = 0x;

This fixes the problem for my radeon, but I think the other ati drivers 
may
suffer from the same problem, but I do not have the hardware to test.

Note that the Radeon 2D engine only supports signed 14 bit coordinates.

That's a good point, but not one against changing common code to at least 
clamp coordinates to the 16 bits the protocol handles.
I've just committed the central change for this, (Xext/xf86dga2.c).
As for lower 2D engine specific limits, they should only be enforced when the 
engine would actually be used for a particular DGA mode.  Usually, but not 
always, that's when the mode's DGA_CONCURRENT_ACCESS is off.

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 developer and VP.  ATI driver and X server internals.

[XFree86] Xserver Crashing

2005-01-20 Thread Shrikanth



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

OPERATING SYSTEMRED hat linux 7.2 (Enigma)Kernel 2.4.7-10 ( on 
an i686 )

The Video Accelerator thatI am using == Intel Corp 82865G 
Integrated Graphics Device
I have got Intel Pentium 2.8 Ghz with 1G DDR Ram, but I am not 
able to get my Xserver up. Each time I give startx it dumps the log file. Not 
having much idea. I have attached the XF86config and also the XFree86.0.log 
filesd as attachments.


XFree86.0.log
Description: Binary data


XF86Config
Description: Binary data


[XFree86] Problem with Radeon 7000 (Cannot read V_BIOS)

2005-01-20 Thread anders
Hi, I am experiencing a problem with X that I am unable to solve. I hope
someone here will be kind enough to help.
I want to use my onboard vga-card together with a pci-card to set up
dual-screen. Here are my details:
OS: Ubuntu
X : xserver-xfree8 4.3.0.1
Skjermkort 1: Onboard i810
Skjermokrt 2: Sapphire Radeon 7000 PCI
Monitor 1 and 2: Eizo FlexScan L550

First I configured my i810 and left monitor as screen 1, and my radeon and
right monitor as screen 2.
I set up my ServerLayout to use only screen 1, which worked. I then set it
up to use only screen 2, which worked. I then tried to use both, which
didn't work. The weird thing is when I reverted the changes I had made,
using only screen 2 does not work anymore.
Here is the error-msgs from startx:
 (EE) RADEON(0): Cannot read V_BIOS
 (EE) RADEON(0): No valid modes found
 (EE) Screen(s) found, but none have a usable configuration.

As previously stated, it worked perfectly before! I have also been able to
reproduce the errors on another identical machine.
Here are links to my XF86Config-4, the entrie output from startx, as well
as the log. Please note that the log reports trying a hole bunch of modes
not set up in XF86Config-4. Is this normal behaviour?
http://hanab.org/paste/startx
http://hanab.org/paste/XF86Config-4
http://hanab.org/paste/XFree86.0.log

I have two goals. Fisrt, to get my Radeon back up, and understand why it
does not work atm. Second, to be able to use it in a dual-screen setup.
Thanks a lot for your time!

Sincerely,
Anders Schau Knatten
Norway


___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] No Sham - Literal Science! Enlarge your member.

2005-01-20 Thread Joanna Rugmiu




No Fraud . . . Literal Study! The such case of enquiry
that composed other marvel narcotics, has now originated a revolutionary
grass pill that can gain your phallus size by 3"  to 6" 
in precisely a some shortish hebdomads! Simply ingest 2 my lozenges every solar day... 
It will produce your phallus growth a huge 45%!
New Info



[XFree86] Probleme mit dem X-Server unter DEBIAN 3.0 (woody-release)

2005-01-20 Thread Matthias . Anthes

Sehr geehrte Damen und Herren,

leider läuft mein X-Server auf einem THIN-Client (FUTRO C100) nicht mehr korrekt hoch.

Daher habe ich Ihnen zur Analyse die Log-Files die der XFree86 Server ausgepuckt hat beigefügt.

Bitte um möglichst baldige Unterstützung, da das in diesem Zusammenhang relevante Projekt sehr zeitkritisch ist.


Vielen Dank im Voraus für den Support,

Matthias Anthes
DFS Deutsche Flugsicherung GmbH
TWR/TB
Am DFS-Campus 7
D-63225 Langen
TEL: +49-(0)6103-707-2833
FAX: +49-(0)6103-707-2805

[EMAIL PROTECTED]: [EMAIL PROTECTED]




DFS Deutsche Flugsicherung GmbHUnternehmenszentraleAm DFS-Campus 10D - 63225 LangenTel.: +49-(0)6103-707-0 Home Page: http://www.dfs.de-BEGIN PGP PUBLIC KEY BLOCK-Version: PGP 6.5.8mQGiBECbVgwRBAD09k4R2DiCObeUeO+FZCBJ8OkjzEIQ3niUMHSwlQmX5prKCJQeNjEGvsS4Ex6qdYQ/awmXkNtOpsF0mN3aBoKUyRDF6KkkfsTNYQQ6WyK5RHu2Q4wQG93DL+Ryhgs2oNH3Ou4FbEiYATJCl14fpxd08D0DCsmL0ZfeaZlZeBCUzwCg/8sYqJ2uSj5JgHWEp170menK6CUEAIlI3gXegKbBY1PFSpzNpjVGQJg9bQR4B6tqdASPnLfsQR+1BIIz0WFgiIickqPSRbGYP7slpw9onE43su3HVg2sBMI25Q5kK6WujPUGn72PDy8yogXCcYS807FcqMqKTqYjiRQxbcQn3gJaoTau0/HJTHF9jES89SyIDXdmCjphA/9FZ0tmotILaxyL53X8G01lf28NhykkGzbBTiIAsgTcvCx6b1GxBwUb/WlLKmWG3kjwSsZxtPzrUPN3Z83pavfCQI4E9tNI4mVgX9gtklKoVtJPglu2jPrJ+umZUO78anBrsTnPzOJ954+uziMe3imsFAC8T2gAmgsAvZgZP98gBLQYREZTIEdtYkggPHB1YmtleUBkZnMuZGU+iQBOBBARAgAOBQJAm1YMBAsDAQICGQEACgkQN3h5OLnydHrchQCgmuRvdqRthFARXOQatgKCc+5pWs4AoPkSU2XeYbNq4AVmv0BJOpRgOsCJuQMNBECbVosQDADMHXdXJDhK4sTw6I4TZ5dOkhNh9tvrJQ4X/faY98h8ebByHTh1+/bBc8SDESYrQ2DD4+jWCv2hKCYLrqmus2UPogBTAaB81qujEh76DyrOH3SET8rzF/OkQOnX0ne2Qi0CNsEmy2henXyYCQqNfi3t5F159dSST5sYjvwqp0t8MvZCV7cIfwgXcqK61qlC8wXo+VMROU+28W65Szgg2gGnVqMU6Y9AVfPQB8bLQ6mUrfdMZIZJ+AyDvWXpF9Sh01D49Vlf3HZSTz09jdvOmeFXklnN/biudE/F/Ha8g8VHMGHOfMlm/xX5u/2RXscBqtNbno2gpXI61Brwv0YAWCvl9Ij9WE5J280gtJ3kkQc2azNsOA1FHQ98iLMcfFstjvbzySPAQ/ClWxiNjrtVjLhdONM0/XwXV0OjHRhs3jMhLLUq/zzhsSlAGBGNfISnCnLWhsQDGcgHKXrKlQzZlp+r0ApQmwJG0wg9ZqRdQZ+cfL2JSyIZJrqrol7DVelMMm8AAgIL/2zbjaNlPL+13ZFiJwAGg0yj4zciLkp141Pwvn2OtY+BJZxnIfcPKINj2f5QiW4weqV9OMJ5EgZcx8aRxkk5uJsJv3S1JFUUNaSwCl0xynprSpw5QsoCAQAhzmOlqj1tvCJW3bm3iniiud6UzGjbdpvU9oeiSOGMFYVpfGCHC5fb4TnnsLcrmARXh3COKle27X7TGOROUWyxqKWdHvBsMEjO2ERF2A+nMEYz4dd8kezdIiw9hjftJtp9GpCJ5CWq4jcyQ5Bb+D0IUqI0FdH9Mfe8ytMnDRwDPH1r9FaCNkaHQ+8Aqp20QbSHe03CaT8UbYziNCNdzCFt4QjDqAfDsTKEHGeBzKfBprsKbox6CURkIikAiUX0YE1P3bxH2ovP5bxEormlPfFN870QYNZYmo03hX41H6LnOaI4YaHzfiXGPlrm/mtkDryXoqA57f09vcQcAmS6Qa50qyqheGK49lSM9MndqXGWrmddtccE3qUJ/U1UAxqX11l80Yz8Wk+brokARgQYEQIABgUCQJtWiwAKCRA3eHk4ufJ0enLHAJ9R3Z0uPt+U+qSJU/63IpU/y+Ho3QCgg571CpdVdsohBeaF21f4uckz3nU==h1ys-END PGP PUBLIC KEY BLOCK-

XFree86.0.log.old
Description: Binary data


XFree86.0.log
Description: Binary data


[XFree86] Apple Cinema 20 and DPMS

2005-01-20 Thread David Thompson
Hello:

I am currently using an Apple Cinema 20 Display with
a SuSE 9.1 distribution - kernel - 2.6.5-7.19.111
kernel and XFree86 4.3.99-902.43.28 with an NVIDIA
GeForce 4 MMX 440 video card and the NVIDIA Driver
NVIDIA-Linux-x86-1.0-5336.

I am having problems using DPMS - It does put the
display into Standby Mode and then Shut it down (turn
off the backlight) correctly but then when I try to
restart or wake up the display, it does not fully turn
back on.  

Instead I get a blank screen with a tiny bit of my
screensaver visible here and there (the last thing it
displayed before turning off) and the mouse pointer
which does move about the screen but I can't see
anything else.  

I then have to reboot my computer using key commands .

I would appreciate any advice anyone has on fixing
this as it used to work when I had SuSE 9.0 installed
with the NVIDIA kernel but no longer - and I do need
the distro upgrade for the 2.6 kernel.

Cheers,

David





___ 
ALL-NEW Yahoo! Messenger - all new features - even more fun! 
http://uk.messenger.yahoo.com
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Interactive Whiteboard...

2005-01-20 Thread Grant Sewell
Hi all.

I teach at a local college where we have a fair number of interactive 
whiteboards (touch sensitive, or pen-activated boards onto which the screen is 
projected).  The particular model I am interested in is the Promethean 
Activboard.

I use a laptop running Debian Sid with XFree 4.3.0.1.  I have the Graphics side 
of things setup very nicely thank-you, but I would like to get the interactive 
pen running as a pointing device so that I can leave the laptop in the corner 
of the room and not have to revisit it every couple of seconds.

The whiteboard connects to the computer via a standard (I presume, RS232) 
serial port (9pin variety).  I have tried every combination of 
driver/protocol that I could imagine for serial mice, and I have tried using 
both the laptop's own serial port and a USB-serial adaptor, but nothing has 
worked so far.

Has anyone had any success using these whiteboards with X?

I have contacted the manufacturer but they didn't seem particularly interested 
in my request for assistance (now there's a surprise).

Thanks.

Grant.
-- 
Artificial intelligence is no match for natural stupidity.
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] (no subject)

2005-01-20 Thread esnaket
___
XFree86 mailing list
XFree86@XFree86.Org
http://XFree86.Org/mailman/listinfo/xfree86