CVS Update: xc (branch: trunk)

2003-06-24 Thread Egbert Eich
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/24 08:43:41

Log message:
   243. Added 'BitKeeper' to the directories that get excluded by lndir
(Bugzilla #408, H.J.Lu).
   242. Fixed gcc warnings in xdmauth.c (Bugzilla #410, Jason L. Wright).
   241. Updated Citron touchscreen driver: set 'block duration time'
to one second to avoid timeouts, added user strings to inform about
HW version (Peter Kunzmann).

Modified files:
  xc/programs/Xserver/hw/xfree86/input/citron/:
citron.h citron.man 
  
  Revision  ChangesPath
  1.4   +62 -3 xc/programs/Xserver/hw/xfree86/input/citron/citron.h
  1.4   +133 -82   xc/programs/Xserver/hw/xfree86/input/citron/citron.man

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


CVS Update: xc (branch: trunk)

2003-06-24 Thread Egbert Eich
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/06/24 09:09:41

Log message:
   241. Updated Citron touchscreen driver: set 'block duration time'
to one second to avoid timeouts, added user strings to inform about
HW version (Peter Kunzmann).

Modified files:
  xc/programs/Xserver/hw/xfree86/input/citron/:
citron.c 
  
  Revision  ChangesPath
  1.8   +298 -21   xc/programs/Xserver/hw/xfree86/input/citron/citron.c

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit


module aware gdb

2003-06-24 Thread Egbert Eich
The version of the module aware gdb on ftp.xfree86.org is 
ancient and cannot deal with the debug informations of more
recent versions of gcc.

Is there a newer version around that is accessible thru ftp?
Could we please update the version we have on our ftp server?

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


Getting additional info from an XInput driver

2003-06-24 Thread Divide by Zero
I'm trying to extend the standard mouse_drv.o driver to enable it to read 
battery and RF channel status from a wireless mouse. I have googled the mouse 
protocol, so I know how to get the information from the mouse. The problem is 
that I can't find any way to get this information thru XInput from the driver 
to an application. Does anybody know how to read additional info of this kind 
from a (core pointer) driver?
-- 
Divide by Zero (is not really dividing by zero)

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


Re: Getting additional info from an XInput driver

2003-06-24 Thread Divide by Zero
On Tuesday 24 of June 2003 23:16, Brad Hards wrote:
 On Wed, 25 Jun 2003 00:34 am, Divide by Zero wrote:
  I'm trying to extend the standard mouse_drv.o driver to enable it to read
  battery and RF channel status from a wireless mouse. I have googled the
  mouse protocol, so I know how to get the information from the mouse. The
  problem is that I can't find any way to get this information thru XInput
  from the driver to an application. Does anybody know how to read
  additional info of this kind from a (core pointer) driver?

 Why do this in X?
 http://www.frogmouth.net/logitech-applet-0.3.tar.gz

 Even if you do want to do it in X, you can't do it over the mouse protocol
 - the information simply isn't there. You have to do vendor specific
 transfers.

I'm writing about PS/2 mice, not USB. And the info is there, have a look here:
http://www.dqcs.com/logitech/PS2ppSpec.htm
and I have no problem retrieving it, for example using this simple patch over 
mouse.c:
@@ -1416,6 +1416,9 @@
dw = (pBuf[2]  0x08) ? (pBuf[2]  0x0f) - 16 :
(pBuf[2]  0x0f);
break;
+case 5:   /* wireless status type packet */
+xf86Msg(X_INFO, %s: battery level: %d, RF channel: %d\n, 
pInfo-name,
+  pBuf[2]  0x07, (pBuf[2]  3)  0x07);
case 0: /* device type packet - shouldn't happen */
default:
buttons |= (pMse-lastButtons  ~0x07);

(I have Logitech Cordless MouseMan Optical). What the problem is is getting 
the info from the driver to a client (once it has been read from the mouse).

I hope that clears it out.
-- 
Divide by Zero (is not really dividing by zero)


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


Re: Getting additional info from an XInput driver

2003-06-24 Thread Alex Deucher
I'm not sure Xinput really supports this sort of functionality right
now.  Support for this may be something for 5.0.

Alex

--- Divide by Zero [EMAIL PROTECTED] wrote:
 On Tuesday 24 of June 2003 23:16, Brad Hards wrote:
  On Wed, 25 Jun 2003 00:34 am, Divide by Zero wrote:
   I'm trying to extend the standard mouse_drv.o driver to enable it
 to read
   battery and RF channel status from a wireless mouse. I have
 googled the
   mouse protocol, so I know how to get the information from the
 mouse. The
   problem is that I can't find any way to get this information thru
 XInput
   from the driver to an application. Does anybody know how to read
   additional info of this kind from a (core pointer) driver?
 
  Why do this in X?
  http://www.frogmouth.net/logitech-applet-0.3.tar.gz
 
  Even if you do want to do it in X, you can't do it over the mouse
 protocol
  - the information simply isn't there. You have to do vendor
 specific
  transfers.
 
 I'm writing about PS/2 mice, not USB. And the info is there, have a
 look here:
 http://www.dqcs.com/logitech/PS2ppSpec.htm
 and I have no problem retrieving it, for example using this simple
 patch over 
 mouse.c:
 @@ -1416,6 +1416,9 @@
 dw = (pBuf[2]  0x08) ? (pBuf[2]  0x0f) - 16 :
 (pBuf[2]  0x0f);
 break;
 +case 5:   /* wireless status type packet */
 +xf86Msg(X_INFO, %s: battery level: %d, RF channel: %d\n, 
 pInfo-name,
 +  pBuf[2]  0x07, (pBuf[2]  3)  0x07);
 case 0: /* device type packet - shouldn't
 happen */
 default:
 buttons |= (pMse-lastButtons  ~0x07);
 
 (I have Logitech Cordless MouseMan Optical). What the problem is is
 getting 
 the info from the driver to a client (once it has been read from the
 mouse).
 
 I hope that clears it out.
 -- 
 Divide by Zero (is not really dividing by zero)
 
 
 ___
 Devel mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/devel


__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


[Fonts] bug report concerning Syriac Fonts in XFree86

2003-06-24 Thread Egbert Eich
Hi George,

XFree86 has received a bug report concerning 
some Syriac fonts you have provided to us. 

Would you mind to take a quick look at the report?
You can find it in our bugzilla 
http://bugs.xfree86.org
under the ID# 411.

Thanks a lot!

Regards,
Egbert.

-- 
Egbert Eich XFree86 Core Team Member   SuSE Linux AG
[EMAIL PROTECTED]   [EMAIL PROTECTED]
___
Fonts mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/fonts


[I18n] XKB: ISO_Level3_Shift in group2

2003-06-24 Thread Behnam Esfahbod
Hi,

We're wokring on New Iranian Keyborad Layout, and I'm making the new ir 
XKB file.  But I have a problem with ISO_Level3_Shift in group2.

We use us+ir for layout, and grp:shift_toggle for group switching.  As 
we have keys with 3 Level in new layout, i have make this file:


default partial alphanumeric_keys
xkb_symbols basic {
name[Group2]= Iranian;

key TLDE {
type[Group2]=THREE_LEVEL,
symbols[Group2]= [ 0x100200d,   0xf7,   0x7e ]
};
.
.
.
key AC01 {
type[Group2]=THREE_LEVEL,
symbols[Group2]= [ Arabic_sheen,Arabic_hamzaonwaw,
   NoSymbol ]
};
.
.
.
key SPCE {
type[Group2]=THREE_LEVEL,
symbols[Group2]= [ 0x20,0x100200c,  0xa0 ]
};

key RALT { [ ISO_Level3_Shift ] };
modifier_map Mod5 { RALT };
};


But when I use a key, in group 2, with RALT, a ? will print.

Could anyone help me with this, or introduce a complete refrence of XKB?


-- 
Behnam Esfahbod ..[ http://esfahbod.info | behnam(a)esfahbod.info ]

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


Re: [I18n] XKB: ISO_Level3_Shift in group2

2003-06-24 Thread Danilo Segan
Behnam Esfahbod wrote:

But when I use a key, in group 2, with RALT, a ? will print.
 

Try setting the correct locale for the corresponding application (LC_*, 
LANG,...), and see if that helps.

Eg.
export LANG=sr_YU.UTF-8  export LC_ALL=sr_YU.UTF-8 # bash syntax for 
Serbian language
or use the setenv in C shells.

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


Re: [I18n] XKB: ISO_Level3_Shift in group2

2003-06-24 Thread Ivan Pascal
  Hi,

 We're wokring on New Iranian Keyborad Layout, and I'm making the new ir 
 XKB file.  But I have a problem with ISO_Level3_Shift in group2.
 
 We use us+ir for layout, and grp:shift_toggle for group switching.  As 
 we have keys with 3 Level in new layout, i have make this file:

First of all.  Please use us,ir as a layout names list.  I know that in many
cases us+something works too but is is not the same.
 
 But when I use a key, in group 2, with RALT, a ? will print.

Run xev programm, press the keys and see if they produce correct keysyms.
If they don', it is a keyboard problem.  But if the keysym in xev are correct
but you get ? at printing it's a font issue.

It also is possible you didn't set a right locale (LANG variable).  But usualy
in such case no symbols appear at all.

-- 
 Ivan U. Pascal |   e-mail: [EMAIL PROTECTED]
   Administrator of |   Tomsk State University
 University Network |   Tomsk, Russia
___
I18n mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/i18n


Re: [XFree86] problem with starting kde

2003-06-24 Thread Andy Goth
On Monday, June 23, 2003 2:41 am, Tomasz Bem wrote:
 I've installed Linux Red Hat 7.2 and KDE, but when I try to lunch kde
 kernel give me this information

 (==) Using config file: /etc/X11/XF86Config
 Parse error on line 242 od section InputDevice in file /etc/X11/XF86Config
 Device is not a valid keyword in this section
 (EE) Problem parsing the config file

Is it really spelled that way?  od ?

We need to see this file, /etc/X11/XF86Config.  Either upload it somewhere and 
give us the URL, or send it as an attachment to an email to the list.

 In line 242 in file /etc/X11/XF86Config is write something like this Device
 /dev/mouse. I thik this is a problem with my mouse, but I don't know how
 to configure it. I have notebook with touchpad. During instalation i don't
 have option to choose touchpad. Can you tell me what I must do to lunch
 KDE?

Mmm, KDE. :^)  Right now I'm using a weird mix of KDE apps and Window Maker.  
Anyway, you need to fix your XF86Config file.  I can't say for sure what's 
wrong with it without taking a look at it myself, though.

-- 
Andy Goth  |  [EMAIL PROTECTED]  |  http://ioioio.net/
End communication.

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


Re: [XFree86] Problem when starting x

2003-06-24 Thread Andy Goth
On Monday, June 23, 2003 7:12 am, Ronald wrote:
 Hi all,

 I have just installed my Debian machine with the Desktop environment, but
 when I type startx X will start but during the process of initializing
 system peperials it just dies. I have already solved some things with the
 mouse and stuff, and it seemed to help a little bit, but it still dies.

 Iam out of ideasAnd searching the internet doesn't get me anywhere...

[snippity]

 Fatal server error:
 Caught signal 4.  Server aborting

According to signal(7), that's SIGILL: Illegal Instruction

What processor are you using?  What processor is Debian 3.0_rc1 targeted at?

-- 
Andy Goth  |  [EMAIL PROTECTED]  |  http://ioioio.net/
End communication.

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


Re: [XFree86] No window

2003-06-24 Thread Andy Goth
On Monday, June 23, 2003 5:04 pm, Stephane Corbe wrote:
 Le Dimanche 22 Juin 2003 22:04, Mark Vojkovich a écrit :
  On Sun, 22 Jun 2003, Stephane Corbe wrote:
 I tried to upgrade from 4.3.0 to the cvs snapshot, but I have problem
  
I started X just by typing X so I have the X background and the
   mouse. From another console I typed export DISPLAY=:0 and xclock :
   nothing is printed on the console, nothing is displayed on the X
   screen. There's no error on the console, in log/message nor XFree0log.
Do things change if you start with X -ac ?

 No... I can just admire the X cursor.

Beautiful, isn't she?  :^)

What if you try 'startx $(which xclock)' ?  Remember that CTRL-ALT-BACKSPACE 
will stop X.

-- 
Andy Goth  |  [EMAIL PROTECTED]  |  http://ioioio.net/
End communication.


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


[XFree86] info on root window

2003-06-24 Thread dddani
hello , i don tknow if this is the right list to ask this, sorry if it is not

i have been searching for information on the root window i wanted to know 
which properties its got but i cant find what i am looking for. Id like to 
get a pointer to the image the root window is using as a background, does 
anybody know how to do it or where to look for info?

thx

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


Re: [XFree86] xserver doesn't open

2003-06-24 Thread Egbert Eich
Mr fir kes writes:
  plz help me  my xserver doesn't open ...
  my system config is as follows 
  nvidia riva tnt model 64 / model 64 pro
  genius netscroll + ps/2 mouse
  acer ac711 17  monitor
  
  the log is attached
  

You are trying to run a SiS chipset: 

(--) PCI:*(1:0:0) SiS 300 rev 144, Mem @ 0xe800/27, 0xff8e/17, I/O @ 0xcc00/7, 
BIOS @ 0xff8d/16

with the NVIDIA nv driver:

(II) LoadModule: nv
(II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.o

This won't work. Edit the config file and replace 
nv by sis

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


[XFree86] v4l - recompile xfree ?

2003-06-24 Thread M.-Iqbal Maraqa
Hi,
weeks after compiling Xfree, i noticed that i don't have the v4l module 
installed. I get this warring when i start X :

(II) LoadModule: v4l
(WW) Warning, couldn't open module v4l
(II) UnloadModule: v4l
(EE) Failed to load module v4l (module does not exist, 0)
I want to compile the v4l module without recompilg everything. I tried 
simply to make it in xc/programs/Xserver/hw/xfree86/drivers/v4l/
but it didn't work. what the right way to do it ?

A lot of thanks,
Iqbal
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] XSERVER CRASH - newbie needs help!

2003-06-24 Thread Andy Myers




X server wont start says:

could not init font path element unix/:7100, 
removing from list!

fatal server error:
could not open default font 'fixed'

there is more but this is exacly what happended 
before to me and i had to reinstall, i really dont want to have to do that 
again! why is it doing this, i did nothing weird at all, i just moved a file 
from linux partition to windows via linux, then went into windows and then 
deleted it, then rebooted to linux and this happened (i have fat32 
drive)

this happened before after i had tried to install 
something, and nver even had the windows drive setup for mounting so it cant be 
that, it also happened after about the same duration of time!

PLEASE HELP ME I AM A NEWBIE AND THIS IS NOT 
FUNNY!!

thanks

andy


Re: [XFree86] Cirrus Logic GD 7548 Woes

2003-06-24 Thread Egbert Eich
Unfortunately you may be pretty much on your own.
the Cirrus driver is pretty much unsupported as noone
who could support it has the HW.
If you find a solution please let us know.
The spikes and crackles usually appear when the memory bus
is congested.
Sometimes this can get fixed by reducing the pixel clock or
increasing the memory clock. Unfortunately there is support
for chaning the memory clock in this driver.
Setting the option PCI_Retry may also help however the cirrus
driver has no support for this.
We have a similar report about a Cirrus Laguna chip in
our bugzilla. 

Egbert.


Richard Lynch writes:
  Please CC me with any replies...  I confess I'm not a regular reader, 
  much less contributor, but have contributed much in the distant past 
  to the PHP mailing list, FWIW.  And I'll certainly add the info to 
  the on-line database of your choice if we get this working!
  
  Hardware:
  Canon Innova Book 490 CDT (laptop)
  
  I can get X to sort of run at both 640x480 and 800x600.
  
  But it's all crackly -- like watching TV in the middle of a heavy 
  wind-storm with a 1950's antenna.  Lots of streaks and speckles, 
  mostly black/white when the background is grey or white, and indigo 
  blue when the background is black...
  
  It's all kinda speckly when it starts up as well, dividing the screen 
  into chunks and the X cursor is, like, repeated six-fold in 
  same-size array 3x2, with missing pixels in each repetition.  Hope 
  that makes sense.
  I've tried poking at the Config file and disabling accel and MMIO 
  based on on-line research to no effect, and I'm running out of things 
  to try, other than random ModeLine settings.
  
  I've uploaded my Config file and X log files to:
  http://www.l-i-e.com/xfree86/
  so those of you who understand all that stuff could maybe take a 
  peek, without cluttering up the list with them.
  
  
  
  Some ramblings that may be useful.  Or not.
  
  I seem to recall that I fought this fight before, and won, but only 
  by dumping the window manager that comes with the X downloadable 
  binaries, and compiling everything from source, errr, maybe on 
  another box?, and ...  But maybe that was on my OTHER laptop (that 
  got stolen).
  
  It's been s long since I tried to use X on this laptop, and I had 
  to rip it out to make room for something else, and now I've lost my 
  notes, and the on-line contribution I made back when there were only 
  two (2) X laptop databases to contribute to seems to be AWOL...
  
  I can't get enough hard drive space to compile from source, which I 
  usually prefer...
  
  
  
  
  While I've got your ear, some other issues:
  
  I'm not real fond of the Sparc-like X behaviour, but I've only got so 
  much disk space and so much patience for compiling on a 133...
  
  Recommendations for a lightweight window manager that's more like 
  Gnome would be most welcome.
  
  
  Can I compile X on a desktop and just copy all the stuff over?... 
  It's not going to detect all the hardware properly, though, is it? 
  Or is that all done at run-time?  I don't really grok when X decides 
  which modules/libraries to build and how.  What would I have to do to 
  get my fast (faster anyway) desktop to compile X for my laptop 
  without screwing up the desktop settings?  I've read some stuff that 
  seems to apply, but it wasn't simplistic enough for my poor brain.
  
  
  The trackpad only seems to work every other re-boot, and when I plug 
  in an external mouse, not at all.  xf86cfg core dumps when trying to 
  configure the second mouse
  
  -- 
  Like Music?
  http://l-i-e.com/artists.htm
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] mouse problems

2003-06-24 Thread Egbert Eich
David Anderson writes:
  I can't get my Logitech optical mouse to work on KDE 3.1 in Mandrake 9.1.  I 
  can see the cursor, but when I try to move it it just goes crazy all over 
  the screen, and it tends to stay near the top of the screen after I stop 
  trying to move it.  It's a USB mouse that I have connected to the computer 
  through a PS/2 adapter, so I can use it either way.  I ran xf86config and 
  tried all the different mouse options, but that didn't seem to help.  Any 
  suggestions?
  

What's the protocol you have set?
You may want to try either PS/2 ImPS/2 or Auto under 4.3.
Maybe you should edit /etc/X11/XF86Config manually to change this.

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


Re: [XFree86] Misconfigured?

2003-06-24 Thread edwarner99
--- Mark Vojkovich [EMAIL PROTECTED] wrote:
 On Mon, 23 Jun 2003 [EMAIL PROTECTED] wrote:
 
  Does the following mean that the fonts are corrupt
 or
  that I have something misconfigured?
 
 Assuming those directories even exist, go into
 them
 and run mkfontdir.
 
   Mark.
 
  
  
  Could not init font path element
  /usr/X11R6/lib/X11/fonts/myfonts, removing from
 list!
  Could not init font path element
  /usr/X11R6/lib/X11/fonts/Speedo, removing from
 list!
  
  __

Thanks, I did this and it seemed to work until I
rebooted. Back to the same problem. Why do I have to
keep running mkfondir?

__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] XSERVER CRASH - newbie needs help!

2003-06-24 Thread Cynthia Grossen
Your font server has failed.

Here is a link to Red Hat documentation about the font server XFS
http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/s1-x-fonts.h
tml

Service xfs restart may work, you'll have to be running as root and X
should not be running. The latter shouldn't be a problem. :) I'm not a Red
Hat user so maybe someone else can help you if you have more questions.

Your second choice is to add the font directories to your config file. This
is the preferred solution. 

Add the following lines to the Section Files in the XF86Config file:

   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

HTH,
cyn

-Original Message-
From: Andy Myers [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 24, 2003 8:22 AM
To: xfree86
Subject: [XFree86] XSERVER CRASH - newbie needs help!
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Cirrus Logic GD 7548 Woes

2003-06-24 Thread Egbert Eich
Egbert Eich writes:
  We have a similar report about a Cirrus Laguna chip in
  our bugzilla. 
  
ID #348. I forgot to mention this.

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


Re: [XFree86] XSERVER CRASH - newbie needs help!

2003-06-24 Thread Daniel Godas Lopez
im am almost a newbie too but it seems you deleted one of the fonts, if
its that the only thing you have to do is find it (search for it on
google) and put it in the directory it was before, if it isnt that i
have no idea what happened :s

On Tue, Jun 24, 2003 at 01:22:26PM +0100, Andy Myers wrote:
 X server wont start says:
 
 could not init font path element unix/:7100, removing from list!
 
 fatal server error:
 could not open default font 'fixed'
 
 there is more but this is exacly what happended before to me and i had to reinstall, 
 i really dont want to have to do that again! why is it doing this, i did nothing 
 weird at all, i just moved a file from linux partition to windows via linux, then 
 went into windows and then deleted it, then rebooted to linux and this happened (i 
 have fat32 drive)
 
 this happened before after i had tried to install something, and nver even had the 
 windows drive setup for mounting so it cant be that, it also happened after about 
 the same duration of time!
 
 PLEASE HELP ME I AM A NEWBIE AND THIS IS NOT FUNNY!!
 
 thanks
 
 andy
-- 

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


Re: [XFree86] XSERVER CRASH - newbie needs help!

2003-06-24 Thread Andy Myers
thanks that worked:)

cool andy

- Original Message - 
From: Cynthia Grossen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, June 24, 2003 2:17 PM
Subject: RE: [XFree86] XSERVER CRASH - newbie needs help!


 Your font server has failed.

 Here is a link to Red Hat documentation about the font server XFS

http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/s1-x-fonts.h
 tml

 Service xfs restart may work, you'll have to be running as root and X
 should not be running. The latter shouldn't be a problem. :) I'm not a Red
 Hat user so maybe someone else can help you if you have more questions.

 Your second choice is to add the font directories to your config file.
This
 is the preferred solution.

 Add the following lines to the Section Files in the XF86Config file:

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

 HTH,
 cyn

 -Original Message-
 From: Andy Myers [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, June 24, 2003 8:22 AM
 To: xfree86
 Subject: [XFree86] XSERVER CRASH - newbie needs help!
 ___
 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-24 Thread Marc Aurele La France
On 16 Jun 2003, Mike Russo wrote:
  OK.  Then please figure out what errno is when xf86MapSbusMem()'s call to
  mmap() fails.

 Using perror(), I found that both the fb and x32 memory regions
 don't map privately, but they do map shared. The xlut region does not
 map as either private or shared, and in each case the mmap() error
 number is EACCES (#13), permission denied. The Solaris 8 man page for
 mmap(2) mentions:

 The mmap() function will fail if:

  EACCES
The fildes file  descriptor  is  not  open  for  read,
regardless  of  the protection specified, or fildes is
not open for write and PROT_WRITE was specified for  a
MAP_SHARED type mapping.

Well, the same file descriptor is being used for all three regions and it
is definitely being open()'ed for read  write, so I don't see why the
XLUT mmap() is the only one failing with EACCES.  However, it seems the
OS' device driver is imposing additional restrictions not documented in
the mmap() man page, given FB and X32 private mmap()'s are being nixed.
What do(es) the cg14 related man page(s) say?

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Computing and Network Services  |  fax:1-780-492-1729   |
|  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
|  University of Alberta   +---+
|  Edmonton, Alberta   |   |
|  T6G 2H1 | Standard disclaimers apply|
|  CANADA  |   |
+--+---+
XFree86 Core Team member.  ATI driver and X server internals.

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


Re: [XFree86] makedepend, is it xfree86 tool ? I have problems withit.

2003-06-24 Thread Marc Aurele La France
On Tue, 17 Jun 2003, Tomasz Sztejka wrote:

  I recently started to moving from old DOS'like development to
 makefiles and makedepend. Now I have found some problems with
 makedepend. Am I correct, that this tool belongs to Xfree86 (I mean,
 Xfree86 is maintaing it) or there is another place where I should ask
 about problems with makedepend?

  Now to the problem itself. I have a file:

 FILE : z.h
 #ifndef Z_H1
 #define Z_H1
  #include z2.h
 #endif

  and

 FILE: z2.h - empty.

 when I run:
   makedepend -f- z.h

 the dependency list is empty, but when I change file to:
 FILE : z.h
 #ifndef Z_H1
 #define Z_H1
 #include z2.h
 #endif

  and run the same, output is correct. Did you noticed the difference?
 It appears no space nor tab is allowed in front of #include.
  Can anybody confirm it or correct me if I'm wrong? I'm using Cygwin
 now, so it may be related to it.

This works fine for me.  What version of XFree86 are you using?

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Computing and Network Services  |  fax:1-780-492-1729   |
|  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
|  University of Alberta   +---+
|  Edmonton, Alberta   |   |
|  T6G 2H1 | Standard disclaimers apply|
|  CANADA  |   |
+--+---+
XFree86 Core Team member.  ATI driver and X server internals.

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


Re: [XFree86] XFree86 4.3.0 fails to start on ATI MAch64 GX

2003-06-24 Thread Marc Aurele La France
On Tue, 17 Jun 2003, Philip Wright wrote:

 I am trying to install Redhat 9.0 on a PII-450 system that has an
 ATI PCI Mach64 GX card and Xwindows refuses to start. Are there known
 problems with this combo? My XFree86.0.log file is as follows:

Few things here:

1) Use the ati driver instead of vga;
2) Specify the virtual resoltion you want (man XF86Config);
3) The ati driver will support this adapter at more than depth 8 (256
   colours).  Read README.ati.  The vesa driver might, but I can't vouch
   for it.

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Computing and Network Services  |  fax:1-780-492-1729   |
|  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
|  University of Alberta   +---+
|  Edmonton, Alberta   |   |
|  T6G 2H1 | Standard disclaimers apply|
|  CANADA  |   |
+--+---+
XFree86 Core Team member.  ATI driver and X server internals.

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


[XFree86] dumb proxy

2003-06-24 Thread Vladimir
does anyone know of a dumb X proxy that would take incomming X 
connections and forward them on to a different machine?

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


[XFree86] XFS Stop

2003-06-24 Thread Bharathi S
Hello All,

Is it adviceable to stop the XFS after adding font paths
in the XF86Config file ? 

TIA,
-- 
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


Re: [XFree86] mouse problems

2003-06-24 Thread Egbert Eich
David Anderson writes:
  
  What's the protocol you have set?
  You may want to try either PS/2 ImPS/2 or Auto under 4.3.
  Maybe you should edit /etc/X11/XF86Config manually to change this.
  
  Egbert.
  
  
  I tried those three, plus others as well.  Nothing worked.  What do you mean 
Please send the log file.

  by change them manually?  I ran xf86config and changed them that way.  
  That's the only way I know how.

Use an editor and edit /etc/X11/XF86Config.

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


Re: [XFree86] xserver

2003-06-24 Thread Marc Aurele La France
On Mon, 23 Jun 2003, Bob Wells wrote:

 I am installing RetHat linux 9.0 on an ibm thinkpad a22p with an ati rage
 128 mobility video card in it. After the install is complete and upon
 reboot, when the root userid is logged on xserver crashes. I have
 included the log and the config file in the hopes that maybe there is
 something simple I can do to get xserver running.

This is a bug that was corrected after 4.3's release.  One possible
workaround is to specify a virtual resolution.  `man XF86Config` for
details.

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Computing and Network Services  |  fax:1-780-492-1729   |
|  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
|  University of Alberta   +---+
|  Edmonton, Alberta   |   |
|  T6G 2H1 | Standard disclaimers apply|
|  CANADA  |   |
+--+---+
XFree86 Core Team member.  ATI driver and X server internals.

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


[XFree86] How to get IP of a client terminal in XDMCP-session?

2003-06-24 Thread Rene Bartsch
Hi,

First, I'm new to the list, so Hello! :o)


I'm running a Linux-server and -terminal both with XFree 4.3.0.

The terminal is interfaced by XDMCP/KDM to the server.

On the server I want to set the environment variable
ARTS_SERVER=ip:port.

Is there any way to get the IP of a connected terminal in a session from
XFree/XDMCP/KDM to use in a script for setting the evironment variable?

Or maybe there is a environment variable keeping the client's IP?

Rene

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


Re: [XFree86] mouse problems

2003-06-24 Thread David Anderson






  - Original Message - 
  From: Egbert Eich 
  To: [EMAIL PROTECTED] 
  Sent: Tuesday, June 24, 2003 1:21 
PM
  Subject: Re: [XFree86] mouse 
  problems
  
  David Anderson writes:  What's the 
  protocol you have set? You may want to try either "PS/2" 
  "ImPS/2" or "Auto" under 4.3. Maybe you should edit 
  /etc/X11/XF86Config manually to change this.  
  Egbert.   I tried those three, 
  plus others as well. Nothing worked. What do you mean Please 
  send the log file. by change them manually? I ran 
  xf86config and changed them that way.  That's the only way 
  I know how.Use an editor and edit 
  /etc/X11/XF86Config.Egbert.
  
  I've tried to use the vi text editor, but it won't let me type 
  anything. I can't even get out of it once I start the program. 
  Either I'm doing something wrong (which is entirely possible), or it's not 
  working right. Can you tell me exactly how to edit the XF86Config 
  file? What programs to open and how to edit it, etc.? I only have 
  about 4 days worth of Linux experience so I am very new at this. 
  Remember, I can't use any GUIs because my mouse doesn't work, so I have to do 
  it at the root prompt. 
  Thanks.___XFree86 mailing 
  list[EMAIL PROTECTED]http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] mouse problems

2003-06-24 Thread Cynthia Grossen
David Anderson said,

I've tried to use the vi text editor, but it won't let me type anything.  I
can't even get out of it once I start the program.  Either I'm doing
something wrong (which is entirely possible), or it's not working right.
Can you tell me exactly how to edit the XF86Config file?  What programs to
open and how to edit it, etc.?  I only have about 4 days worth of Linux
experience so I am very new at this.  Remember, I can't use any GUIs because
my mouse doesn't work, so I have to do it at the root prompt.  Thanks.


Vi is probably not the best editor to use for a newbie. If you have to use
it for some reason then at least read the man page first.

Here's a Quick Reference for VI
http://dcfonline.sfu.ca/ying/linux/vi/

Here's a tutorial for VI.
http://www.ctssn.com/linux/lesson4.html

-Original Message-
From: David Anderson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 24, 2003 1:26 PM
To: [EMAIL PROTECTED]
Subject: Re: [XFree86] mouse problems
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] mouse problems

2003-06-24 Thread quadrant
the editor  'pico'  is MUCH easier to use than vi...

On Tuesday 24 June 2003 14:08, Cynthia Grossen wrote:
 David Anderson said,

 I've tried to use the vi text editor, but it won't let me type anything.  I
 can't even get out of it once I start the program.  Either I'm doing
 something wrong (which is entirely possible), or it's not working right.
 Can you tell me exactly how to edit the XF86Config file?  What programs to
 open and how to edit it, etc.?  I only have about 4 days worth of Linux
 experience so I am very new at this.  Remember, I can't use any GUIs
 because my mouse doesn't work, so I have to do it at the root prompt. 
 Thanks.
-
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] image that causes LCD to flicker violently

2003-06-24 Thread Case Jones
Hi everyone, 

I've noticed that some websites cause my screen to flicker.  It seems
to have something to do with something in the image that is attached
to this email..  To reproduce the flickering, all I need to do is
open the png in full size and move it to the left edge of the screen, and
then my LCD will flicker violently.

I'm really not sure what the cause of it might be, although it could be
* the r128 ati driver
* gatos drivers
* something in XFree86 server itself
* Thinkpad a22p firmware

Does this image cause the same effect for anyone else here?

Case


image_that_makes_screen_flicker.png
Description: Binary data


Re: [XFree86] Cirrus Logic GD 7548 Woes

2003-06-24 Thread Richard Lynch
Unfortunately you may be pretty much on your own.
the Cirrus driver is pretty much unsupported as noone
who could support it has the HW.
Would it be practical to:
A) Provide SSH root access to somebody @XFree86.org, or
B) Ship somebody the laptop as a loaner
C) ???
Obviously A) is much easier, but I dunno what you can tell without 
seeing the screen, and I don't have a web-cam handy...  Though I do 
need to set one up eventually anyway, so I reckon I could move that 
higher on the priority list.

And, of course, the odds on XFree86 folks having the time to mess 
with this are pretty small unless a lot of people have these things 
and so it's worth it to you to support them.

If you find a solution please let us know.
The spikes and crackles usually appear when the memory bus
is congested.
Sometimes this can get fixed by reducing the pixel clock or
increasing the memory clock.
I'll try that.
Pixel clock is the dot clock right?
What's the memory clock?
 Unfortunately there is support
for chaning the memory clock in this driver.
[no] support right?
Guess I don't really care what a memory clock is then, eh?
Better to know for tomorrow's laptop though. :-)
Setting the option PCI_Retry may also help however the cirrus
driver has no support for this.
We have a similar report about a Cirrus Laguna chip in
our bugzilla.
To be sure I understand -- My only course of action on my own is to 
try successively lower dot clocks in various ModeLines until I find 
one that works.  Right?

Any recommended increments?

Or is there some kind of algorithm for guessing these things, based 
on the one that kinda sorta works?

Or should I attack it right at the minimum:
(==) CIRRUS(0): Min pixel clock is 12 MHz
(--) CIRRUS(0): Max pixel clock is 80 MHz
(II) CIRRUS(0): Clock range:  12.00 to  80.10 MHz
THANKS!!!

--
Like Music?
http://l-i-e.com/artists.htm
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] ModeLine rejected == Default Used

2003-06-24 Thread Richard Lynch
While attempting (and failing) to find a ModeLine that works, I found 
some oddities.

I've put in some very wide ranges for Horizontal and Vertical timings.

The log file shows them as being accepted, near as I can tell.

Various ModeLines I was trying would be rejected (illegal vertical 
timings), but I just figured that was you guys being smart (yay!) 
and saving me from blowing up my monitor or something...

But then I put in one that was rejected, and the SAME numbers end up 
getting used anyway as one of the default settings.

Is that weird, or am I just not understanding something?

I suppose it's possible that ModeLines from idiots (me) would be 
rejected as dangerous while others that got hand-checked somehow 
(?) by geniuses (you guys) would have the same numbers and work as 
defaults, but that seems kind of odd...

XF86Config and XFree86.0.log (revised slightly from previous post) are here:
http://l-i-e.com/xfree86/
It's still very speckly, though the lower dot-clocks seem to make it 
more vertical streaky rather than speckly at least until I move 
the mouse around...

Just what sort of fine-grained numbers should one try in the binary 
search between a ModeLine that is speckly (dot clock too high?) and 
one that is rejected out of hand?  IE, if 15.00 is illegal vertical 
timings and 15.01 is speckly, is 15.005 an option or do I just give 
up at that point?

--
Like Music?
http://l-i-e.com/artists.htm
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] X-ing to other hosts

2003-06-24 Thread News/Info
Psuedo-newb here...

Two hosts mars and jupiter both have linux and XFree installed, both work
fine and without incident.  My objective would be to use just mars and be
able to start an X session on either mars or jupiter without having to go
back and forth between two keyboards.

Suggestions?
How is this done...?
What config is required on jupiter to allow X access from mars?
What config is required on mars to enable me to launch an X session on
either mars or jupiter?

Thanks

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


RE: [XFree86] question on modules

2003-06-24 Thread Mark Vojkovich
On Wed, 25 Jun 2003, Miles Roper wrote:

 would there be any compile time options in host.def you would recommend for
 minimal memory use?
 

  I'm not sure.  Most of the stuff gets built as modules.  Most
of the stuff that's not a module is in the server because somebody
needs it.  Compiler options might help.  Maybe -O makes smaller
binaries than -O2?


Mark.

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


[XFree86] Driver for Trident XP4 m32

2003-06-24 Thread Jaroslav Kautsky
I am looking for a driver for Trident XP4 m32LP in the Toshiba
Portege R100 notebook.

I have looked at http://www.xfree86.org/~alanh/  where some drivers
under development are mentioned. 

I would appreciate information if some suitable driver for the above
mentioned configuration exists and can be tried.
-- 

Kind regards,

Jerry

 - - - - - - - - - - - - -
Dr. Jaroslav Kautsky   Phone :   +61-8-8201 2360
School of Informatics and Engineering  Mobile:   0414 190 109
Flinders UniversityFAX : +61-8-8201 2904
GPO Box 2100 
ADELAIDE SA 5001, Australia email: [EMAIL PROTECTED]
WWW: http://www.mathstat.flinders.edu.au/maths/Staff/kautsky.html

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


[XFree86] CrossCompile XFree86 error?

2003-06-24 Thread Zhao Hongda
I'm trying to crosscompile the XFree 4.2.0, I copy the
xc/config/cf/xf86site.def to host.def, and add
#define CrossCompiling   YES
to the begin of host.def, and I have modified cross.def to correct path.
what should I do ?
Because I need a full-function XF86Server, so I doesn't use the
KDriverXServer.
Hongda Zhao
2003/6/25


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


[XFree86] CrossCompile XF86 error, Please Help

2003-06-24 Thread Zhao Hongda
I'm trying to crosscompile the XFree 4.2.0, I copy the
xc/config/cf/xf86site.def to host.def, and add
#define CrossCompiling   YES
to the begin of host.def, and I have modified cross.def to correct path.

when I try to
make World CROSSCOMPILEDIR=/usr/local/arm/2.95.3/bin
I got the error in xc/config/makedepend
Makefile.proto:889:*** missing separator.stop.

what should I do ?
Because I need a full-function XF86Server, so I doesn't use the
KDriverXServer.
Hongda Zhao
2003/6/25


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