[XFree86] Odd behavior in Keyboard switching and CTRL modifier

2003-06-11 Thread Somsak Sriprayoonsakul
Sorry if this is a re-post of the problem.

I am using RedHat 9 + XFree4.3.0-2 + KDE 3.1-13 shipped with RH9.

After upgrading my system (RedHat 8.0) to RedHat9. Everythings work fine
without problem except that KDE misinterpret the symbols of my thai keyboard
when pressing CTRL key. For example, if I press "Ctrl-c" in thai layout
mode. It interprete the key as "Ctrl-Thai_saraae". The problem is that I can
not use any short cut key (Ctrl, Alt) when the layout is thai because it
interprete all the key to thai key. At first, I taught that this problem
comes from KDE or kxkb module. But it seems that the problem comes directly
from xkb itself. The problem still occur in either GNOME, Blackbox,
Windowmaker when I set the keyboard map to thai using "setxkbmap -rules
xfree86 -model pc105 -layout "th"". However, if I set the keyboard map for
two layout, "setxkbmap -rules xfree86 -model pc105 -layout "us,th" -option
"grp:alt_shift_toggle", the problem goes away (Ctrl-c is Ctrl-c now in both
us and th layout). Swapping us,th to th,us and the problem occurs again. It
seems that this problem also occur in other layout (I tested the tml,us and
it interprete Ctrl-c as Ctrl-ua80 something). Is this the normal behavior of
XFree4.3 or is this the bug? If this is normal, how could I config the thai
layout to use latin charactor instead of thai charactor when pressing CTRL
or ALT?


Somsak Sriprayoonsakul

High Performance Computing and Networking Center
Kasetsart University
[EMAIL PROTECTED]

---

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


[XFree86] Xfree86, ithoYpTXnylGXlZhcTkxrzLoFjBXvJkFerUcICaYblEYyEgBxr

2003-06-11 Thread buk
tKbKOzTFGiUxRtokMWVYjTfEitZYPnqyatjOTevzmoWgxlqktm

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


Re: [XFree86] Not able to Start Any GUI (XServer/CDE)

2003-06-11 Thread Bharathi S
On 11 Jun 2003, Vijay  Kumar wrote:

> (EE) Unable to locate/open config file

/etc/X11/XF86Config-4 file is NOT found. Bcoz X is not yet configured
in your system. So Configure it, by using redhat-config-xfree86
command (root permission is needed).

Bye :)
-- 
Bharathi S, IndLinuX Team,   (__)
DON Lab,TeNeT Group, oo )
IIT-Madras, Chennai-INDIA.   (_/\ 

Learn By Listening. Understand By Reflecting.

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


[XFree86] XFree86 and Radeon IGP-340M

2003-06-11 Thread Daniel Alves
Hi.

I saw back in March that an experimental 2D XFree86 4.3.0 patch for the
Radeon IGP sets was around, so I was wondering if those drivers have
progressed in any way, and if even there is also 3D support.

Thanks for the time

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


Re: [XFree86] specific refresh rate

2003-06-11 Thread Daniel Bush
Billy Biggs wrote:

Daniel Bush ([EMAIL PROTECTED]):

 

I am using:
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
1) How do I know exactly what refresh rate X is running @?
   

 It's a pretty easy.  The bottom of this email contains a shell script.
The formula is pixel clock in hz divided by the number of pixels, so
htotal * vtotal.  Since pixel clock is in MHz in a modeline, multiply by
10.
 

2) How do I specifically set the refresh rate I want?
   

 In X 4.3 the 'randr' program can help you easily switch between
defined modelines at various refresh rates, or you can create your own
modelines that have the refresh rate you want.
 

I have examined my /var/log/XFree86.0.log and came across the following 
at the very end:
GetModeLine - scrn: 0 clock: 65000
GetModeLine - hdsp: 1024 hbeg: 1040 hend: 1176 httl: 1344
 vdsp: 768 vbeg: 770 vend: 776 vttl: 806 flags: -21474836
I assume X is using 65Hz
   

 Wrong.  The dot clock is 65MHz.  Your refresh rate is
(65000*1000)/(1344*806) or 60Hz.
 

I have also tried to configure the following Modeline under the Monitor 
section but, it seams to have no effect:
Modeline "1024x768" 97.40  1024 1072 1192 1416   768  768  771  809
   

 This would be the same modeline with a high pixel clock and running at
89Hz.  You could likely come up with an 89Hz refresh rate modeline that
was better aligned for your hardware, but you're going about it the
wrong way.  X will choose the highest refresh rate mode available to it,
and it has alot of modes built in.  You should likely make sure the
VertRefresh option (or your HorizSync option) in your Monitor section is
set to not be too restrictive, it will likely fix your problem.
 -Billy

#!/bin/sh
#
# Print the refresh rate, assuming that the bottom of the
# output of xdpyinfo -ext XFree86-VidModeExtension is the
# current modeline, and that it's in the format I expect,
# which may not be true.
MODELINE=`xdpyinfo -ext XFree86-VidModeExtension | tail -1`
DOTCLOCK=`echo $MODELINE | awk '{ print $1 }'`
HTOTAL=`echo $MODELINE | awk '{ print $5 }'`
VTOTAL=`echo $MODELINE | awk '{ print $9 }'`
REFRESH=`echo "scale=2;($DOTCLOCK * 100) / ($HTOTAL * $VTOTAL)" | bc`
echo "Current refresh rate is $REFRESH hz"

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

Excellent...  As I suspected, my refresh rate is 60.00 hz.  The script 
worked great.

my XF86Config is attached.  

Any suggestions as to how I  can get a Modeline to work.  I have 
atempted to insert on in the Monitor section however it looks like X is 
igroring it.

Thanks for your help,
Dan
No
# XFree86 4 configuration created by redhat-config-xfree86

Section "ServerLayout"
Identifier "Default Layout"
Screen  0  "Screen0" 0 0
InputDevice"Mouse0" "CorePointer"
InputDevice"Keyboard0" "CoreKeyboard"
InputDevice"DevInputMice" "AlwaysCore"
EndSection

Section "Files"

# RgbPath is 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.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
RgbPath  "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection

Section "Module"
Load  "dbe"
Load  "extmod"
Load  "fbdevhw"
Load  "glx"
Load  "record"
Load  "freetype"
Load  "type1"
EndSection

Section "InputDevice"

# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#   Option  "Xleds" "1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
#   Option  "XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#   Option  "XkbModel"  "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#   Option  "XkbModel"  "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#   Option  "XkbLayout" "de"
# or:
#   Option  "XkbLayout" "de"
#   Option  "XkbVariant""nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#   Option  "XkbOptions""ctrl:swapcaps"
# Or if you just want both to be control, use:
#   Option  "XkbOptions""ctrl:nocaps"
#
Identifier  "Keyboard0"
Driver  "keyboard"
Option  "XkbRules" "xfree86"
Option  "XkbModel" "pc105"
Option  "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier  "Mouse0"
Driver  "mouse"
Option  "Protocol" "IMPS/2"
Option  "Devic

Re: [XFree86] specific refresh rate

2003-06-11 Thread Billy Biggs
Daniel Bush ([EMAIL PROTECTED]):

> I am using:
> XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
> 
> 1) How do I know exactly what refresh rate X is running @?

  It's a pretty easy.  The bottom of this email contains a shell script.
The formula is pixel clock in hz divided by the number of pixels, so
htotal * vtotal.  Since pixel clock is in MHz in a modeline, multiply by
10.

> 2) How do I specifically set the refresh rate I want?

  In X 4.3 the 'randr' program can help you easily switch between
defined modelines at various refresh rates, or you can create your own
modelines that have the refresh rate you want.

> I have examined my /var/log/XFree86.0.log and came across the following 
> at the very end:
> GetModeLine - scrn: 0 clock: 65000
> GetModeLine - hdsp: 1024 hbeg: 1040 hend: 1176 httl: 1344
>   vdsp: 768 vbeg: 770 vend: 776 vttl: 806 flags: -21474836
> I assume X is using 65Hz

  Wrong.  The dot clock is 65MHz.  Your refresh rate is
(65000*1000)/(1344*806) or 60Hz.

> I have also tried to configure the following Modeline under the Monitor 
> section but, it seams to have no effect:
> Modeline "1024x768" 97.40  1024 1072 1192 1416   768  768  771  809

  This would be the same modeline with a high pixel clock and running at
89Hz.  You could likely come up with an 89Hz refresh rate modeline that
was better aligned for your hardware, but you're going about it the
wrong way.  X will choose the highest refresh rate mode available to it,
and it has alot of modes built in.  You should likely make sure the
VertRefresh option (or your HorizSync option) in your Monitor section is
set to not be too restrictive, it will likely fix your problem.

  -Billy

#!/bin/sh
#
# Print the refresh rate, assuming that the bottom of the
# output of xdpyinfo -ext XFree86-VidModeExtension is the
# current modeline, and that it's in the format I expect,
# which may not be true.

MODELINE=`xdpyinfo -ext XFree86-VidModeExtension | tail -1`
DOTCLOCK=`echo $MODELINE | awk '{ print $1 }'`
HTOTAL=`echo $MODELINE | awk '{ print $5 }'`
VTOTAL=`echo $MODELINE | awk '{ print $9 }'`
REFRESH=`echo "scale=2;($DOTCLOCK * 100) / ($HTOTAL * $VTOTAL)" | bc`

echo "Current refresh rate is $REFRESH hz"

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


Re: [XFree86] X 4.3.0 fatal error [crash]

2003-06-11 Thread Mark Vojkovich
  Are you sure it's not crashing when an OpenGL screensaver comes
up?

Mark.

On Wed, 11 Jun 2003, Mukesh Rathor wrote:

> 
> Hi, 
>In the hopes of trying to get my dual monitor work properly, I upgraded
>to 4.3.0 and the darn thing backfired. The X server crashes everytime
>there's no activity, it's not crashed while I'm working. I alwasy come
>back to find it crashed. Any help is appreciated. 
> 
> Thanks,
> Mukesh 
> 
> 
> 
> 
> 
> 

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


[XFree86] specific refresh rate

2003-06-11 Thread Daniel Bush
I am using:
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
1) How do I know exactly what refresh rate X is running @?
2) How do I specifically set the refresh rate I want?
I have examined my /var/log/XFree86.0.log and came across the following 
at the very end:
GetModeLine - scrn: 0 clock: 65000
GetModeLine - hdsp: 1024 hbeg: 1040 hend: 1176 httl: 1344
  vdsp: 768 vbeg: 770 vend: 776 vttl: 806 flags: -21474836
I assume X is using 65Hz

I have also tried to configure the following Modeline under the Monitor 
section but, it seams to have no effect:
Modeline "1024x768" 97.40  1024 1072 1192 1416   768  768  771  809

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


[XFree86] X 4.3.0 fatal error [crash]

2003-06-11 Thread Mukesh Rathor

Hi, 
   In the hopes of trying to get my dual monitor work properly, I upgraded
   to 4.3.0 and the darn thing backfired. The X server crashes everytime
   there's no activity, it's not crashed while I'm working. I alwasy come
   back to find it crashed. Any help is appreciated. 

Thanks,
Mukesh 






XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20 i686 [ELF] 
Build Date: 07 March 2003
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 Jun 11 13:55:31 2003
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "Matrox PowerDesk configured."
(**) |-->Screen "Display Merged" (0)
(**) |   |-->Monitor "Display Merged"
(**) |   |-->Device "MATROX CARD 1"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc105"
(**) XKB: model: "pc105"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "unix/:7100"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 1028,010e rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 03 class 06,04,00 hdr 01
(II) PCI: 00:1e:0: chip 8086,244e card , rev 12 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,2440 card , rev 12 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,244b card 1028,010e rev 12 class 01,01,80 hdr 00
(II) PCI: 00:1f:3: chip 8086,2443 card 1028,010e rev 12 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2445 card 1028,010e rev 12 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 102b,2527 card 102b,0f84 rev 01 class 03,00,00 hdr 00
(II) PCI: 02:09:0: chip 100b,0020 card 1385,f311 rev 00 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000e (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xfd80 - 0xfe7f (0x100) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xf800 - 0xf9ff (0x200) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1  0   0xe000 - 0xe0ff (0x100) IX[B]
[1] -1  0   0xe400 - 0xe4ff (0x100) IX[B]
[2] -1  0   0xe800 - 0xe8ff (0x100) IX[B]
[3] -1  0   0xec00 - 0xecff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1  0   0xfe90 - 0xfeaf (0x20) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) Matrox Graphics, Inc. MGA G550 AGP rev 1, Mem @ 0xf800/25, 
0xfe6fc000/14, 0xfd80/23, BIOS @ 0x8000/17
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1  0   0xffe0 - 0x (0x20) MX[B](B)
[1] -1  0   0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
[2] -1  0 

Re: [XFree86] Setting the colour of "white"

2003-06-11 Thread Mark Vojkovich
On Wed, 11 Jun 2003, Chris Simmonds wrote:

> Hi,
> 
> I have a need to re-define "white" on an X server to be some other 
> colour. I feel sure that it is a simple thing to do, but I can't quite 
> see how.
> 
> Here are some details
> 
> Xfree86 4.2.1 running on Linux 2.4.18 kernel
> vesa driver
> LCD panel at 800x600x16
> 
> Although it is a full colour panel the application only displays white 
> text on a black background. I can't modify the application in any way, 
> just the configuration of the X server.
> 
> Anybody got any ideas?

   It depends how the app works.  If it's asking for "white" by
name you can change "white" globally in /usr/X11R6/lib/X11/rgb.txt

   If it asks for colors by specifying r,g,b values explicitly
then you can change white by changing the gamma correction programatically
through the xf86VidMode extension.   See the XF86VidModeSetGammaRamp
and XF86VidModeGetGammaRamp functions.  Basically, get the gamma
ramp out and change the last value in the red, green, and blue arrays
to whatever you want white to be and set the modified gamma ramp.


Mark.

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


Re: [XFree86] problem: SAVAGE(0): Failed to fetch any BIOS modes.

2003-06-11 Thread Andrew Pimlott
On Wed, Jun 11, 2003 at 04:10:19PM +0200, Egbert Eich wrote:
> you are using two different version of XFree86.

I realize that--and I started to write that I am certain that the
version I currently have was working before my crash, but now I've
just concluded that this is probably wrong.

The crash was May 21.  My logs show that I upgraded X (from Debian
"testing") on May 5.  I would have sworn that I had rebooted between
those dates, but as far as I can tell from my logs, I hadn't.  So I
guess I never actually ran the upgraded X until after the crash.

Although this was only a Debian point release (4.2.1-3 -> 4.2.1-6),
it does appear to include some Savage upgrades.  I'll find a newer
version to test soon, but I am becoming confident that will resolve
the problem.

Thank you for pointing out this possibility to me--it is so obvious,
but it never would have occurred to me on my own.  The string of
coincidences was too long, and I was convinced that my computer was
broken.  :-)

Also, thanks for the brief analysis.  I'll be sure to check this
against the next version I try.

Andrew

PS.

> However you've specified these monitor lines in your XF86Config:
> 
> (II) SAVAGE(0): LCD: Using hsync range of 25.00-1000.00 kHz
> (II) SAVAGE(0): LCD: Using vrefresh range of 25.00-1000.00 Hz

These came from Debian's X configurator, dexconf, a long time ago.
I'm not sure if dexconf still does this.

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


[XFree86] Compiling XFree with BuildLowMem

2003-06-11 Thread Miles Roper
Hi David,

Thanks for your response, been looking at the wrong mailing list, the one at
mail-archive.com doesn't seem to be updated regularly.

Do you have an idea to get me started at how to look at what modules use the
most memory?  Commands, docs etc...  My knowledge consists of top and mem.
Doesn't really give a good break down :o)

Cheers

Miles

On Tue, Jun 10, 2003 at 11:24:50AM +1200, Miles Roper wrote:
>Hi,
>
>I'm trying to compile XFree86 4.3.0.1 with
>
>#define BuildLowMem = YES
>
>as it seems to be a option for low memory machines.  I'm trying to reduce
>memory consumption of XFree for a thinclient solution.
>
>When compiling the following error occurs
>
>+ ln -s ../../../../programs/xmh/box6 .
>make[4]: *** No rule to make target `../cfb/cfb8cppl.c', needed by
>`cfb8cppl.c'.  Stop.
>make[3]: *** [includes] Error 2
>make[2]: *** [includes] Error 2
>make[1]: *** [includes] Error 2
>
>seems to be a problem with 
>
>xfree86-4.30/xc/programs/Xserver/lmfcfb'
>
>Ideas?

This is an option that was added to an X Consortium release some time
ago.  At best it's in need of being reworked, but given our move away
from cfb, it probably isn't useful anymore, at least not for the XFree86
server.

Aside from building smaller versions of mfb and cfb (which XFree86 only
rarely uses), it also disables scalable font backends.  You can achieve
the same thing for the XFree86 server by simply not loading those font
modules.

Minimising the footprint of the XFree86 server for certain classes of
applications would be an interesting project.  Progress in that direction
could be made by carefully modularising some of the built-in code (and
drivers?).  For your specific application, a good start would be to do
some analysis and find out where most of the memory is being eaten up.
It might not be what you expect.

David
-- 
David Dawes
Founder/committer/developer The XFree86 Project
www.XFree86.org/~dawes
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Sol/Sparc: XLUT MapSbusMem failure

2003-06-11 Thread Mike Russo
Unfortunately this patch produces the same effect. (After patching, I
removed Sbus.o and re-ran make Everything.) xf86MapSbuMem still fails to
map the XLUT region of memory. But thank you boatloads for trying. if
you would like to me to try anything else, let me know (it's not
important and I will be trying to next release).

thanks again,
mike

On Tue, 2003-06-10 at 16:50, Marc Aurele La France wrote:
> On 3 Jun 2003, Mike Russo wrote:
> 
> > This is a question for anyone who knows anything about the SPARC port
> > :-) I compiled and configured v4.3.0 under Solaris 8/gcc 3.2.2 for a
> > SS-20 with an SX/CG14 fb, but kept receiving AddScreen/ScreenInit failed
> > for driver 0.
> > This inspired me to put some debugging messages in
> > /usr/src/xc/programs/Xserver/hw/xfree86/drivers/suncg14/cg14_driver.c
> > before all the places where it can "return FALSE".
> > Consequently, I found that it dies when it is trying
> > to map the XLUT region of memory:
> 
> > pCg14->xlut = xf86MapSbusMem (pCg14->psdp, CG14_XLUT_VOFF, 4096);
> 
> > then I check all the pointers and write a message using xf86DrvMsg():
> > if (!pCg14->fb) xf86DrvMsg(pScrn->scrnIndex,X_WARNING,"pCg14->fb null");
> > if (!pCg14->x32) xf86DrvMsg(pScrn->scrnIndex,X_WARNING,"pCg14->x32
> > null");
> > if (!pCg14->xlut) xf86DrvMsg(pScrn->scrnIndex,X_WARNING,"pCg14->xlut
> > null");
> 
> > In my output logfile, I see the message "xlut null" before the
> > inevitable failure. I have tried to get in contact with Dave Miller or
> > Jakub at RedHat, but they have not responded. Just throwing it out there
> > in case someone knows, because Sun's X server just blows. :-(
> 
> This looks like a page size issue.  Please try the attached (or update
> from CVS).
> 
> 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.
-- 
Mike Russo <[EMAIL PROTECTED]>
ReadQ Systems, Inc.

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


[XFree86] Setting the colour of "white"

2003-06-11 Thread Chris Simmonds
Hi,

I have a need to re-define "white" on an X server to be some other 
colour. I feel sure that it is a simple thing to do, but I can't quite 
see how.

Here are some details

Xfree86 4.2.1 running on Linux 2.4.18 kernel
vesa driver
LCD panel at 800x600x16
Although it is a full colour panel the application only displays white 
text on a black background. I can't modify the application in any way, 
just the configuration of the X server.

Anybody got any ideas?

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


[XFree86] Blank screen when switching of monitor

2003-06-11 Thread Stephane Corbe
I have a linux box (Redhat 9.0) with a XFree86 4.3.0-2 on a ATI Radeon 7000 and 2 
monitor (LCD+CRT).
I configured X for dual head, all seems to be OK :
  The desktop icon on the CRT and the KDE toolbar on the LCD
it's even possible to share a window between the two monitors. But ...
... when the mouse quit the primary display it become blank immediately.
Trying to come back on it with the mouse don't wake up it. What's wrong ???

  Stephane

# XFree86 4 configuration created by pyxf86config

Section "ServerLayout"
Identifier "dual"
Screen  0  "dual1" 0 0
Screen  1  "dual2" LeftOf "dual1"
Option "Xinerama" "true"
Option "Clone" "false"
InputDevice"Souris" "CorePointer"
InputDevice"Clavier" "CoreKeyboard"
InputDevice"DevInputMice" "AlwaysCore"
EndSection

Section "Files"
# RgbPath is 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.

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.

RgbPath  "/usr/X11R6/lib/X11/rgb"
FontPath "unix/:7100"
EndSection

Section "Module"
Load  "dbe"
Load  "extmod"
Load  "fbdevhw"
Load  "glx"
Load  "record"
Load  "freetype"
Load  "type1"
#   Load  "dri"
EndSection

Section "InputDevice"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#   Option  "Xleds" "1 2 3"

# To disable the XKEYBOARD extension, uncomment XkbDisable.
#   Option  "XkbDisable"

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#   Option  "XkbModel"  "pc102"
# If you have a US Microsoft Natural keyboard, you can use:
#   Option  "XkbModel"  "microsoft"
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#   Option  "XkbLayout" "de"
# or:
#   Option  "XkbLayout" "de"
#   Option  "XkbVariant""nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#   Option  "XkbOptions""ctrl:swapcaps"
# Or if you just want both to be control, use:
#   Option  "XkbOptions""ctrl:nocaps"
#
Identifier  "Clavier"
Driver  "keyboard"
Option  "XkbRules" "xfree86"
Option  "XkbModel" "jp106"
Option  "XkbLayout" "jp"
EndSection

Section "InputDevice"
Identifier  "Souris"
Driver  "mouse"
Option  "Protocol" "PS/2"
Option  "Device" "/dev/psaux"
Option  "ZAxisMapping" "4 5"
Option  "Emulate3Buttons" "yes"
EndSection

Section "InputDevice"
# If the normal CorePointer mouse is not a USB mouse then
# this input device can be used in AlwaysCore mode to let you
# also use USB mice at the same time.
Identifier  "DevInputMice"
Driver  "mouse"
Option  "Protocol" "IMPS/2"
Option  "Device" "/dev/input/mice"
Option  "ZAxisMapping" "4 5"
Option  "Emulate3Buttons" "no"
EndSection

Section "Monitor"
Identifier   "Cathodic"
VendorName   "Proview"
ModelName"Proview 770"
HorizSync30.0 - 76.0
VertRefresh  50.0 - 150.0
#   Option  "dpms"
EndSection

Section "Monitor"
Identifier   "LCD"
VendorName   "NEC"
ModelName"NEC MultiSync LCD1701"
HorizSync24.0 - 80.0
VertRefresh  60.0 - 75.0
#   Option  "dpms"
EndSection

Section "Device"
Identifier  "Excalibur1"
Driver  "radeon"
VendorName  "HIS"
BoardName   "ATI Radeon 7000"
#Option  "ForcePCIMode" "On"
#Option  "CloneDisplay" "2"
Screen  0
BusID   "PCI:0:11:0"
EndSection

Section "Device"
Identifier  "Excalibur2"
Driver  "radeon"
VendorName  "HIS"
BoardName   "ATI Radeon 7000"
#Option  "DDCMode" "On"
#Option  "ForcePCIMode" "On"
#Option  "CloneDisplay" "2"
Screen  1
BusID   "PCI:0:11:0"
EndSection

Section "Screen"
Identifier "dual1"
Device "Excalibur1"
Monitor"Cathodic"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes"1024x768" "800x600" "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "dual2"
Device "Excalibur2"
Monitor"LCD"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes"1024x768" "80

[XFree86] Compiling XFree with BuildLowMem

2003-06-11 Thread Miles Roper
Hi,

I'm trying to compile XFree86 4.3.0.1 with

#define BuildLowMem = YES

as it seems to be a option for low memory machines.  I'm trying to reduce
memory consumption of XFree for a thinclient solution.

When compiling the following error occurs

+ ln -s ../../../../programs/xmh/box6 .
make[4]: *** No rule to make target `../cfb/cfb8cppl.c', needed by
`cfb8cppl.c'.  Stop.
make[3]: *** [includes] Error 2
make[2]: *** [includes] Error 2
make[1]: *** [includes] Error 2

seems to be a problem with 

xfree86-4.30/xc/programs/Xserver/lmfcfb'

Ideas?

Cheers

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


Re: [XFree86] 6/10 aspect ratio

2003-06-11 Thread Mark Vojkovich
   Your XF86Config specifies that your panel will only sync
to 75.67 KHz horizontal syncs.  I'm not sure what rounding
and to what accuraccy the server makes checks against this,
but it throws out all modes except for one due to that restriction.

The panels are multisync and probably about 30-80 KHz horizontal 
and about 50-70 Hz vertical are more accurate.  Your "[EMAIL PROTECTED]"
modeline should work if you set your HorizSync and VertRefresh
ranges to those.


Mark.

On Wed, 11 Jun 2003, Eric Humphries wrote:

> I have an Inspiron 8500 and I'm trying to get x to change aspect ratios to better 
> fit my lcd. Currently its running in 4/3 properly with no issues whatsoever. I'm 
> using the stock nv driver in x 4.3.0.
> 
> View my Config at:
> http://marley.bitstream.net/~hump/XF86Config.txt
> 
> View my log at:
> http://marley.bitstream.net/~hump/XFree86.0.log.txt
> 
> relevant dmesg output:
> pci1:  on pcib1
> pci1:  at 0.0 irq 11
> agp0:  mem 0xec00-0xefff at device 0.0 on 
> pci0
> 
> My lcd does 6/10 aspect in windows xp, however my attempts to modify the modeline to 
> something using 6/9 or 6/10 seem to be failing. Let me know if I'm overlooking 
> something.
> 
> -- 
> Eric Humphries
> 
> ___
> XFree86 mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/xfree86
> 

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


[XFree86] error reported from X -configure ProSavageDDR KM266 graphics on compaq

2003-06-11 Thread Ken MacPherson
Guys:
Sorry to bug. bug...
i've done the round trip, perhaps i'm a newbie idiot. but runing 4.2 redht.
i hate redhat but need it for oracle stuff.

I've got RedHat 2.1 AS.
xfree default is 4.1.0.29 (i think?)
Today upgrade xfree 4.2 XFree86 Version 4.2.0 (Red Hat Linux release:
4.2.0-72) / X Window System
How do I check this after install?  # X -version (or check the log file)
Trying to install on a cheap compaq purchased from circuit city for $450.00
too busy to figure this out earlier, now it's too late to return. It's an XP
system, of course they don't recommend linux on it.

Are supposed to listen to those recommendations? I kind of heard-understand
that all linux installs are "not recommended" by MS friendly hardware
vendors.

Compaq Presario s3000nx desktop pc (DC475A#ABA)
Quote: "play video games with the integrated ProSavageDDR KM266 graphics"


vga
v4l

Fatal server error:

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.

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]


# scanpci -v


pci bus 0x cardnum 0x00 function 0x00: vendor 0x1106 device 0x3116
 VIA  Device unknown
 CardVendor 0x1509 card 0x9012 (Card unknown)
  STATUS0xa230  COMMAND 0x0006
  CLASS 0x06 0x00 0x00  REVISION 0x00
  BIST  0x00  HEADER 0x00  LATENCY 0x08  CACHE 0x00
  BASE0 0xe808  addr 0xe800  MEM PREFETCHABLE
  BYTE_00x80881800  BYTE_1  0x00  BYTE_2  0x00  BYTE_3  0x00

pci bus 0x cardnum 0x01 function 0x00: vendor 0x1106 device 0xb091
 VIA  Device unknown
  STATUS0xa230  COMMAND 0x0107
  CLASS 0x06 0x04 0x00  REVISION 0x00
  HEADER0x01  LATENCY 0x00
  PRIBUS0x00  SECBUS 0x01  SUBBUS 0x01  SECLT 0x00
  IOBASE0xf000  IOLIM 0xfff  SECSTATUS 0x
  NOPREFETCH_MEMBASE 0xec00  MEMLIM 0xedff
  PREFETCH_MEMBASE   0xe000  MEMLIM 0xe7ff
  NO_FAST_B2B NO_SEC_BUS_RST NO_M_ABRT VGA_EN ISA_EN NO_SERR_EN NO_PERR_EN

pci bus 0x cardnum 0x08 function 0x00: vendor 0x104c device 0x8020
 Texas Instruments  Device unknown
 CardVendor 0x15c5 card 0x8010 (Card unknown)
  STATUS0x0210  COMMAND 0x0006
  CLASS 0x0c 0x00 0x10  REVISION 0x00
  BIST  0x00  HEADER 0x00  LATENCY 0x20  CACHE 0x08
  BASE0 0xef006000  addr 0xef006000  MEM
  BASE1 0xef00  addr 0xef00  MEM
  MAX_LAT   0x04  MIN_GNT 0x03  INT_PIN 0x01  INT_LINE 0xff

pci bus 0x cardnum 0x09 function 0x00: vendor 0x11c1 device 0x044e
 Device unknown
 CardVendor 0x1235 card 0x044e (Card unknown)
  STATUS0x0290  COMMAND 0x0007
  CLASS 0x07 0x80 0x00  REVISION 0x02
  BIST  0x00  HEADER 0x00  LATENCY 0x20  CACHE 0x00
  BASE0 0xef004000  addr 0xef004000  MEM
  BASE1 0xd001  addr 0xd000  I/O
  BASE2 0xd401  addr 0xd400  I/O
  MAX_LAT   0x0e  MIN_GNT 0xfc  INT_PIN 0x01  INT_LINE 0xff
  BYTE_00x  BYTE_1  0x00  BYTE_2  0x8072df8  BYTE_3  0x

pci bus 0x cardnum 0x0b function 0x00: vendor 0x10ec device 0x8139
 Realtek RTL8139 10/100 Ethernet
 CardVendor 0x1509 card 0x9012 (Card unknown)
  STATUS0x0290  COMMAND 0x0007
  CLASS 0x02 0x00 0x00  REVISION 0x10
  BIST  0x00  HEADER 0x00  LATENCY 0x20  CACHE 0x00
  BASE0 0xd801  addr 0xd800  I/O
  BASE1 0xef005000  addr 0xef005000  MEM
  MAX_LAT   0x40  MIN_GNT 0x20  INT_PIN 0x01  INT_LINE 0x0b

pci bus 0x cardnum 0x10 function 0x00: vendor 0x1106 device 0x3038
 VIA VT 82C586 MVP3 USB Controller
 CardVendor 0x1509 card 0x9012 (Card unknown)
  STATUS0x0210  COMMAND 0x0007
  CLASS 0x0c 0x03 0x00  REVISION 0x80
  BIST  0x00  HEADER 0x80  LATENCY 0x20  CACHE 0x08
  BASE4 0xdc01  addr 0xdc00  I/O
  MAX_LAT   0x00  MIN_GNT 0x00  INT_PIN 0x01  INT_LINE 0x0a
  BYTE_00x71240  BYTE_1  0x00  BYTE_2  0x80734e8  BYTE_3  0x

pci bus 0x cardnum 0x10 function 0x01: vendor 0x1106 device 0x3038
 VIA VT 82C586 MVP3 USB Controller
 CardVendor 0x1509 card 0x9012 (Card unknown)
  STATUS0x0210  COMMAND 0x0007
  CLASS 0x0c 0x03 0x00  REVISION 0x80
  BIST  0x00  HEADER 0x80  LATENCY 0x20  CACHE 0x08
  BASE4 0xe001  addr 0xe000  I/O
  MAX_LAT   0x00  MIN_GNT 0x00  INT_PIN 0x02  INT_LINE 0x05
  BYTE_00x71240  BYTE_1  0x00  BYTE_2  0x8073860  BYTE_3  0x

pci bus 0x cardnum 0x10 function 0x02: vendor 0x1106 device 0x3038
 VIA VT 82C586 MVP3 USB Controller
 CardVendor 0x1509 card 0x9012 (Card unknown)
  STATUS0x0210  COMMAND 0x0007
  CLASS 0x0c 0x03 0x00  REVISION 0x80
  BIST  0x00  HEADER 0x80  LATENCY 0x20  CACHE 0x08
  BASE4 0xe401  addr 0xe400  I/O
  MAX_LAT   0x00  MIN_GNT 0x00  INT_PIN 0x03  INT_LINE 0x0b
  BYTE_00x31040  BYTE_1  0x00  BYTE_2  0x8073bd8  BYTE_3  0xfff

[XFree86] 6/10 aspect ratio

2003-06-11 Thread Eric Humphries
I have an Inspiron 8500 and I'm trying to get x to change aspect ratios to better fit 
my lcd. Currently its running in 4/3 properly with no issues whatsoever. I'm using the 
stock nv driver in x 4.3.0.

View my Config at:
http://marley.bitstream.net/~hump/XF86Config.txt

View my log at:
http://marley.bitstream.net/~hump/XFree86.0.log.txt

relevant dmesg output:
pci1:  on pcib1
pci1:  at 0.0 irq 11
agp0:  mem 0xec00-0xefff at device 0.0 on pci0

My lcd does 6/10 aspect in windows xp, however my attempts to modify the modeline to 
something using 6/9 or 6/10 seem to be failing. Let me know if I'm overlooking 
something.

-- 
Eric Humphries

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


[XFree86] ati R250 9000 washed out color

2003-06-11 Thread Robert Bliss
Hi

  I have an ATI ALL-IN-WONDER Rv250 Radeon 9000 agp board on my system
which is running RH 9.0 kernel 2.4.20.

  I have upgraded X to 4.3.0-13 and have been able to get X to run but
the colors are all washed out. I cought a glimps of someone else having
this problem but when I tried to find any response I lost the thread.

  Any help would be appreciated I have attached my XF86Config file
and my /var/log/XFree86.0.log. The commented out Chipid which is
supposed to make the board look like a Radeon 8500 did not help.


   Any help would be appreciated

 Thanks Bob.



XF86Config
Description: Binary data


XFree86.0.log
Description: Binary data


Re: [XFree86] Problem with PCI Geforce4 MX 440 and garbled sound(dual-head)

2003-06-11 Thread Mark Vojkovich
   Which motherboard is this?  It's probably a common problem on
that motherboard and a google search may turn something up.

   Generally, these are caused by PCI disconnect interrupts.  When
data is sent to the card more quickly than it can deal with it, the
card pulls itself off the bus and the bridge keeps retrying the
data.  As far as the graphics engine is concerned, pretty much
all drivers make sure they're not sending data to the graphics
engine when there's not room in its fifo.  NVIDIA's drivers
use DMA so they don't even have to deal with that because the DMA
engine won't fetch the data unless there's room in the chip's fifo.
But there's still the issue of software rendering to the framebuffer.
CPU access to the framebuffer can still generate PCI disconnects.
Some motherboards/chipsets are more likely to show problems with
this than others.

Mark.


On 8 Jun 2003, Kelly Gibson wrote:

> I am running a dual-head system and I have a small problem with the
> sound related to the video cards.  When sound is played on the AGP card
> there doesn't seem to be any problem at all, but when I watch a video,
> scroll on a web page, or open gnome-terminal and type on the pci card
> (the geforce 4) it will begin to distort badly.  I have tried many
> "fixes" to this solution not limited to:  adjusting the latency, moving
> pci cards around, recompiling Xfree, and reinstalling the nvidia
> driver.  My setup seems to be otherwise just fine.  I can post my
> XF86Config if necessary, but I am hoping this is some known issue.
> 
> System specs:
> 
> Gentoo Linux
> XFree86:  4.3.0
> using Nvidia's driver
> Xinerama is on (note this doesn't seem to matter)
> Athlon XP 1800
> 512mb mem
> Geforce 2
> geforce 4 mx440
> 
> Other potentially relevant information:
> 
>  Bus  0, device  11, function  0:
> Multimedia audio controller: Ensoniq 5880 AudioPCI (rev 2).
>   IRQ 3.
>   Master Capable.  Latency=248.  Min Gnt=12.Max Lat=128.
>   I/O at 0xd800 [0xd83f].
>  Bus  0, device  15, function  0:
> VGA compatible controller: nVidia Corporation NV17 [GeForce4 MX440]
> (rev 163).
>   IRQ 5.
>   Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
>   Non-prefetchable 32 bit memory at 0x2000 [0x20ff].
>   Prefetchable 32 bit memory at 0x2800 [0x2fff].
>   Prefetchable 32 bit memory at 0x2100 [0x2107].
>   Bus  1, device   0, function  0:
> VGA compatible controller: nVidia Corporation NV11 [GeForce2 MX]
> (rev 178).
>   IRQ 11.
>   Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
>   Non-prefetchable 32 bit memory at 0xcc00 [0xccff].
>   Prefetchable 32 bit memory at 0xb000 [0xb7ff].
> 
> Thank you for your time,
> 
> -- 
> Kelly Gibson <[EMAIL PROTECTED]>
> ___
> XFree86 mailing list
> [EMAIL PROTECTED]
> http://XFree86.Org/mailman/listinfo/xfree86
> 

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


Re: [XFree86] Tracing .... ?

2003-06-11 Thread Mark Vojkovich
On Wed, 11 Jun 2003, Auge Mike wrote:

> Hi all,
> 
> I really want to know how can I trace or debug XFree86 drivers and library? 
> Is there any tools and utilities for that?
> 

   There's a gdb that's been hacked to support XFree86 loadable
modules on ftp.xfree86.org in /pub/xpert/gdb

Mark.

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


[XFree86] Not able to Start Any GUI (XServer/CDE)

2003-06-11 Thread Vijay Kumar
Dear Sir

After successfull installation of Redhat Linux 8.0
i tried to reboot. But i was not able to see any GUI
coming. Manually i tried to run X Server , but i could not
run it.
The contents of the /var/log/XFree86.0.log are as follows

-

XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window 
System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
	If the server is older than 6-12 months, or if your card is
	newer than the above date, look for a newer version before
	reporting problems.  (See http://www.XFree86.Org/)
Build Operating System: Linux 2.4.18-11smp i686 [ELF]
Build Host: daffy.perf.redhat.com

Module Loader present
OS Kernel: Linux version 2.4.18-14 
([EMAIL PROTECTED]) (gcc version 3.2 20020903 
(Red
Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50 EDT 2002
Markers: (--) probed, (**) from config file, (==) default 
setting,
 (++) from command line, (!!) notice, (II) 
informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) 
unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Tue Jun 10 23:58:58 
2003
(EE) Unable to locate/open config file
(EE) Error from xf86HandleConfigFile()

Fatal server error:
no screens found
-

Please help me in resolving  this issue.

Thanks and Regards
Vijay


___
Get email that means BUSINESS! me @ mycompany.com.
Just Rs.1499/year.
To start, click http://www.rediffmailpro.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Problem installing Xvbf

2003-06-11 Thread Wesley Ng



I tried to install Xvbf inRedhat Linux 9.0, but 
error occured when try to install the xvbf. The error msg I getting are as 
follow:
== Extracting /usr/local/src/Xvfb.tgz ==cannot 
handle file 'libc.so.6' with TLS data
 
You appear to have a termcap file: 
/etc/termcapThis should be edited manually to replace the xterm 
entrieswith those in /usr/X11R6/lib/X11/etc/xterm.termcap
 
Note: the new xterm entries are required to take 
full advantageof new features, but they may cause problems when used 
witholder versions of xterm.  A terminal type 'xterm-r6' is 
includedfor compatibility with the standard X11R6 version of 
xterm.
Can somebody tell me what went wrong?
 
Regards & thanks in 
advance


[XFree86] Bug report

2003-06-11 Thread Martin Salac
Hallo.

I have new Dell Latitude D-600 laptop. (VGA - ATI Radeon 9000 32MB)
OS - FreeBSD 4.8
X - 4.3.0 (cvsupped - downloaded at 15:52 2003-06-11
compiled from port.
The error has ocurred afrer configuring X by xf86cfg utility.
Log is in attachement.
My hardware (dmesg):

Copyright (c) 1992-2003 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 4.8-RELEASE #0: Wed Jun 11 15:00:51 CEST 2003
[EMAIL PROTECTED]:/usr/src/sys/compile/VLK
Timecounter "i8254"  frequency 1193182 Hz
CPU: Intel(R) Pentium(R) M processor 1600MHz (1594.83-MHz 686-class CPU)
  Origin = "GenuineIntel"  Id = 0x695  Stepping = 5
Features=0xa7e9f9bf
real memory  = 536543232 (523968K bytes)
config> di bt0
No such device: bt0
Invalid command or syntax.  Type `?' for help.
config> di aic0
No such device: aic0
Invalid command or syntax.  Type `?' for help.
config> di aha0
No such device: aha0
Invalid command or syntax.  Type `?' for help.
config> di adv0
No such device: adv0
Invalid command or syntax.  Type `?' for help.
config> q
avail memory = 518041600 (505900K bytes)
Preloaded elf kernel "kernel" at 0xc03dc000.
Preloaded userconfig_script "/boot/kernel.conf" at 0xc03dc09c.
netsmb_dev: loaded
Pentium Pro MTRR support enabled
md0: Malloc disk
Using $PIR table, 9 entries at 0xc00fc570
npx0:  on motherboard
npx0: INT 16 interface
pcib0:  on motherboard
pci0:  on pcib0
agp0:  mem 0xf000-0xf3ff at 
device 0.0 on pci0
pcib1:  at device 1.0 on pci0
pci1:  on pcib1
pci1:  at 0.0 irq 11
uhci0:  port 0xbf80-0xbf9f 
irq 11 at device 29.0 on pci0
usb0:  on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhci1:  port 0xbf40-0xbf5f 
irq 11 at device 29.1 on pci0
usb1:  on uhci1
usb1: USB revision 1.0
uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
uhci2:  port 0xbf20-0xbf3f 
irq 11 at device 29.2 on pci0
usb2:  on uhci2
usb2: USB revision 1.0
uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub2: 2 ports with 2 removable, self powered
uhub3: vendor 0x413c product 0x0058, class 9/0, rev 2.00/0.00, addr 2
uhub3: 4 ports with 4 removable, self powered
pci0:  at 29.7 irq 11
pcib2:  at device 30.0 on pci0
pci2:  on pcib2
bge0:  mem 
0xfaff-0xfaff irq 11 at device 0.0 on pci2
bge0: Ethernet address: 00:0b:db:05:79:a4
miibus0:  on bge0
brgphy0:  on miibus0
brgphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX, 
1000baseTX-FDX, auto
pcic0:  irq 11 at device 1.0 on pci2
pcic0: PCI Memory allocated: 0x8800
pccard0:  on pcic0
pcic1:  irq 11 at device 1.1 on pci2
pcic1: PCI Memory allocated: 0x88001000
pccard1:  on pcic1
pci2:  (vendor=0x8086, dev=0x1043) at 3.0 irq 11
isab0:  at device 31.0 on pci0
isa0:  on isab0
atapci0:  port 
0xbfa0-0xbfaf,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 irq 0 at 
device 31.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
pcm0:  port 0xbc40-0xbc7f,0xb800-0xb8ff mem 
0xf4fff400-0xf4fff4ff,0xf4fff800-0xf4fff9ff irq 11 at device 31.5 on pci0
pcm0:  (id=0x83847650)
pci0:  (vendor=0x8086, dev=0x24c6) at 31.6 irq 11
orm0:  at iomem 0xc-0xc on isa0
fdc0: ready for input in output
fdc0: cmd 3 failed at out byte 1 of 3
atkbdc0:  at port 0x60,0x64 on isa0
atkbd0:  flags 0x1 irq 1 on atkbdc0
kbd0 at atkbd0
psm0:  irq 12 on atkbdc0
psm0: model IntelliMouse Explorer, device ID 4
vga0:  at port 0x3c0-0x3df iomem 0xa-0xb on isa0
sc0:  at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A
sio1 at port 0x2f8-0x2ff irq 3 on isa0
sio1: type 16550A
ppc0:  at port 0x378-0x37f irq 7 on isa0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/7 bytes threshold
lpt0:  on ppbus0
lpt0: Interrupt-driven port
ad0: 57231MB  [116280/16/63] at ata0-master BIOSDMA
acd0: CD-RW  at ata1-master PIO4
Mounting root from ufs:/dev/ad0s3a
pccard: card inserted, slot 1
pccard: card removed, slot 1
pccard: card inserted, slot 1
pid 44574 (XFree86), uid 0: exited on signal 6 (core dumped)

Greetings

Martin

XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 4.8 i386 [ELF] 
Build Date: 11 June 2003
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.8.log", Time: Wed Jun 11 16:09:40 2003
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

(II) Module ABI versions:

[XFree86] Problem with Radeon Mobility 9000

2003-06-11 Thread Frank Rogall
Hi,

i have problems to config my X with xf86cfg on my notebook.

Thanks
--

Frank Rogall  enigmatec GmbH
Geschäftsführer  Walter-Benjamin-Platz 6
D - 10629 Berlin
[EMAIL PROTECTED]Germany
  Tel.: +49 (0)30 310 182 64
  Fax.: +49 (0)30 310 182 66
 


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.3.99.6
Release Date: 10 June 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: NetBSD/i386 1.6.1 [ELF] The NetBSD Foundation, Inc.
Build Date: 11 June 2003
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.8.log", Time: Wed Jun 11 17:58:22 2003
(++) Using config file: "/root/XF86Config.new"
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to 
"/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(--) Using wscons driver in pcvt compatibility mode (version 3.32)
(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 netbsd
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
compiled for 4.3.99.6, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
compiled for 4.3.99.6, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.7
(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,1a30 card , rev 04 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 04 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 8086,4541 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 8086,4541 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 8086,4541 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1028,013e rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev 83 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24cc card , rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24ca card 8086,4541 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1028,013e rev 03 class 04,01,00 hdr 00
(II) PCI: 00:1f:6: chip 8086,24c6 card 134d,4c21 rev 03 class 07,03,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c66 card 1028,013e rev 01 class 03,00,00 hdr 00
(II) PCI: 02:00:0: chip 14e4,4401 card 1028,8127 rev 01 class 02,00,00 hdr 00
(II) PCI: 02:01:0: chip 104c,ac44 card fffc, rev 02 class 06,07,00 hdr 82
(II) PCI: 02:01:1: chip 104c,8029 card 1028,013e rev 00 class 0c,00,10 hdr 80
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1  0   0xc000 - 0xc0ff (0x100) IX[B]
[1] -1  0   0xc400 - 0x000

Re: [XFree86] Compiling XFree with BuildLowMem

2003-06-11 Thread David Dawes
On Tue, Jun 10, 2003 at 11:24:50AM +1200, Miles Roper wrote:
>Hi,
>
>I'm trying to compile XFree86 4.3.0.1 with
>
>#define BuildLowMem = YES
>
>as it seems to be a option for low memory machines.  I'm trying to reduce
>memory consumption of XFree for a thinclient solution.
>
>When compiling the following error occurs
>
>+ ln -s ../../../../programs/xmh/box6 .
>make[4]: *** No rule to make target `../cfb/cfb8cppl.c', needed by
>`cfb8cppl.c'.  Stop.
>make[3]: *** [includes] Error 2
>make[2]: *** [includes] Error 2
>make[1]: *** [includes] Error 2
>
>seems to be a problem with 
>
>xfree86-4.30/xc/programs/Xserver/lmfcfb'
>
>Ideas?

This is an option that was added to an X Consortium release some time
ago.  At best it's in need of being reworked, but given our move away
from cfb, it probably isn't useful anymore, at least not for the XFree86
server.

Aside from building smaller versions of mfb and cfb (which XFree86 only
rarely uses), it also disables scalable font backends.  You can achieve
the same thing for the XFree86 server by simply not loading those font
modules.

Minimising the footprint of the XFree86 server for certain classes of
applications would be an interesting project.  Progress in that direction
could be made by carefully modularising some of the built-in code (and
drivers?).  For your specific application, a good start would be to do
some analysis and find out where most of the memory is being eaten up.
It might not be what you expect.

David
-- 
David Dawes
Founder/committer/developer The XFree86 Project
www.XFree86.org/~dawes
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Tracing .... ?

2003-06-11 Thread Auge Mike
Hi all,

I really want to know how can I trace or debug XFree86 drivers and library? 
Is there any tools and utilities for that?

Yours,

_
The new MSN 8: smart spam protection and 2 months FREE*  
http://join.msn.com/?page=features/junkmail

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


Re: [XFree86] problem: SAVAGE(0): Failed to fetch any BIOS modes.

2003-06-11 Thread Egbert Eich
Andrew,

you are using two different version of XFree86. The working
configuration was from Version 4.2.1  the other one was
Version 4.2.1.1 (Debian 4.2.1-6 20030225230350 [EMAIL PROTECTED])
(whatever that is).
On the second one VBE isn't initialized when the driver tries to
read the VESA BIOS modes. Therefore that fails. It looks like you
have a bogus version of the savage driver.
However you've specified these monitor lines in your XF86Config:

(II) SAVAGE(0): LCD: Using hsync range of 25.00-1000.00 kHz
(II) SAVAGE(0): LCD: Using vrefresh range of 25.00-1000.00 Hz

If you limit the upper frequencies to 70Hz/80kHz you may have a 
chance to get a working mode without adding a modeline or reading
the BIOS.

Egbert.


Andrew Pimlott writes:
 > I just had a weird experience which resulted in a garbled screen
 > when I started X.  My laptop had a flaky power connection, and I
 > suddenly lost power while in X, causing a reboot.  When I started X
 > again, I got garbage[1].  I booted Windows, and the screen came up
 > fine--but it rebooted after showing the login screen.  Assuming the
 > power problem had fried something, I took the machine for repairs.
 > 
 > The shop said they replaced the system board.  Windows now ran fine,
 > but X still showed garbage.  Fortunately, I had started X on screen
 > 1 not long ago, so I had a working XFree86.1.log for comparison
 > (though not for the exact same version of XFree86).  The big
 > difference seems to be the line
 > 
 > (EE) SAVAGE(0): Failed to fetch any BIOS modes.  Disabling BIOS.
 > 
 > in the newer log file, where the old had
 > 
 > (--) SAVAGE(0): Found 12 modes at this depth:
 > [10e] 320 x 200, 70Hz
 > ...
 > [178] 720 x 576, 75Hz
 > 
 > Apparently as a result, I now get modeline
 > 
 > (**) SAVAGE(0): Default mode "1024x768": 194.0 MHz, 137.0 kHz, 85.0 Hz (D)
 > (II) SAVAGE(0): Modeline "1024x768"  194.02  1024 1108 1220 1416 768 768 770 
 > 806 doublescan -hsync +vsync
 > 
 > instead of
 > 
 > (**) SAVAGE(0): Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz
 > (II) SAVAGE(0): Modeline "1024x768"   94.50  1024 1072 1168 1376 768 769 772 
 > 808 +hsync +vsync
 > 
 > If I manually enter the old modeline in my XF86Config-4, X now
 > works.  Phew!
 > 
 > So what could have happened to my BIOS?  I think that in a laptop,
 > it should be on the system board, so it should have been replaced.
 > Where else could it be?  More importantly, do you have any idea how
 > why X can't read it, and how I can fix it?  Might it cause any other
 > problems?
 > 
 > Also, I'm a little fuzzy as to why X accepted the bad modeline.
 > There are two lines in the log that seem to refer to dot clocks:
 > 
 > (--) SAVAGE(0): Detected current MCLK value of 100.227 MHz
 > ...
 > (II) SAVAGE(0): Clock range:  10.00 to 250.00 MHz
 > 
 > Where did the 250 MHz come from?  I'm not up on recent video
 > hardware, but isn't that faster than most cards can handle?  What
 > happened to the (presumably correct) 100 MHz value?
 > 
 > I attach XFree86.log.old (working), XFree86.log.new (broken), and
 > XF86Config-4.  My X is
 > 
 > XFree86 Version 4.2.1.1 (Debian 4.2.1-6 20030225230350 [EMAIL PROTECTED]) / X 
 > Window System
 > 
 > Thanks for any help,
 > Andrew
 > 
 > PS.  Please Cc: me in replies.
 > 
 > [1] Usually, a very bright screen--in which I could fainly discern
 > the burned in image of two xterms that I normally have
 > open--followed by noise with a pattern, not resembling what should
 > have appeared.
 > 
 > 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.1.1 (Debian 4.2.1-6 20030225230350 [EMAIL PROTECTED]) / X 
 > Window System
 > (protocol Version 11, revision 0, vendor release 6600)
 > Release Date: 18 October 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.20-586tsc 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: Fri Jun  6 13:01:21 2003
 > (==) Using config file: "/etc/X11/XF86Config-4"
 > (==) ServerLayout "Default Layout"
 > (**) |-->Screen "Default Screen" (0)
 > (**) |   |-->Monitor "LCD"
 > (**) |   |-->Device "S3 Savage/MX"
 > (**) |-->Input Device "Generic Keyboard"
 > (**) Option "XkbRules" "xfree86"
 > (**) XKB: rules: "xfree86"
 > (**) Option "XkbModel" "pc104"
 > (**) XKB: model: "pc104"
 > (**

[XFree86] X server crashing when switching to console

2003-06-11 Thread Tomas Rebok
Hello everybody! 

I've the following problem:
My 4.3.0 X server often crashes when I'm switching from X server to
console display (or after little time working in).
Could somebody help me? I've read a lot of web pages, the whole this
mailing list, no solution. Have somebody similar problem? Any idea of
solution?

And now something about my HW:
PIV 2,0GHz, 512 MB RAM, integrated graphic card (Intel VGA compatible
controller: Intel Corp. 82845G/GL).

Something about my SW:
I use Debian 3.0 with 2.4.20 kernel.

The XFree86 log file (after crash) is enclosed.

Can anybody help me?

Thanks a lot. Tom.




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 May 19 21:13:30 2003
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) Option "XkbModel" "pc105"
(**) XKB: model: "pc105"
(**) Option "XkbLayout" "us,cz"
(**) XKB: layout: "us,cz"
(**) Option "XkbOptions" "grp:switch,grp:shift_toggle,grp_led:scroll"
(**) XKB: options: "grp:switch,grp:shift_toggle,grp_led:scroll"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to 
"/usr/local/X11R6/lib/X11/fonts/TTF/,/usr/local/X11R6/lib/X11/fonts/misc-il2/,/usr/local/X11R6/lib/X11/fonts/75dpi-il2/,/usr/local/X11R6/lib/X11/fonts/100dpi-il2/,/usr/local/X11R6/lib/X11/fonts/misc/,/usr/local/X11R6/lib/X11/fonts/Speedo/,/usr/local/X11R6/lib/X11/fonts/Type1/,/usr/local/X11R6/lib/X11/fonts/75dpi/,/usr/local/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/local/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/local/X11R6/lib/modules"
(--) using VT number 11

(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/local/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/local/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 = 0x8090, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2560 card 1458,2560 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,2562 card 1458,2562 rev 03 class 03,00,00 hdr 00
(II) PCI: 00:1d:0: chip 8086,24c2 card 1458,24c2 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 1458,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 1458,24c2 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 1458,5004 rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card , rev 82 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 1458,24c2 rev 02 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 1458,24c2 rev 02 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 1458,a002 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:08:0: chip 8086,103a card 8086,3013 rev 82 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bu

[XFree86] Windows maximize on two screens

2003-06-11 Thread Wilco Holdorp / iiyama
Hi,

I have installed Redhat Linux 9.0 on a demo PC.  That will be used for
showing a monitor. The monitor AQU5611DTBK has a native resolution of
1840x2400. This is done through a dual DVI interface. The whole setup works
like a charm now, so no problems there. 

There are just two minor issues.
1: The fonts are really small. I found a setting in gnome to adjust the font
size, but that only changes the size op gnome panels'' . Is there a setting
in X to set a font size for all programs?

2: When I maximize a application is only uses one half of the monitor where
I would like it to be on the whole screen. Is there a solution for that as
well?

Can anybody tell me how I can write a "monitor.inf" for Xfree? I Have access
to all the  technical data on iiyama (vision master) monitors. Just to thank
for the good product.

Met vriendelijke groet, Best regards,
Wilco Holdorp

iiyama Benelux
Breguetlaan 10b
1438 BC Oude Meer
Tel: 020-4460404
Fax: 020-4460268
Internet: www.iiyama.nl




XF86Config
Description: Binary data


Re: [XFree86] Please teach me

2003-06-11 Thread Vivek
On Wed, 11 Jun 2003, Tadayuki Tomita wrote:

> I send the attached file.
> Please teache me how to run  the Xserver again

Your font server has not been started, so X cannot find the 'fixed'
(the default) font. Either start your font server
(probably with `/etc/init.d/xfs start` ) or add some lines to the
font paths in the 'Files' section of your XF86Config-4 file, eg:

Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/misc"
EndSection

( The actual locations may vary ).




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


RE: [XFree86] problem with var file + can't strart x

2003-06-11 Thread Cynthia Grossen
Try checking the permissions on your /var and /var/log/ directories and make
sure that they allow write access, if they do they check the
file(var/log/Xfree86.0.log) for the same.

> -Original Message-
> From: Kamil A'Shalwani [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, June 10, 2003 6:15 PM
> To: [EMAIL PROTECTED]
> Subject: [XFree86] problem with var file + can't strart x
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] problem

2003-06-11 Thread Cynthia Grossen
You'll need to upgrade to 4.3. Your driver is too new for 4.1.

-Original Message-
From: HAMZA ZAHID [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 11, 2003 5:55 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] problem
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] Cannot Start X-Server

2003-06-11 Thread Cynthia Grossen
You haven't configured your X installation yet. "redhat-config-xfree86" is
the command that you'll want to use for that. And no, you don't need to
upgrade to redhat 9 to solve that particular problem.

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, June 11, 2003 4:18 AM
> To: [EMAIL PROTECTED]
> Subject: [XFree86] Cannot Start X-Server
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] Report Porblems

2003-06-11 Thread Cynthia Grossen
You need to upgrade to 4.3 your card isn't being recognized by that old
version.

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
 
Module Loader present
(==) Log file: "/var/log/XFree86.0.log", Time: Wed Jun 11 10:04:41 2003

> -Original Message-
> From: Deot Siswantoro [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, June 11, 2003 12:23 AM
> To: [EMAIL PROTECTED]
> Subject: [XFree86] Report Porblems
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] Please teach me

2003-06-11 Thread Cynthia Grossen
Your font server isn't running.

This link has information on how to "fix" it.
http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/s1-x-fonts.h
tml

The best solution would be to hard-code your paths in your config
("/etc/X11/XF86Config-4") file though add the following lines to the Files
section

   FontPath   "/usr/X11R6/lib/X11/fonts/misc:unscaled"
   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"

-Original Message-
From: Tadayuki Tomita [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 11, 2003 8:14 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] Please teach me
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Problem with PCI Geforce4 MX 440 and garbled sound (dual-head)

2003-06-11 Thread Kelly Gibson
I am running a dual-head system and I have a small problem with the
sound related to the video cards.  When sound is played on the AGP card
there doesn't seem to be any problem at all, but when I watch a video,
scroll on a web page, or open gnome-terminal and type on the pci card
(the geforce 4) it will begin to distort badly.  I have tried many
"fixes" to this solution not limited to:  adjusting the latency, moving
pci cards around, recompiling Xfree, and reinstalling the nvidia
driver.  My setup seems to be otherwise just fine.  I can post my
XF86Config if necessary, but I am hoping this is some known issue.

System specs:

Gentoo Linux
XFree86:  4.3.0
using Nvidia's driver
Xinerama is on (note this doesn't seem to matter)
Athlon XP 1800
512mb mem
Geforce 2
geforce 4 mx440

Other potentially relevant information:

 Bus  0, device  11, function  0:
Multimedia audio controller: Ensoniq 5880 AudioPCI (rev 2).
  IRQ 3.
  Master Capable.  Latency=248.  Min Gnt=12.Max Lat=128.
  I/O at 0xd800 [0xd83f].
 Bus  0, device  15, function  0:
VGA compatible controller: nVidia Corporation NV17 [GeForce4 MX440]
(rev 163).
  IRQ 5.
  Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
  Non-prefetchable 32 bit memory at 0x2000 [0x20ff].
  Prefetchable 32 bit memory at 0x2800 [0x2fff].
  Prefetchable 32 bit memory at 0x2100 [0x2107].
  Bus  1, device   0, function  0:
VGA compatible controller: nVidia Corporation NV11 [GeForce2 MX]
(rev 178).
  IRQ 11.
  Master Capable.  Latency=248.  Min Gnt=5.Max Lat=1.
  Non-prefetchable 32 bit memory at 0xcc00 [0xccff].
  Prefetchable 32 bit memory at 0xb000 [0xb7ff].

Thank you for your time,

-- 
Kelly Gibson <[EMAIL PROTECTED]>
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Please teach me

2003-06-11 Thread Tadayuki Tomita

(B
(B
(B 
(BHello,
(BI am a enginner of Network and OS and Database.
(BThe machine that was crashed X Server have been running 
(Bfor 3 month.
(BBut It was crached when it is reboot.
(BI cannot understand why it was crached.
(B 
(BI send the attached file. 
(BPlease teache me how to run  the Xserver 
(Bagain
(B 
(B 
(BRegards
(B 
(BTadayuki Tomita
(B 
(B 

XFree86.0.log
Description: Binary data


[XFree86] Can't install over existing X!

2003-06-11 Thread Glenn McCord
I was having a horrid time with the source so I tried out the binaries. 
I did the Xinstall.sh -check and it told me:

Checking which OS you're running...
uname reports 'Linux' version '2.4.20', architecture 'i686'.
Object format is 'ELF'.  libc version is '6.3.2' (6.3).
Binary distribution name is 'Linux-ix86-glibc23'

So I downloaded all the files, put them all in the same folder and ran 
Xinstall agian (outside X). But I get this error:

Checking which OS you're running...
uname reports 'Linux' version '2.4.20', architecture 'i686'.
Object format is 'ELF'.  libc version is '6.3.2' (6.3).
Xinstall.sh: line 1050:  1487 Segmentation fault  $TAR xzf 
$VERSTARBALL $VERSIONFILE
Warning: can't detect the bindist version
Checking for required files ...

This is on top of a Yoper version of Linux that has X 4.3.0 alredy 
installed, but I'm having some issues so I figured installing over it 
may help.

Thanks for any help,
Glenn
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] problem

2003-06-11 Thread HAMZA ZAHID
Protect your PC - Click here for McAfee.com VirusScan Online 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
Module Loader present
(==) Log file: "/var/log/XFree86.0.log", Time: Wed Jun 11 14:34:56 2003
(==) Using config file: "/etc/X11/XF86Config-4"
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) ServerLayout "XFree86 Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "E40-3"
(**) |   |-->Device "My Video Card"
(**) |-->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"
(--) using VT number 7
(II) Open APM successful
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.1
	XFree86 Video Driver: 0.4
	XFree86 XInput driver : 0.2
	XFree86 Server Extension : 0.1
	XFree86 Font Renderer : 0.2
(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.1.0, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.2
(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.1.0, module version = 0.1.0
	ABI class: XFree86 Video Driver, version 0.4
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8060, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3148 card 174b,1106 rev 00 class 06,00,00 hdr 
00
(II) PCI: 00:01:0: chip 1106,b091 card , rev 00 class 06,04,00 hdr 
01
(II) PCI: 00:08:0: chip 109e,036e card , rev 11 class 04,00,00 hdr 
80
(II) PCI: 00:08:1: chip 109e,0878 card , rev 11 class 04,80,00 hdr 
80
(II) PCI: 00:0a:0: chip 1317,0985 card 1113,1216 rev 11 class 02,00,00 hdr 
00
(II) PCI: 00:10:0: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 
80
(II) PCI: 00:10:1: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 
80
(II) PCI: 00:10:2: chip 1106,3038 card 1106,3038 rev 80 class 0c,03,00 hdr 
80
(II) PCI: 00:10:3: chip 1106,3104 card 1106,3104 rev 82 class 0c,03,20 hdr 
00
(II) PCI: 00:11:0: chip 1106,3177 card 174b,1106 rev 00 class 06,01,00 hdr 
80
(II) PCI: 00:11:1: chip 1106,0571 card 174b,1106 rev 06 class 01,01,8a hdr 
00
(II) PCI: 00:11:5: chip 1106,3059 card 4005,4730 rev 50 class 04,01,00 hdr 
00
(II) PCI: 01:00:0: chip 5333,8d04 card 5333,8d04 rev 00 class 03,00,00 hdr 
00
(II) PCI: End of PCI scan
(II) LoadModule: "scanpci"
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor="The XFree86 Project"
	compiled for 4.1.0, module version = 0.1.0
	ABI class: XFree86 Video Driver, version 0.4
(II) UnloadModule: "scanpci"
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0x - 0x (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0c (VGA_EN is set)
(II) Bus 1 I/O range:
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0xec00 - 0xec0f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0xe000 - 0xe7ff (0x800) MX[B]
(II) Bus -1: bridge is at (0:17:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI: (0:8:0) BrookTree unknown chipset (0x036e) rev 17, Mem @ 
0xec122000/12
(--) PCI:*(1:0:0) S3 unknown chipset (0x8d04) rev 0, Mem @ 0xec00/19, 
0xe000/27
(II) Addressable bus resource ranges are
	[0] -1	0x - 0x (0x0) MX[B]
	[1] -1	0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0xffe0 - 0x (0x20) MX[B](B)
	[1] -1	0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
	[2] -1	0x000f - 0x000f (0x1) MX[B]
	[3] -1	0x000c - 0x000e (0x3) MX[B]
	[4] -1	0x - 0x0009 (0xa) MX[B]
	[5] -1	0x - 0x00

[XFree86] Problem on redhat 7.3 an application in xterm larger than thescreen

2003-06-11 Thread lgibe


sdw0.sdw
Description: filename="text1.sdw"


[XFree86] Cannot Start X-Server

2003-06-11 Thread rupak
Hi,
   I have a video card Intel 82845G/GL. I am installing Red Hat Linux 8 on
the system. But the X Server cannot start.
 The following is the log file:

  XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-72) / X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
If the server is older than 6-12 months, or if your card is
newer than the above date, look for a newer version before
reporting problems.  (See http://www.XFree86.Org/)
Build Operating System: Linux 2.4.18-11smp i686 [ELF]
Build Host: daffy.perf.redhat.com

Module Loader present
OS Kernel: Linux version 2.4.18-14 ([EMAIL PROTECTED])
(gcc version 3.2 20020903 (Red Hat Linux 8.0 3.2-7)) #1 Wed Sep 4 13:35:50
EDT 2002
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Tue Jun 10 10:27:23 2003
(EE) Unable to locate/open config file
(EE) Error from xf86HandleConfigFile()

Fatal server error:
no screens found

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



  Somebody told me that installing Red Hat Linux 9 will solve the
problem. But can't the problem be solved with Red Hat Linux 8.
   Rupak.



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


Re: [XFree86] Problem with Radeon 9500 pro

2003-06-11 Thread Franck Bui-Huu




Ok I tried vesa drivers and it works.

For the failing  case, I was just launching the server x from tty1.

thanks !

Cynthia Grossen a écrit:

  (II) Module shadowfb: vendor="The XFree86 Project"
	compiled for 4.3.0, module version = 1.0.0
	ABI class: XFree86 ANSI C Emulation, version 0.2
(II) RADEON(0): Page flipping disabled
(!!) RADEON(0): For information on using the multimedia capabilities
 of this adapter, please see http://gatos.sf.net.

   *** If unresolved symbols were reported above, they might not
   *** be the reason for the server aborting.

Fatal server error:
Caught signal 11.  Server aborting


What were you doing when this happened? What was happening? Often these
happen when X is interacting with other software. Alternately there could be
some problem with this module. You could try using the vesa driver and see
if you can get that working first. That may be the best solution for the
time being.

  
  
-Original Message-
From: Franck Bui-Huu [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 10, 2003 4:48 AM
To: [EMAIL PROTECTED]
Subject: Re: [XFree86] Problem with Radeon 9500 pro

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