Re: [inbox] [XFree86] A Problem ;

2004-04-14 Thread David
Suggestion, not full solution.

It looks like you did not configure the X system during the install. XFree86 
should be using the config file XF86Config-4 not XF86Config.test.

You probably do not have /etc/X11/XF86Config-4 written yet.

If this is the case, become root and try running XFree86 -configure.

This should set up XFree86. Try it and check that it is now using the new 
config file. If it is and you still have problems edit the XF86Config-4 file. 
Find the section that looks like this:

Section "Device"
Identifier "device1"
VendorName "NVidia"
BoardName "NVIDIA GeForce4 (generic)"
Driver "nvidia"
Option "DPMS"
EndSection

Make the Driver "nv" if you have not downloaded and installed the Nvidia 
drivers from their web site.

Good luck.


On Wednesday 14 Apr 2004 15:00, Ramin Setiheshi wrote:

> Hi ,
>
> i trayed to install mandrake 9.0 on my pc.
>
> but i can't start the graphic mode (startx) .  please hep me.
>
> my motherboard is "MSI" and graphic card "Geforce4 MX-440 with AGP8x
> (NVIDIA Geforce MX 440) ".
>
> thanks.
>
> here is logfile:
>
> ---
>
>
> 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.9.log", Time: Wed Apr 14 21:40:36 2004
>
> (++) Using config file: "/etc/X11/XF86Config.test"
>
> (==) ServerLayout "layout1"
>
> (**) |-->Screen "screen1" (0)
>
> (**) | |-->Monitor "monitor1"
>
> (**) | |-->Device "device1"
>
> (EE) No core pointer device specified
>
> (EE) Unable to determine the screen layout
>
> (EE) Error from xf86HandleConfigFile()
>
>
> Fatal server error:
>
> no screens found
>
>
> When reporting a problem related to a server crash, please send
>
> the full server output, not just the last messages.
>
> This can be found in the log file "/var/log/XFree86.9.log".
>
> Please report problems to [EMAIL PROTECTED]

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


Re: [XFree86] X does not start

2004-04-14 Thread Mark Vojkovich
   You are using the "nv" driver that comes with XFree86 but
you have a glx module from an ancient NVIDIA binary release.
Remove NVIDIA's /usr/X11R6/lib/modules/extensions/libglx.so
and the "nv" driver should start.

Mark.

On Tue, 13 Apr 2004, buffer emailaccount wrote:

> Please help !
>
> X does not start after I upgraded my machine from
> RedHat 7.2 to 9.0. I then installed the current
> version of XFree86 4.4 but that did not help either.
>
> The system has a nVIDIA, Quadro2 Pro 64MB Video Card
> and is connected to a Dell M991 monitor.
>
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] XFree86 4.3.0.2 server not exiting

2004-04-14 Thread Marc Aurele La France
On Wed, 14 Apr 2004, Ulrich Teichert wrote:

> first, sorry for the delay. I had a short vacation over easter.

Not a problem.

> > > (gdb) info all-registers
> > > eax0xff 255
> > > ecx0x3d5981
> > > edx0x3d5981
> > > ebx0x3d5981
> > > [snip]

> > > The loop starts at 0x401a9759 and goes to 0x401a975e. If I jump to
> > > 0x401a9760 in the debugger, the server terminates. So, it reads 0x3d5,
> > > whatever that is (probably I/O stuff) and the test never succeeds.

> > Looks like it's looping in function gfx_vga_mode_switch() near the tail end of
> > xc/programs/Xserver/hw/xfree86/drivers/ncs/gfx/vga_gu1.c, part of which reads

> >/* WAIT UNTIL SOFTVGA HAS VALIDATED MODE IF ENDING MODE SWITCH */
> >/* This is for VSA1 only, where SoftVGA waits until the next */
> >/* vertical blank to validate the hardware state. */
> >
> >if ((!active) && (!(gu1_detect_vsa2( {
> >   OUTB(crtcindex, 0x33);
> >   while (INB(crtcdata) & 0x80) ;
> >}

> > Change this to ...

> >/* WAIT UNTIL SOFTVGA HAS VALIDATED MODE IF ENDING MODE SWITCH */
> >/* This is for VSA1 only, where SoftVGA waits until the next */
> >/* vertical blank to validate the hardware state. */
> >
> >if ((!active) && (!(gu1_detect_vsa2( {
> >   int cnt = 256;
> >
> >   OUTB(crtcindex, 0x33);
> >   while (--cnt && (INB(crtcdata) & 0x80));
> >}

> > ... and see what happens.

> Great! Now, it terminates correctly,

> Thanks a million,

Well, that's fine, but my suggestion is only a workaround.  I don't have docs
for this chip, but it would be better to know what CRTC 0x33 is, what this code
is waiting for (0x80 isn't my idea of descriptive), and why the hardware isn't
turning off this bit.

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 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] External CRT problem.

2004-04-14 Thread Jansen Carlo Sena
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Hi all,

I'm trying to install Linux in a HP Pavilion ze4500 notebook. I have a
Radeon video card. Follow my lspci output.
#lspci

...
01:05.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility U1
...
I'm not able to do my external CRT interface works.

When I plug a external Monitor in my system I can see just the text
mode. The X doesn't work and in X mode I can see just my LCD. What can I
do to my external CRT interface works?
I'm sending my XF86Config file.

Can anyone help me, please?

Regards,

Jansen.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFAfawsbOKleYonF14RAjp/AJ9v9hQ63NSnS+eRi5BOQSzUvKDCLQCcC/1V
587YaRDIuRbVWjPF0OyrnKc=
=MeeU
-END PGP SIGNATURE-
Section "ServerLayout"
Identifier  "Main"
Screen  0 "Laptop Screen" 0 0
InputDevice "InternalKeyboard" "CoreKeyboard"
#   InputDevice "Touchpad" "CorePointer"
InputDevice "touchpad-ps2" "CorePointer"
InputDevice "USB Mouse" "CorePointer"
Option  "BlankTime" "5" 
#Option "StandbyTime"   "10"
#Option "SuspendTime"   "15"
Option  "OffTime"   "10"
EndSection

Section "ServerFlags"
Option  "AllowMouseOpenFail" "true"
Option  "xinerama" "true"
EndSection


Section "Files"
RgbPath  "/usr/X11R6/lib/X11/rgb"
ModulePath   "/usr/X11R6/lib/modules"
#ModulePath   "/usr/X11R6/lib/modules-dri-trunk"
FontPath "unix/:7100"
FontPath "/usr/X11R6/lib/X11/fonts/misc:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/misc"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo"
FontPath "/usr/X11R6/lib/X11/fonts/PEX"
# True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
FontPath "/usr/X11R6/lib/X11/fonts/Type1"
FontPath "/usr/share/fonts/ttf/western"
FontPath "/usr/share/fonts/ttf/decoratives"
FontPath "/usr/share/fonts/truetype/openoffice"
FontPath "/usr/X11R6/lib/X11/fonts/defoma/CID"
FontPath "/usr/X11R6/lib/X11/fonts/defoma/TrueType"
EndSection

Section "Module"
Load "synaptics"
Load  "ddc"  # ddc probing of monitor
Load  "GLcore"
Load  "dbe"
Load  "dri"
Load  "extmod"
Load  "glx"
Load  "bitmap" # bitmap-fonts
Load  "speedo"
Load  "type1"
Load  "freetype"
Load  "record"
#Load  "fbdevhw"
###
Load"vbe"
Load"int10"
Load"glint"
Load"drm"
Load"xaa"
EndSection


Section "InputDevice"
Identifier  "InternalKeyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules" "xfree86"
Option  "XkbModel" "pc104"
Option  "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option  "SendCoreEvents"  "true"
Option  "SHMConfig" "on"
#Option "Protocol"  "event"
#Option "Device""/dev/input/event0"
Option  "Device""/dev/psaux"
Option  "Protocol"  "auto-dev"
#Option  "Edges" "1900 5400 1800 3900"
Option  "TopEdge"   "1350"
Option  "BottomEdge""4700"
Option  "LeftEdge"  "1280"
Option  "RightEdge" "5400"
Option  "FingerLow" "25"
Option  "FingerHigh""30"
#Option  "Finger""25 30"
Option  "MaxTapTime""180"
Option  "MaxTapMove""220"
Option  "EmulateMidButtonTime"  "75"
Option  "VertScrollDelta"   "100"
Option  "MinSpeed"  ".08" # "0.02"
Option  "MaxSpeed"  "0.18"
Option  "AccelFactor"   "0.0010"
Option  "LockedDrags"   "off"
Option  "UpDownScrolling"   "on"
Option  "RTCornerButton""0"
Option  "RBCornerButton""0"
Option  "LTCornerButton""0"
Option  "LBCornerButton""0"
Option  "TapButton1"

Re: [XFree86] radeon driver only ever uses clone mode instead of dual head

2004-04-14 Thread Frits Jalvingh
Gismo/Luca,

Thanks a million! I did never guess that the DRI drivers were that different! 
I have a working, dual-head config now after compiling DRI from CVS over my 
XFree 4.4 installation!

I just had to tweak the config you sent but that took only 30 minutes.

Thanks again!!!

Frits

> Hello,
>
> on 04/14/04 14:21, Frits Jalvingh wrote:
> > I have a portable (Sony GRX316MP) which contains a Radeon 7500 mobility
> > which has dual-head capability. I know this chip CAN handle non-cloning
> > dual head because the X server from Xig does it (and Windows of course).
> > But the Xig server has some problems and it seems to only support two
> > heads in Xinerama mode; I want to have separate X displays on both heads.
>
> I've an ASUS M6842NWH with an ATI Radeon 9600 Mobility NP M10 and dual-head
>  work perfectly with the XF86Config-4 attached.
>
> > To get the secondary screen to work at all I had to specify
> > Option "CloneMode" "1280x1024"
> > in the device section for the primary head, else it used the mode for the
> > primary head regardless of the information in the Screen section and the
> > information returned by DDC from the 2nd screen.
>
> 
>
> > I also have Screen, Monitor and Modes sections for each separate monitor.
>
> AFAIK this is not correct, in this way you configure your XFree86 to use
> Xinerama. You should use the 'radeon' driver from the DRI package.
>
> Please visit these links:
>   http://dri.sourceforge.net/cgi-bin/moin.cgi/ATIRadeon
>   http://dri.sourceforge.net/cgi-bin/moin.cgi/MergedFB
>   http://www.botchco.com/alex/radeon/mergedfb/cvs/DRI/final/radeon.4.html
>
> Thx, bye,
> Gismo / Luca
>
> ---
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] X does not start

2004-04-14 Thread buffer emailaccount
I downloaded and installed the latest Nvidia drivers
(1.0-5336) and modified the XConfig file but that did
not help.
(EE) NVIDIA(0): Failed to initialize the NVIDIA kernel
module!
(EE) Screen(s) found, but none have a usable
configuration.
Fatal server error:
no screens found

To resolve the NVIDIA error message, the nVidia README
suggested:
./insmod nvidia_drv.o
But this gives the error message:
"Couldn't find the kernel version the module was
compiled for."

This is all Greek and Latin to me.

I have attached the config and log files below.
Thanks.
=
# XFree86 4.0 configuration generated by Xconfigurator

Section "ServerLayout"
Identifier "XFree86 Configured"
Screen  0  "Screen0" 0 0
InputDevice"Mouse0" "CorePointer"
InputDevice"Keyboard0" "CoreKeyboard"
EndSection

# By default, Red Hat Linux 6.0 and later use xfs

Section "Files"
FontPath "unix/:7100"
EndSection

# Module loading section

Section "Module"
Load  "dbe" # Double-buffering
Load  "glx" # OpenGL X protocol interface
Load  "extmod"  # Misc. required extensions
Load  "v4l" # Video4Linux
# Load  "record"# X event recorder
# You only need the following two modules if you do
not use xfs.
# Load  "freetype"   # TrueType font handler
# Load  "type1" # Adobe Type 1 font handler
EndSection

Section "InputDevice"
Identifier  "Keyboard0"
Driver  "keyboard"
Option  "XkbLayout" "us"
EndSection

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

Section "Monitor"
Identifier "DELL  M991"
VendorName "Unknown"
ModelName  "Unknown"
HorizSync 30 - 96
VertRefresh 50 - 160
Option "dpms"
EndSection

Section "Device"
Identifier "nVidia Corporation|NV15 GL (Quadro2)"
Driver "nvidia"
BoardName "Unknown"
EndSection

Section "Device"
Identifier "Linux Frame Buffer"
Driver "fbdev"
BoardName "Unknown"
EndSection

Section "Screen"
Identifier "Screen0"
Device "nVidia Corporation|NV15 GL (Quadro2)"
Monitor "DELL  M991"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1600x1200"
EndSubSection
EndSection

Section "DRI"
Mode 0666
EndSection
=
_XSERVTransSocketOpenCOTSServer: Unable to open socket
for inet6
_XSERVTransOpen: transport open failed for
inet6/newton.sf.aer.com:0
_XSERVTransMakeAllCOTSServerListeners: failed to open
listener for inet6

XFree86 Version 4.4.0
Release Date: 29 February 2004
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.18-14 i686 [ELF] 
Current Operating System: Linux newton.sf.aer.com
2.4.20-8smp #1 SMP Thu Mar 13 17:45:54 EST 2003 i686
Build Date: 27 February 2004
Changelog Date: 29 February 2004
Before reporting problems, check
http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==)
default setting,
(++) from command line, (!!) notice, (II)
informational,
(WW) warning, (EE) error, (NI) not implemented, (??)
unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Wed Apr
14 10:14:08 2004
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "DELL  M991"
(**) |   |-->Device "nVidia Corporation|NV15 GL
(Quadro2)"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "unix/:7100"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such device)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.7
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.4.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
compiled for 4.4.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.7
(--) using VT number 7

(II) P

Re: [XFree86] radeon driver only ever uses clone mode instead of dual head

2004-04-14 Thread Frits Jalvingh
Hmmm. As I said I compiled a XFree86 4.4 version from source... That's not 
old.. I will look into the DRI version of the driver though since it seems to 
have different parameters at least...

Frits

On Wednesday 14 April 2004 17:50, Alex Deucher wrote:
> your version of xfree86 is way too old.  please try with a newer
> version.  there were quite a few bugs in the pre-4.3 version.  you may
> need the "monitorlayout" option which wasn't added until after 4.3 was
> released.  Also, as was poined out, you can also use mergedfb for
> dualhead.
>
> Alex
>
> --
>
> Hello,
>
> I have a portable (Sony GRX316MP) which contains a Radeon 7500 mobility
> which
> has dual-head capability. I know this chip CAN handle non-cloning dual
> head
> because the X server from Xig does it (and Windows of course). But the
> Xig
> server has some problems and it seems to only support two heads in
> Xinerama
> mode; I want to have separate X displays on both heads.
>
> But whatever configuration I try in XFree86 I at the most get a cloned
> screen,
> i.e. the secondary monitor shows (part of) the primary screen.
> The primary screen is the laptop's LCD at [EMAIL PROTECTED], the secondary
>
> monitor is an LCD [EMAIL PROTECTED]
>
> To get the secondary screen to work at all I had to specify
> Option "CloneMode" "1280x1024"
> in the device section for the primary head, else it used the mode for
> the
> primary head regardless of the information in the Screen section and
> the
> information returned by DDC from the 2nd screen.
>
> Parts of my XF86Config:
>
> Section "ServerLayout"
>   Identifier  "XFree86 Dual-Head"
>   Screen  0   "Screen0" 0 0
>   Screen  1   "Screen1" RightOf "Screen0"
>   InputDevice "Mouse0""CorePointer"
>   InputDevice "Keyboard0" "CoreKeyboard"
>   Option "Clone" "off"
> EndSection
>
> Section "Device"
>   Identifier  "Card0"
>   Driver  "radeon"
>   VendorName  "ATI Technologies Inc"
>   BoardName   "Radeon VE"
>   BusID   "PCI:1:0:0"
>   Option "CloneMode" "1280x1024"
>   Option "CloneVRefresh" "75-75"
>   Screen  0
> EndSection
>
> Section "Device"
>   Identifier  "Card1"
>   Driver  "radeon"
>   VendorName  "ATI Technologies Inc"
>   BoardName   "Radeon VE"
>   BusID   "PCI:1:0:0"
>   Screen  1
> EndSection
>
> I also have Screen, Monitor and Modes sections for each separate
> monitor.
>
> Whatever I do I either have no display on the secondary monitor at all,
> or the
> server dies with a SEGV, or I have a cloned display instead of a dual
> head
> (separate X desktops). I tried the Xinerama stuff also but this has no
> effect
> whatshowever which seems logical since i do not HAVE two heads to
> Xinerama
> on ;-)
> I tried this on the SUSE 9.0 stock XFree which seems to be a patched
> prerelease of XFree 4.3 (it has the warnings and reports a 4.2.99
> version
> number). But I also compiled XFree 4.4-with-patches from source and it
> doesn't work either.
>
> Can ANYONE help me? Please? I'm currently looking at the radeon_driver
> source
> but before I know what's going on there will take a while >-(
>
> Thans,
>
> Frits Jalvingh
>
>
>
>
> __
> Do you Yahoo!?
> Yahoo! Tax Center - File online by April 15th
> http://taxes.yahoo.com/filing.html
> ___
> XFree86 mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] radeon driver only ever uses clone mode instead of dual head

2004-04-14 Thread Alex Deucher
your version of xfree86 is way too old.  please try with a newer
version.  there were quite a few bugs in the pre-4.3 version.  you may
need the "monitorlayout" option which wasn't added until after 4.3 was
released.  Also, as was poined out, you can also use mergedfb for
dualhead.

Alex

--

Hello,

I have a portable (Sony GRX316MP) which contains a Radeon 7500 mobility
which 
has dual-head capability. I know this chip CAN handle non-cloning dual
head 
because the X server from Xig does it (and Windows of course). But the
Xig 
server has some problems and it seems to only support two heads in
Xinerama 
mode; I want to have separate X displays on both heads.

But whatever configuration I try in XFree86 I at the most get a cloned
screen, 
i.e. the secondary monitor shows (part of) the primary screen.
The primary screen is the laptop's LCD at [EMAIL PROTECTED], the secondary

monitor is an LCD [EMAIL PROTECTED]

To get the secondary screen to work at all I had to specify
Option "CloneMode" "1280x1024"
in the device section for the primary head, else it used the mode for
the 
primary head regardless of the information in the Screen section and
the 
information returned by DDC from the 2nd screen.

Parts of my XF86Config:
  
Section "ServerLayout"
Identifier  "XFree86 Dual-Head"
Screen  0   "Screen0" 0 0
Screen  1   "Screen1" RightOf "Screen0"
InputDevice "Mouse0""CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Clone" "off"
EndSection

Section "Device"
Identifier  "Card0"
Driver  "radeon"
VendorName  "ATI Technologies Inc"
BoardName   "Radeon VE"
BusID   "PCI:1:0:0"
Option "CloneMode" "1280x1024"
Option "CloneVRefresh" "75-75"
Screen  0
EndSection

Section "Device"
Identifier  "Card1"
Driver  "radeon"
VendorName  "ATI Technologies Inc"
BoardName   "Radeon VE"
BusID   "PCI:1:0:0"
Screen  1
EndSection

I also have Screen, Monitor and Modes sections for each separate
monitor.

Whatever I do I either have no display on the secondary monitor at all,
or the 
server dies with a SEGV, or I have a cloned display instead of a dual
head 
(separate X desktops). I tried the Xinerama stuff also but this has no
effect 
whatshowever which seems logical since i do not HAVE two heads to
Xinerama 
on ;-)
I tried this on the SUSE 9.0 stock XFree which seems to be a patched 
prerelease of XFree 4.3 (it has the warnings and reports a 4.2.99
version 
number). But I also compiled XFree 4.4-with-patches from source and it 
doesn't work either.

Can ANYONE help me? Please? I'm currently looking at the radeon_driver
source 
but before I know what's going on there will take a while >-(

Thans,

Frits Jalvingh




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


Re: [XFree86] radeon driver only ever uses clone mode instead of dual head

2004-04-14 Thread Luca Capello
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

on 04/14/04 14:21, Frits Jalvingh wrote:
> I have a portable (Sony GRX316MP) which contains a Radeon 7500 mobility which
> has dual-head capability. I know this chip CAN handle non-cloning dual head
> because the X server from Xig does it (and Windows of course). But the Xig
> server has some problems and it seems to only support two heads in Xinerama
> mode; I want to have separate X displays on both heads.
I've an ASUS M6842NWH with an ATI Radeon 9600 Mobility NP M10 and dual-head work
perfectly with the XF86Config-4 attached.

> To get the secondary screen to work at all I had to specify
> Option "CloneMode" "1280x1024"
> in the device section for the primary head, else it used the mode for the
> primary head regardless of the information in the Screen section and the
> information returned by DDC from the 2nd screen.

> I also have Screen, Monitor and Modes sections for each separate monitor.
AFAIK this is not correct, in this way you configure your XFree86 to use
Xinerama. You should use the 'radeon' driver from the DRI package.

Please visit these links:
http://dri.sourceforge.net/cgi-bin/moin.cgi/ATIRadeon
http://dri.sourceforge.net/cgi-bin/moin.cgi/MergedFB
http://www.botchco.com/alex/radeon/mergedfb/cvs/DRI/final/radeon.4.html

Thx, bye,
Gismo / Luca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFAfTqMVAp7Xm10JmkRAqISAJ9P0Nd5g1Y4qCDNtZYb6BIgc13F4QCfS2Ld
pPojHnrrmMA4rtX/YoS5hUs=
=ywU7
-END PGP SIGNATURE-
# File: XF86Config-4
# File generated by fglrxconfig (C) ATI Research, a substitute for xf86config.
# File modified by Gismo / Luca Capello <[EMAIL PROTECTED]> http://luca.pca.it



# **
# DRI Section
# **
Section "DRI"

# Access to OpenGL ICD is allowed for all users:
Mode 0666

# Access to OpenGL ICD is restricted to a specific user group:
#   Group 100   # users
#   Mode 0660

EndSection



# **
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **
Section "Module"

# This loads the DBE extension module.
Load"dbe"   # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection  "extmod"
Option  "omit xfree86-dga"  # don't initialise the DGA extension
EndSubSection
#   Load"extmod"

# This loads the Type1 and FreeType font modules
Load"type1"
Load"freetype"

# This loads the GLX module
Load"glx"   # libglx.a
Load"dri"   # libdri.a

# Other modules
#   Load"GLcore"
Load"bitmap"
Load"ddc"
Load"xtt"
Load"int10"
Load"record"
Load"speedo"
Load"vbe"
Load"synaptics"
Load"v4l"

EndSection



# **
# Files section.  This allows default font and rgb paths to be set
# **
Section "Files"

# The location of the RGB database.  Note, this is the name of the
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.
RgbPath "/usr/X11R6/lib/X11/rgb"

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
# 
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
# 
#   FontPath"/usr/X11R6/lib/X11/fonts/local/"
FontPath"/usr/X11R6/lib/X11/fonts/misc/"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/X11R6/lib/X11/fonts/Type1/"
FontPath"/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath"/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath"/usr/X11R6/lib/X11/fonts/100dpi/"

FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/TTF"
FontPath"/usr/local/share/fonts/windows"

# Local font servers
#   FontPath"unix/:7110"# xfs-xtt
#   FontPath"unix/:7100"# xfs

# The module search path.  The default path is shown here.
#   ModulePath  "/usr/X11R6/lib

[XFree86] A Problem ;

2004-04-14 Thread Ramin Setiheshi




  

Hi ,
i trayed to install mandrake 9.0 on my 
pc.
but i can't start the graphic mode (startx) 
.  please hep me.
my motherboard is "MSI" and graphic card 
"Geforce4 MX-440 with AGP8x (NVIDIA Geforce MX 440) ".
thanks.
here is logfile:
---
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.9.log", Time: Wed Apr 14 21:40:36 2004
(++) Using config file: 
"/etc/X11/XF86Config.test"
(==) ServerLayout 
"layout1"
(**) |-->Screen 
"screen1" (0)
(**) | |-->Monitor 
"monitor1"
(**) | |-->Device 
"device1"
(EE) No core pointer device 
specified
(EE) Unable to determine 
the screen layout
(EE) Error from 
xf86HandleConfigFile()

Fatal server error:
no screens found

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

 


[XFree86] A Problem ;

2004-04-14 Thread Ramin Setiheshi



 

Hi ,
i trayed to install mandrake 9.0 on my 
pc.
but i can't start the graphic mode (startx) 
.  please hep me.
my motherboard is "MSI" and graphic card 
"Geforce4 MX-440 with AGP8x (NVIDIA Geforce MX 440) ".
thanks.
here is logfile:
---
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.9.log", Time: Wed Apr 14 21:40:36 2004
(++) Using config file: 
"/etc/X11/XF86Config.test"
(==) ServerLayout 
"layout1"
(**) |-->Screen 
"screen1" (0)
(**) | |-->Monitor 
"monitor1"
(**) | |-->Device 
"device1"
(EE) No core pointer device 
specified
(EE) Unable to determine 
the screen layout
(EE) Error from 
xf86HandleConfigFile()

Fatal server error:
no screens found

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

 


[XFree86] A Problem ;

2004-04-14 Thread Ramin Setiheshi




Hi ,
i trayed to install mandrake 9.0 on my 
pc.
but i can't start the graphic mode (startx) 
.  please hep me.
my motherboard is "MSI" and graphic card 
"Geforce4 MX-440 with AGP8x (NVIDIA Geforce MX 440) ".
thanks.
here is logfile:
---
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.9.log", Time: Wed Apr 14 21:40:36 2004
(++) Using config file: 
"/etc/X11/XF86Config.test"
(==) ServerLayout 
"layout1"
(**) |-->Screen 
"screen1" (0)
(**) | |-->Monitor 
"monitor1"
(**) | |-->Device 
"device1"
(EE) No core pointer device 
specified
(EE) Unable to determine 
the screen layout
(EE) Error from 
xf86HandleConfigFile()

Fatal server error:
no screens found

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

 


[XFree86] Executable Attachment in message: Mail System (pparadise@programmers.com)

2004-04-14 Thread mailsecurity
Your message triggered rule [Executable Attachments] at 8:58:50 AM 4/14/2004

Due to security reasons we do not allow executable 
attachments to enter our Email system. If this is a 
legitimate attachment please zip it and resend. If 
the executable attachment was already in a zipped 
file please disregard.

Sender: [EMAIL PROTECTED]
Recipient(s): [EMAIL PROTECTED]
Subject: Mail System ([EMAIL PROTECTED])
Message Begins With: 
Mail Delivery Error - This mail contains unicode characters

- failed message -
xN87%m__U#7dltvDY#>H_CG7R#7T.S'cdts3M5cB'_i
gR7evFX2eN38$OtlJb1r&uvKKP>prNTv4QxZ%IBXu~T,)C
ufw$POVhttp://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] XFree86 4.3.0.2 server not exiting

2004-04-14 Thread Ulrich Teichert
Hi,

I was writing:

> I think I'll go for 4.3.0.2, together with the fix from Marc. I only have
> to understand why the X server terminates correctly when started from the
> command line and stopped with CTRL-C, but not when getting *one* SIGTERM
> or SIGINT. After a second signal is sent, it stops, though. Strange.

And this is BS. The server quits on the first signal, as it should.
My fault,

CU,
Uli
-- 
Ulrich Teichert, IDF EUROPE, Obenhauptstrasse 11, 22335 Hamburg, Germany
fon: +49 40 59 39 39 0, fax: +49 40 59 39 39 11
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] radeon driver only ever uses clone mode instead of dual head

2004-04-14 Thread Frits Jalvingh
Hello,

I have a portable (Sony GRX316MP) which contains a Radeon 7500 mobility which 
has dual-head capability. I know this chip CAN handle non-cloning dual head 
because the X server from Xig does it (and Windows of course). But the Xig 
server has some problems and it seems to only support two heads in Xinerama 
mode; I want to have separate X displays on both heads.

But whatever configuration I try in XFree86 I at the most get a cloned screen, 
i.e. the secondary monitor shows (part of) the primary screen.
The primary screen is the laptop's LCD at [EMAIL PROTECTED], the secondary 
monitor is an LCD [EMAIL PROTECTED]

To get the secondary screen to work at all I had to specify
Option "CloneMode" "1280x1024"
in the device section for the primary head, else it used the mode for the 
primary head regardless of the information in the Screen section and the 
information returned by DDC from the 2nd screen.

Parts of my XF86Config:
  
Section "ServerLayout"
Identifier  "XFree86 Dual-Head"
Screen  0   "Screen0" 0 0
Screen  1   "Screen1" RightOf "Screen0"
InputDevice "Mouse0""CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Clone" "off"
EndSection

Section "Device"
Identifier  "Card0"
Driver  "radeon"
VendorName  "ATI Technologies Inc"
BoardName   "Radeon VE"
BusID   "PCI:1:0:0"
Option "CloneMode" "1280x1024"
Option "CloneVRefresh" "75-75"
Screen  0
EndSection

Section "Device"
Identifier  "Card1"
Driver  "radeon"
VendorName  "ATI Technologies Inc"
BoardName   "Radeon VE"
BusID   "PCI:1:0:0"
Screen  1
EndSection

I also have Screen, Monitor and Modes sections for each separate monitor.

Whatever I do I either have no display on the secondary monitor at all, or the 
server dies with a SEGV, or I have a cloned display instead of a dual head 
(separate X desktops). I tried the Xinerama stuff also but this has no effect 
whatshowever which seems logical since i do not HAVE two heads to Xinerama 
on ;-)
I tried this on the SUSE 9.0 stock XFree which seems to be a patched 
prerelease of XFree 4.3 (it has the warnings and reports a 4.2.99 version 
number). But I also compiled XFree 4.4-with-patches from source and it 
doesn't work either.

Can ANYONE help me? Please? I'm currently looking at the radeon_driver source 
but before I know what's going on there will take a while >-(

Thans,

Frits Jalvingh

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


Rep:RE: [XFree86] How to reduce the size of the display in the X mode?

2004-04-14 Thread Bobo Baba
This worked on another workstation but not on mine. It doesn't change
anything.

-Message d'origine-
De: "SingleServing" <[EMAIL PROTECTED]>
A: <[EMAIL PROTECTED]>
Date: 14/04/04
Objet: RE: [XFree86] How to reduce the size of the display in the X
mode?

Ctrl+Alt++
Ctrl+Alt+-

Changes your screen resolution.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf
Of Bobo Baba
Sent: Tuesday, April 13, 2004 1:48 PM
To: [EMAIL PROTECTED]
Subject: [XFree86] How to reduce the size of the display in the X mode?

I've just installed Suse 9.0. I configured XF86Config for Radeon 7000.
The problem is that th display is mich too big on Graphic mode. I only
see part of the desktop. When I try to reconfigure it with Sax2 by
reeducing the size, and click on 'test' I get the error messages "unable
to determine the screen layout" and "error from xf86HandleConfigFile()".
Resolution and virtual resolution match and I gave all the correct
informations regarding the monitore.

Thanks for your help.

Xpucto
_
Un mot doux à envoyer? Une sortie ciné à organiser? Faites le en temps
réel avec MSN Messenger! C'est gratuit!   http://ifrance.com/_reloc/m


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


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
_
Un mot doux à envoyer? Une sortie ciné à organiser? Faites le en temps
réel avec MSN Messenger! C'est gratuit!   http://ifrance.com/_reloc/m
_
Un mot doux à envoyer? Une sortie ciné à organiser? Faites le en temps
réel avec MSN Messenger! C'est gratuit!   http://ifrance.com/_reloc/m


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


Re: [XFree86] missing x - please help me

2004-04-14 Thread Ulrich Teichert
Hi,
[del]
> Symbol VBEInit from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved!
> Symbol vbeDoEDID from module /usr/X11R6/lib/modules/drivers/i810_drv.o is unresolved!

Either this or

[del]
> Could not init font path element unix/:7100, removing from list!

that is your problem. As you were a bit sparse in your infos, guessing
is allowed, IMHO.

HTH,
Uli
-- 
Ulrich Teichert, IDF EUROPE, Obenhauptstrasse 11, 22335 Hamburg, Germany
fon: +49 40 59 39 39 0, fax: +49 40 59 39 39 11
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Help me please

2004-04-14 Thread Ulrich Teichert
Hi,

> I made some changes in control center for my screen (i can't remember exaclty where 
> - video card/dysplay i think -i am a linux newbie ) and when i start a new session i 
> get an error message. thats why i send u two files : /etc/x11/xf86config - because 
> somewhere in the error message it says "using config file /etc/x11/xf86config "; and 
> another file (log file /var/log/xfree86.0.log).
> Please help me ,i need my GUI.Thanks. 

You seem to have erased your "Protocol" setting for your mouse:

[del]
> Section "InputDevice"
> Identifier  "Mouse0"
> Driver  "mouse"
> Option"Protocol" ""
> Option"Device" "/dev/mouse"
>   Option "ZAxisMapping" "4 5"
> EndSection
[del]

It's not gonna work without it. Probably PS/2 or something more
sophisticated,

HTH,
Uli
-- 
Ulrich Teichert, IDF EUROPE, Obenhauptstrasse 11, 22335 Hamburg, Germany
fon: +49 40 59 39 39 0, fax: +49 40 59 39 39 11
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Help me please

2004-04-14 Thread Pieter Hulshoff
On Wed, Apr 14, 2004 at 02:36:31AM -0700, psy cho wrote:
> I made some changes in control center for my screen (i can't remember exaclty where 
> - video card/dysplay i think -i am a linux newbie ) and when i start a new session i 
> get an error message. thats why i send u two files : /etc/x11/xf86config - because 
> somewhere in the error message it says "using config file /etc/x11/xf86config "; and 
> another file (log file /var/log/xfree86.0.log).

This is the line that causes your problem:
Option "Protocol" ""

As you have not defined a mouse protocol anymore, the mouse does not get initialised,
and X concludes there is no pointer device.

Regards,

Pieter Hulshoff

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


Re: [XFree86] XFree86 4.3.0.2 server not exiting

2004-04-14 Thread Ulrich Teichert
Hi,

> You may want to try compiling XFree86 4.4.0 from source as there have
> been a couple of fixes to the nsc driver.

Hasn't changed the behaviour. It still does not terminate and I have to
kill it via SIGKILL, as vanilla 4.3.0.2.

I think I'll go for 4.3.0.2, together with the fix from Marc. I only have
to understand why the X server terminates correctly when started from the
command line and stopped with CTRL-C, but not when getting *one* SIGTERM
or SIGINT. After a second signal is sent, it stops, though. Strange.

Anyway, thanks for your time and efforts,
CU,
Uli
-- 
Ulrich Teichert, IDF EUROPE, Obenhauptstrasse 11, 22335 Hamburg, Germany
fon: +49 40 59 39 39 0, fax: +49 40 59 39 39 11
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] missing x - please help me

2004-04-14 Thread SU, Min Hui


XFree86.0.log
Description: Binary data


[XFree86] Help me please

2004-04-14 Thread psy cho

 
hello.
I made some changes in control center for my screen (i can't remember exaclty where - video card/dysplay i think -i am a linux newbie ) and when i start a new session i get an error message. thats why i send u two files : /etc/x11/xf86config - because somewhere in the error message it says "using config file /etc/x11/xf86config "; and another file (log file /var/log/xfree86.0.log).
Please help me ,i need my GUI.Thanks. 
		Do you Yahoo!?
Yahoo! Tax Center - File online by April 15thSection "ServerLayout"
Identifier "XFree86 Configured"
Screen  0  "Screen0" 0 0
InputDevice"Mouse0" "CorePointer"
InputDevice"Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath  "/usr/X11R6/lib/X11/rgb"
ModulePath   "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
Load  "record"
Load  "extmod"
Load  "dbe"
Load  "dri"
Load  "glx"
Load  "xtrap"
Load  "type1"
Load  "freetype"
Load  "speedo"
EndSection

Section "InputDevice"
Identifier  "Keyboard0"
Driver  "keyboard"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier  "Mouse0"
Driver  "mouse"
Option  "Protocol" ""
Option  "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
#DisplaySize  500   250 # mm
Identifier   "Monitor0"
VendorName   "Fujitsu"
ModelName"ErgoPro 151v"
Option  "DPMS"
HorizSync 30-64
VertRefresh 50-100
ModeLine   "1024x768/76Hz" 85 1024 1032 1152 1360 768 784 787 823 
EndSection

Section "Device"
### Available Driver options are:-
### Values: : integer, : float, : "True"/"False",
### : "String", : " Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel"   # []
#Option "SWcursor"  # []
#Option "Dac6Bit"   # []
#Option "Dac8Bit"   # []
#Option "ForcePCIMode"  # []
#Option "CPPIOMode" # []
#Option "CPusecTimeout" # 
#Option "AGPMode"   # 
#Option "AGPFastWrite"  # []
#Option "AGPSize"   # 
#Option "RingSize"  # 
#Option "BufferSize"# 
#Option "EnableDepthMoves"  # []
#Option "EnablePageFlip"# []
#Option "NoBackBuffer"  # []
#Option "PanelOff"  # []
#Option "DDCMode"   # []
#Option "CloneDisplay"  # 
#Option "CloneMode" # []
#Option "CloneHSync"# []
#Option "CloneVRefresh" # []
#Option "UseFBDev"  # []
#Option "VideoKey"  # 
Identifier  "Card0"
Driver  "vga"
VendorName  "Generic"
BoardName   "vga"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor"Monitor0"
DefaultDepth 8
SubSection "Display"
Depth 1
Virtual 0 0
EndSubSection
SubSection "Display"
Depth 4
Virtual 0 0
EndSubSection
SubSection "Display"
Depth 8
Virtual 0 0
EndSubSection
SubSection "Display"
Depth 15
Virtual 0 0
EndSubSection
SubSection "Display"
Depth 16
Virtual 0 0
EndSubSection
SubSection "Display"
Depth 24
Virtual 0 0
EndSubSection
EndSection

 
Section "ServerFlags"
 
EndSection 


xfree86.0
Description: xfree86.0


Re: [XFree86] XFree86 4.3.0.2 server not exiting

2004-04-14 Thread Ulrich Teichert
Hi,

first, sorry for the delay. I had a short vacation over easter.
[del]
> > (gdb) info all-registers
> > eax0xff 255
> > ecx0x3d5981
> > edx0x3d5981
> > ebx0x3d5981
> > [snip]
> 
> > The loop starts at 0x401a9759 and goes to 0x401a975e. If I jump to
> > 0x401a9760 in the debugger, the server terminates. So, it reads 0x3d5,
> > whatever that is (probably I/O stuff) and the test never succeeds.
> 
> Looks like it's looping in function gfx_vga_mode_switch() near the tail end of
> xc/programs/Xserver/hw/xfree86/drivers/ncs/gfx/vga_gu1.c, part of which reads
> 
>/* WAIT UNTIL SOFTVGA HAS VALIDATED MODE IF ENDING MODE SWITCH */
>/* This is for VSA1 only, where SoftVGA waits until the next */
>/* vertical blank to validate the hardware state. */
> 
>if ((!active) && (!(gu1_detect_vsa2( {
>   OUTB(crtcindex, 0x33);
>   while (INB(crtcdata) & 0x80) ;
>}
> 
> Change this to ...
> 
>/* WAIT UNTIL SOFTVGA HAS VALIDATED MODE IF ENDING MODE SWITCH */
>/* This is for VSA1 only, where SoftVGA waits until the next */
>/* vertical blank to validate the hardware state. */
> 
>if ((!active) && (!(gu1_detect_vsa2( {
>   int cnt = 256;
> 
>   OUTB(crtcindex, 0x33);
>   while (--cnt && (INB(crtcdata) & 0x80));
>}
> 
> ... and see what happens.

Great! Now, it terminates correctly,

Thanks a million,
Uli
-- 
Ulrich Teichert, IDF EUROPE, Obenhauptstrasse 11, 22335 Hamburg, Germany
fon: +49 40 59 39 39 0, fax: +49 40 59 39 39 11
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] We will not receive your email

2004-04-14 Thread csmail
Greetings,

You have received this message as a result of replying via email
to a RealNetworks Order Receipt or Customer Service message.  

We will -not- receive this email, and have no means of responding.

If you received this mail as a result of replying to your Order
Receipt from our e-commerce system at www.real.com or 
www.realstore.com, you will need to submit your service request
at the following URL:

 http://service.real.com/faq/contcs.html

If you received this message as a result of replying to a customer
service response, there are instructions on how to reply to
the customer service agent that responded to your inquiry. This reply 
method is handled with a web form, and you may find the URL in the
Customer Service response message.  

Thanks again for seeking assistance, and we hope that your problem is
resolved shortly.

Best regards,

Customer Service 
RealNetworks, Inc.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86