Re: Fwd: 69030 driver

2003-09-12 Thread Egbert Eich
Rishabh Kumar Goel writes:
  Hi!
  Thanks for your suggestion. I tried that but nothing worked out.
  i am working on NetBSD. So i mapped the memory from 0xA to 0xB. From 
  this memory mapped I tried to read a single byte from the device and also the 
  word but of no use. I get only 0xFF.
  
  My first aim is to get the Green Light(LED) on the monitor to glow.
  How to get that thing.
  

To explain to you every step that's required to make this happen
would exceed the what I can provide to you here considering my limited
time. There is a fully functional driver for this chipset in XFree86.

Why don't you have a look there? It performs every step required
to make happen what you want. We also have code to talk to the VGA
memory aperture.

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


Re: Touchscreen input driver

2003-09-12 Thread Bryan W. Headley
Bodo Bimboese wrote:
Hello All,

Please apologize if this request is wrongly placed. I'm not familiar with programming, just a keen user. I'd be thankful, if anybody could point me into the right direction.

I'm using X (4.3.0) on Linux, and I'm struggling to get a touchscreen (-input) device to work. It's not one of those popular manufacturers whose driver is included with 4.3.0

Things I've found out yet:
manufacturer of the 12 TFT monitor with touchscreen is a no-name Asia-based. The 
interface is RS-232 with 9-pin serial connector and a PS/2 dongle-style plug (the mouse 
plugs into the back of this plug).
Touchpanel manufacturer is a company called Hantouch
Serial driver PCB manufacturer is a company called Sena
(both companies offer downloads, but I didn't found any for X)
The monitor is marketed under the label Glancetron in Europe
(They only offer Win drivers unfortunately)
Since I haven't found any *nix drivers on the net, I've tested all input drivers which 
came with X.
None of the touchscreen drivers work, some cause X to abort.
The only reaction I get is from the DigitalEdge tablet driver, which causes a 'click' 
in the bottom right corner of the screen, no matter on which area I touch it.
My question is:
Would it be an easy task to modify an existing driver to get the touch element to work?
I've had a look at the Elotouch driver sources, and it doesn't look huge. I have no 
idea about programming, but I'm motivated to take the challenge.
Sure, but you need to know what the incoming packets look like. Have you 
dropped a line to Hantouch? If you have, and they're unwilling to help, 
you probably can track RS-232 communications between the touchscreen and 
the Windows driver...

Good luck!



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


Re: [Fwd: Re: Fwd: Vblank support in kernel and X server]

2003-09-12 Thread Michel Dänzer
On Thu, 2003-09-11 at 16:55, Alan Cox wrote: 
 On Mer, 2003-09-10 at 23:21, Michel Dnzer wrote:
  On Wed, 2003-09-10 at 19:00, Jim Gettys wrote:
   Here's Alan Cox's mail about it.  In 2.4.20-ac1.
  
  Won't this conflict with the DRM vblank interrupt handling? (I've also
  seen framebuffer device patches for this...)
 
 Thats a matter for the X server driver modules. If DRM provides it then
 don't ask for it from the vblank code. In the case of framebuffer the
 same can be said.

Nothing prevents one app from using the DRM interface, another the
framebuffer device and yet another the generic vblank one, and at most
one of them will work as expected in that case.


-- 
Earthling Michel Dnzer   \  Debian (powerpc), XFree86 and DRI developer
Software libre enthusiast  \ http://svcs.affero.net/rm.php?r=daenzer

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


Re: setjmp needs fixing again, here's the issues

2003-09-12 Thread David Dawes
On Wed, Sep 10, 2003 at 02:17:50PM -0700, John Meacham wrote:
On Wed, Sep 10, 2003 at 03:37:57PM -0400, John Dennis wrote:
 1) It may be hard to know the alignment requirements for all OS's and
 architectures (thats part of the reason we have system header
 files). We could guess 16 byte is sufficient. But even if we got the
 alignment requirement right how do we specify the alignment requirement
 to the compiler in a portable way such that it will build on a variety
 of systems and compilers? My understanding is that compiler alignment
 directives are not portable (e.g. not part of ANSI C). Are we
 comfortable picking one or two common alignment directives and
 conditionally compiling with the right one?

Since we already have a jmp_buf which is much larger than necisarry, all
that is needed is to take the first offset into it which is properly
aligned for the given architecture and use that as the system jmp_buf.
when the compiler can guarentee the proper alignment this becomes a
'nop', otherwise we waste at most alignment - sizeof(intmax_t) - 1
bytes. not a big deal. best of all, this can be implemented portably
quite easily.

The attached patch is one way this could be done.  I've set the alignment
higher than it probably needs to be.

David
-- 
David Dawes X-Oz Technologies
www.XFree86.org/~dawes  www.x-oz.com
Index: loader/xf86sym.c
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/loader/xf86sym.c,v
retrieving revision 1.235
diff -u -r1.235 xf86sym.c
--- loader/xf86sym.c24 Aug 2003 19:58:05 -  1.235
+++ loader/xf86sym.c12 Sep 2003 15:07:52 -
@@ -907,6 +907,7 @@
SYMFUNC(xf86setjmp1)
 #endif
SYMFUNCALIAS(xf86longjmp,longjmp)
+   SYMFUNCALIAS(xf86longjmp0,longjmp)
SYMFUNC(xf86getjmptype)
SYMFUNC(xf86setjmp1_arg2)
SYMFUNC(xf86setjmperror)
Index: os-support/xf86_ansic.h
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/os-support/xf86_ansic.h,v
retrieving revision 3.51
diff -u -r3.51 xf86_ansic.h
--- os-support/xf86_ansic.h 24 Aug 2003 17:37:03 -  3.51
+++ os-support/xf86_ansic.h 12 Sep 2003 15:15:36 -
@@ -312,10 +312,19 @@
 extern int xf86setjmperror(xf86jmp_buf env);
 extern int xf86getjmptype(void);
 extern void xf86longjmp(xf86jmp_buf env, int val);
+extern void xf86longjmp0(xf86jmp_buf env, int val);
+
+#define jb_align(env) \
+   ((int *)(unsigned long)(env)) + JMP_BUF_ALIGN - 1) / \
+   JMP_BUF_ALIGN) * JMP_BUF_ALIGN))
+
 #define xf86setjmp_macro(env) \
-   (xf86getjmptype() == 0 ? xf86setjmp0((env)) : \
-   (xf86getjmptype() == 1 ? xf86setjmp1((env), xf86setjmp1_arg2()) : \
-   xf86setjmperror((env
+   (xf86getjmptype() == 0 ? xf86setjmp0(jb_align(env)) : \
+   (xf86getjmptype() == 1 ? xf86setjmp1(jb_align(env), xf86setjmp1_arg2()) : \
+   xf86setjmperror(jb_align(env
+
+#define xf86longjmp_macro(env, val) \
+   xf86longjmp(jb_align(env), val)
 
 #else /* XFree86LOADER || NEED_XF86_PROTOTYPES */
 #include unistd.h
Index: os-support/xf86_libc.h
===
RCS file: /home/x-cvs/xc/programs/Xserver/hw/xfree86/os-support/xf86_libc.h,v
retrieving revision 3.57
diff -u -r3.57 xf86_libc.h
--- os-support/xf86_libc.h  24 Aug 2003 17:37:03 -  3.57
+++ os-support/xf86_libc.h  12 Sep 2003 15:19:33 -
@@ -95,7 +95,9 @@
 typedef int xf86key_t;
 
 /* setjmp/longjmp */
-typedef int xf86jmp_buf[1024];
+#define JMP_BUF_SIZE 4096
+#define JMP_BUF_ALIGN 4096
+typedef int xf86jmp_buf[(JMP_BUF_SIZE + JMP_BUF_ALIGN) / sizeof(int)];
 
 /* for setvbuf */
 #define XF86_IONBF1
@@ -688,7 +690,7 @@
 #undef setjmp
 #define setjmp(a)   xf86setjmp_macro(a)
 #undef longjmp
-#define longjmp(a,b)xf86longjmp(a,b) 
+#define longjmp(a,b)xf86longjmp_macro(a,b) 
 #undef jmp_buf
 #define jmp_buf xf86jmp_buf
 #endif


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Wolle
On Thursday 11 September 2003 19:48, Mark Vojkovich wrote:
 but the hotkey switching still isn't likely to work.  NVIDIA's binary
 Linux drivers probably work better in this regards, since there is
 a kernel module there.

I can live without hotkeying. My Problem is the never working CRT in X. Maybe 
I have a problem in understanding the XF86Config:

I define my LCD in a monitor section
I define my CRT in a 2nd monitor section

I define my Chipset in a device section

I define how to use the monitors connected to the device in a screen section
(both monitors in one section? maybe, because they must use same color depth. 
On the other hand XFree claims about trying to use the device twice, if I 
define two screen sections)

Now to enable them:
The 'man XF86Config' in 'DEVICE SECTION' says:
   Screen  number
  This option is mandatory for cards where a single PCI entity can
  drive more than one display (i.e., multiple CRTCs sharing a sin-
  gle  graphics accelerator and video memory).  One Device section
  is required for each head, and this parameter  determines  which
  head  each  of the Device sections applies to.  The legal values
  of number range from 0 to one less  than  the  total  number  of
  heads  per entity.  Most drivers require that the primary screen
  (0) be present.
Looks good, this seems to be my case.

My first question is:
Has the name 'Screen' in this part something to do with the 'screen section', 
or is it simply the same word for two different things?

The last sentence in the man page seems to be true for my driver. Screen 1 
results in:
Device(s) detected, but none matches those in the config file.
No screens found
The same happenes, if I define 'Screen 0' and 'Screen 1' in the device 
section. At this point I get totally lost. Does this mean, the nv driver is 
not able to enable the lines to the external VGA port?

Please tell me, where I think wrong.

I played a bit around with:
   Option CrtcNumber 0
   Option FlatPanel 0
and modified the parameters, but I had no luck with it. Is there any 
documentation? The man page says nothing about this.

Thanks for help
Wolfgang


   Mark.

 On Thu, 11 Sep 2003, Wolle wrote:
  Hi,
 
  I have a Medion MD6100 notebook running SuSE Linux 8.2 XFree 4.3.0 (V
  11.0) NVidia GeForce4 388 Go graphic chip.
 
  The notebook has an external VGA port. I can switch internal / external /
  both by keyboard (FN-F3). This works on console, but not in X. In X,
  there is a signal on the VGA port, which causes my monitor to stay on,
  but it is black all the time. The function key works in X. It switches
  the LCD display off, when I select 'external'.
 
  Can I have my external VGA port working in X as well?
 
  regards
  Wolfgang

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Dan Mergens
The way I have enabled my laptop setup is to switch XF86Config files on 
startup. The following is a helpful link for doing that:

http://www.mit.edu/~matthew1/c840/c840_setup.html

Wolle wrote:

On Thursday 11 September 2003 19:48, Mark Vojkovich wrote:
 

but the hotkey switching still isn't likely to work.  NVIDIA's binary
Linux drivers probably work better in this regards, since there is
a kernel module there.
   

I can live without hotkeying. My Problem is the never working CRT in X. Maybe 
I have a problem in understanding the XF86Config:

I define my LCD in a monitor section
I define my CRT in a 2nd monitor section
I define my Chipset in a device section

I define how to use the monitors connected to the device in a screen section
(both monitors in one section? maybe, because they must use same color depth. 
On the other hand XFree claims about trying to use the device twice, if I 
define two screen sections)

Now to enable them:
The 'man XF86Config' in 'DEVICE SECTION' says:
  Screen  number
 This option is mandatory for cards where a single PCI entity can
 drive more than one display (i.e., multiple CRTCs sharing a sin-
 gle  graphics accelerator and video memory).  One Device section
 is required for each head, and this parameter  determines  which
 head  each  of the Device sections applies to.  The legal values
 of number range from 0 to one less  than  the  total  number  of
 heads  per entity.  Most drivers require that the primary screen
 (0) be present.
Looks good, this seems to be my case.
My first question is:
Has the name 'Screen' in this part something to do with the 'screen section', 
or is it simply the same word for two different things?

The last sentence in the man page seems to be true for my driver. Screen 1 
results in:
Device(s) detected, but none matches those in the config file.
No screens found
The same happenes, if I define 'Screen 0' and 'Screen 1' in the device 
section. At this point I get totally lost. Does this mean, the nv driver is 
not able to enable the lines to the external VGA port?

Please tell me, where I think wrong.

I played a bit around with:
 

 Option CrtcNumber 0
 Option FlatPanel 0
   

and modified the parameters, but I had no luck with it. Is there any 
documentation? The man page says nothing about this.

Thanks for help
Wolfgang
 

			Mark.

On Thu, 11 Sep 2003, Wolle wrote:
   

Hi,

I have a Medion MD6100 notebook running SuSE Linux 8.2 XFree 4.3.0 (V
11.0) NVidia GeForce4 388 Go graphic chip.
The notebook has an external VGA port. I can switch internal / external /
both by keyboard (FN-F3). This works on console, but not in X. In X,
there is a signal on the VGA port, which causes my monitor to stay on,
but it is black all the time. The function key works in X. It switches
the LCD display off, when I select 'external'.
Can I have my external VGA port working in X as well?

regards
Wolfgang
 

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

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Wolle
On Friday 12 September 2003 09:14, Dan Mergens wrote:
 The way I have enabled my laptop setup is to switch XF86Config files on
 startup. The following is a helpful link for doing that:

 http://www.mit.edu/~matthew1/c840/c840_setup.html

Your script says:
 echo Laptop is in Dockingstation ...
and then it pretends:
 echo Disabling internal LCD Display for X11
but it doesn't switch anything but the parameters. Switching modelines, color 
depth etc isn't the problem at all.

My problem isto have no useful output from my external VGA port at all. I 
think you are lucky to have your external output on by default, or switched 
by 'hardware', when connecting to your docking station. I do not have a 
dockung station. I'm satisfied with my external keyboard, external mouse and, 
if it's going to work, external CRT.

Thanks anyway
Wolle

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Dan Mergens
It's not my script. I actually rewrote the provided script in csh so I 
could understand it.

In order to get video output to your external port, you'll need to use 
the hotkey (it's Fn-F8 on my Dell Latitude). You must do this in text 
mode, not graphics mode. If you don't have text displayed after you 
switch from panel display, there must be something wrong with your laptop.

Once you have text displayed on your external monitor you can configure 
XFree86 as described in the page I sent you.

Wolle wrote:

On Friday 12 September 2003 09:14, Dan Mergens wrote:
 

The way I have enabled my laptop setup is to switch XF86Config files on
startup. The following is a helpful link for doing that:
http://www.mit.edu/~matthew1/c840/c840_setup.html
   

Your script says:
 

echo Laptop is in Dockingstation ...
   

and then it pretends:
 

echo Disabling internal LCD Display for X11
   

but it doesn't switch anything but the parameters. Switching modelines, color 
depth etc isn't the problem at all.

My problem isto have no useful output from my external VGA port at all. I 
think you are lucky to have your external output on by default, or switched 
by 'hardware', when connecting to your docking station. I do not have a 
dockung station. I'm satisfied with my external keyboard, external mouse and, 
if it's going to work, external CRT.

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

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Wolle
On Friday 12 September 2003 10:21, Dan Mergens wrote:
 In order to get video output to your external port, you'll need to use
 the hotkey (it's Fn-F8 on my Dell Latitude). You must do this in text
 mode, not graphics mode.

I do so.

 If you don't have text displayed after you
 switch from panel display, there must be something wrong with your laptop.

I can't believe this. If I have the output to both in text mode and 'startx', 
the CRT goes black. XFree switches it off (I'm rather sure). Maybe a driver 
bug?

 Once you have text displayed on your external monitor you can configure
 XFree86 as described in the page I sent you.

Ack, but I don't reach that point, where it is useful to define different 
modes for CRT and LCD.

Wolfgang

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Dan Mergens
It sounds like you're trying to run the CRT and LCD panel 
simultaneously. I'm not sure if you'll be able to do that. You should 
try configuring the external display with video directed only to the 
CRT, not the LCD panel display. The problem is that your panel and CRT 
use very specific sync rates which are most likely not the same.

Are you using NVidia's latest driver?

Wolle wrote:

On Friday 12 September 2003 10:21, Dan Mergens wrote:
 

In order to get video output to your external port, you'll need to use
the hotkey (it's Fn-F8 on my Dell Latitude). You must do this in text
mode, not graphics mode.
   

I do so.

 

If you don't have text displayed after you
switch from panel display, there must be something wrong with your laptop.
   

I can't believe this. If I have the output to both in text mode and 'startx', 
the CRT goes black. XFree switches it off (I'm rather sure). Maybe a driver 
bug?

 

Once you have text displayed on your external monitor you can configure
XFree86 as described in the page I sent you.
   

Ack, but I don't reach that point, where it is useful to define different 
modes for CRT and LCD.

Wolfgang

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

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


Re: [XFree86] Problem.

2003-09-12 Thread William Gallafent
On Thu, 11 Sep 2003, David Dawes wrote:

 No, the keywords (and most other things) are not case
 sensitive.  The error message implies that a Monitor section
 contains a SubSection keyword.  That's invalid because there
 are no subsections to Monitor sections.

I stand corrected ... I'm so used to everything being case
sensitive I assumed xf86config was! :)

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


[XFree86] PROBLEM WITH THE XSERVER

2003-09-12 Thread Gaelle Begue
Could anyone look at the attachment I'm sending and see what the problem is and how 
can I fix it.
I badly need linux for my student work so please be quick...
Thx, 
Ginie


XFree86.0.log
Description: Binary data


Re: [XFree86] PROBLEM WITH THE XSERVER

2003-09-12 Thread William Gallafent
First, might I draw your attention to the following line at the
top of the log:

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/)

Yours is more than 19 months old.

On Fri, 12 Sep 2003, Gaelle Begue wrote:

 Could anyone look at the attachment I'm sending and see what
 the problem is and how can I fix it.

This has to be the most F.A.Q. in XFree86 history!

Start a font server such as xfs before running XFree86.

 I badly need linux for my student work so please be quick...

It would have been quicker to google around for the error
messages. And asking people to be quick in mailing lists tends
to have the opposite of the desired effect.

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Wolle
On Friday 12 September 2003 11:09, Dan Mergens wrote:
 It sounds like you're trying to run the CRT and LCD panel
 simultaneously. I'm not sure if you'll be able to do that. 

Yes, I tried so, but I don't insist to do it this way.

 You should
 try configuring the external display with video directed only to the
 CRT, not the LCD panel display. The problem is that your panel and CRT
 use very specific sync rates which are most likely not the same.

This implies, I need an option or whatever to select the monitor. Everything I 
tried didn' t switch the output line to external.

 Are you using NVidia's latest driver?

I use XFree's driver. NVidia's driver fails to install after installing a 
kernel security patch from suse. I insist on having security patches 
installed.

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


[XFree86] Your Electronic Job Newspaper - 09-12

2003-09-12 Thread JobNews
Electronic Job Newspaper 09/12/03

Dear Carnie,
 
Here is the job news you subscribed on 09/11/03. Please DO NOT reply to this email
since it's an unattended mailbox. Please scroll down this page to read your job leads.

To unsubscribe, simply click on:
http://mygeoweb.com/[EMAIL PROTECTED]


You have provided us the following profile:

  Name: Carnie P. Bragg III
  Email: [EMAIL PROTECTED]
  Job Title: manager
  Job Keywords: accounting
  Job Location: NJ--Trenton
  Delivery Frequency: Every Day

  Subscription Date: 09/11/03
  Confirmed from IP: 64.12.96.137


* CONTENTS *

  * Links for Unsubscribe, Support, Changing Profile, etc.
  * Public Access Job Leads
  * Reserved VIP Job Leads
  * Career News from Internet
  * Job Hunting Tips
  * Employment Books
  * Hot Deals of the Day
  * Search Employers near You


* Links for Unsubscribe, Support, Changing Profile, etc. *

To unsubscribe, simply click on:
http://mygeoweb.com/[EMAIL PROTECTED]

To get technical support, please click on:
http://www.geowebservices.com/[EMAIL PROTECTED]CAT=JN

To read your latest job leads online, please go to our main site:
http://ww3.mygeoweb.com/[EMAIL PROTECTED]

or our mirror site (if you have trouble to access any link provided in this email):
http://job-e.com/[EMAIL PROTECTED]

To search employers near you and find out who are hiring, please click:
http://ww3.mygeoweb.com/geo/srch_emp.asp

To batch apply 1000 jobs in one click, check out our resume broadcasting service at:
http://mygeoweb.com/store_res.asp

To change your profile, please follow these steps:
1. Logon at:
http://www.geowebservices.com/wn_logon.html
2. Click Update My Profile in the upper left corner.
3. Change your Job Title, Keyword, ZIP Code,  Job Location Preference, etc.
Please note that under Job Location Preference field,
a. If you select a metro city in the list or Use_My_ZIP_Code, jobs closer to 
your 
target city have higher priority.
b. If you select a State, the best matched jobs within the state level have higher 
priority.
c. If you select US, jobs are matched without location consideration.
4. You can change the delivery frequency as: Every Day, Twice A Week, Once A Week or 
Unsubscribe.
5. Click Update button.


* Public Access Job Leads - Sponsored By Employers *
The following leads have been generated based on a wide search of your criteria.
Our search engine will expand the search area if no local employers found.

Documentum Support - AJAY International --NJ--
  http://mygeoweb.com/b.asp?f=h8rwj[EMAIL PROTECTED]

Corporate Sales Account Executive - Wings Tours Inc.  --MD--Baltimore--
  http://mygeoweb.com/b.asp?f=s7lro0[EMAIL PROTECTED]

Inside Sales Rep - Marastar Communications --PA--Philadelphia--
  http://mygeoweb.com/b.asp?f=s7toej[EMAIL PROTECTED]

Vice President Sales - Executive Image --CA--Irvine--
  http://mygeoweb.com/b.asp?f=s8kn9a[EMAIL PROTECTED]

Mechanical Design Engineer  (3-D CAD design) - Inductoheat, Inc., An Inductotherm 
Industries Company --MI--Detroit--
  http://mygeoweb.com/b.asp?f=s7hppy[EMAIL PROTECTED]

CADASTRAL INDUSTRY SOLUTIONS MANAGER - ESRI --CA--Riverside--
  http://mygeoweb.com/b.asp?f=s95oz7[EMAIL PROTECTED]


* Reserved VIP Job Leads - Sponsored By Job Seekers *
We have found the following new openings for our Active VIP Subscribers.
This service is supported by our VIP subscribers. The search is done
through the premium services using the most advanced artificial intelligence,
fuzzy logic and GIS technologies.

Upgrading your account to Active VIP status is optional.

Please DO NOT click on the reserved links if you are not interested in 
supporting our premium services.


Construction Project Manager --NJ--Trenton 09/12/03
  http://mygeoweb.com/j.asp?f=09123001[EMAIL PROTECTED]

Treasury Manager Nyse --NJ--Trenton 09/07/03
  http://mygeoweb.com/j.asp?f=09071112[EMAIL PROTECTED]

Area Sales Manager --NJ--Trenton 08/15/03
  http://mygeoweb.com/j.asp?f=08156523[EMAIL PROTECTED]

Radiology Technical Manager --NJ--Trenton 08/29/03
  http://mygeoweb.com/j.asp?f=08293523[EMAIL PROTECTED]

Center Manager --NJ--Trenton 08/21/03
  http://mygeoweb.com/j.asp?f=08215393[EMAIL PROTECTED]

Project Controller Program Manager --NJ--Trenton 09/08/03
  http://mygeoweb.com/j.asp?f=09085516[EMAIL PROTECTED]

Construction Project Manager $60,000 Year --NJ--Trenton 09/12/03
  http://mygeoweb.com/j.asp?f=091211790[EMAIL PROTECTED]

Workflow Manager --NJ--Trenton 09/11/03
  http://mygeoweb.com/j.asp?f=091121119[EMAIL PROTECTED]

Construction Manager --NJ--Trenton 09/09/03
  http://mygeoweb.com/j.asp?f=0909720[EMAIL PROTECTED]

Construction Manager #988344 --NJ--Trenton 08/22/03
  http://mygeoweb.com/j.asp?f=08223015[EMAIL PROTECTED]

Sr Project Manager #850222 --NJ--Trenton 08/22/03
  http://mygeoweb.com/j.asp?f=08222631[EMAIL PROTECTED]

Nursing Field Case Manager --NJ--Trenton 08/22/03
  http://mygeoweb.com/j.asp?f=0822254[EMAIL PROTECTED]

Program Manager 

Re: [XFree86] Trident Cyberblade e4 and Xv bug?

2003-09-12 Thread xfree
I am using a dist with a later version of glibc so that did not work, but i
compiled snapshot 4.4.99.11 and it seems to work better now, i will test it more
in the weekend, but today i'we had no problems.

Thanks for the help!

/Henrik

On Thu, Sep 11, 2003 at 10:37:16PM +0100, Alan Hourihane wrote:
 Try the drivers provided here 
 
 http://www.xfree86.org/~alanh
 
 Alan.
 
 On Thu, Sep 11, 2003 at 11:05:48PM +0200, [EMAIL PROTECTED] wrote:
  Fellow XFree users, and developers!
  
  I am in need of a litte assistance, i am using a Toshiba 7200CT laptop with
  a Trident Cyberblade e4 (9540), and it all works great apart from one thing:
  When playing video with xine or mplayer, after a few times it stops working and
  only show me a static garbage picture, it does not even help to restart the
  X server, i have to reboot(even cut power sometimes) the laptop. It only seams 
  to happend when i begin to play(or when i stopped last time?) a video, it have
  never happend during playback.
  
  Here are a few pictures of the problem:
  http://www.grilla.nu/xine_win.jpg
  http://www.grilla.nu/xine_fs.jpg
  http://www.grilla.nu/mplayer_qt.jpg
  http://www.grilla.nu/mplayer_mpg.jpg
  
  I am using Xfree86 Version 4.3.0.
  
  Does anyone have a clue what might be causing this, it would be great to have
  it fixed, the driver works so good until this happends...
  
  Thanks for any assistance.
  Regards
  Henrik
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] 3D support for S3 prosavage DDR driver ????

2003-09-12 Thread Alex Deucher
There is some existing savage 3D code from the utah-glx project, and
S3/VIA released some code as well.  right now it needs to be cleaned up
and integrated into the DRI tree.  It may or may not be ready in time
for 4.4 or whatever the next release will be.

Alex

--

Hi, ( excuse my english pls)

I have a S3 prosavage DDR, with no 3D acceleration by now, my question
is:
In the new vertion of xfree (4.4 i think ) is going to be 3D support
for
this card ??? Is going to be 3D support for 4.3 ???

I had see some fixed in the driver from cvs snapshot but i`m not sure
if
thats mean that the new driver with 3D support is ready.

Thanks and regards
Marcel Mourguiart M

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread amerson
I have an Apple Cinema 20 display running on windows. I tried installing 
RedHat Linux 8.0, got the newest drivers from NVIDIA. The screen's optimal 
resolution is 1680x1050 but right now, it does a stretched 1280x1024. In 
the XFree86Config file, the graphics card still has a driver of vesa, 
chanigng it to nv causes the display to not work at all.

any thoughts on how I can tweak XFree86 to accept this resolution?

thanks
help greatly appreciated
amerson
Amerson H. Lin  MIT '05  EECS
Simmons 632 Cambridge, MA 02139
617-2256692 

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


Re: [XFree86] Lacking organization

2003-09-12 Thread Egbert Eich
Mark Vojkovich writes:
 There was a group working on a FAQ, but I'm not sure what the
  status on that is.   We could sure use some efforts to keep the
  level of redundant questions down.  We get too many i845G doesn't
  work, too many fixed font questions, etc...
  
  

The XFree86 merely contains the same documentation about configuration
that is also in your system when you install X. 
These are the man pages for the drivers, the Xservers and the config
files, the READMEs and the release notes.
It isn't really helpful to find any information on troubleshooting.
I've started a Wiki with an FAQ at: http://xfree86.linuxwiki.org.
Despite the name this to cover XFree86 on all platforms. Therefore
I don't understand why people are whining about not having an FAQ.

This FAQ already addresses a lot of the questions that are asked the
most. If anyone would like to help me filling it with more useful
information please feel free to do so. It is not required that you
submit your contributions anywhere. It is a Wiki, you can just add
it right in place.

Egbert.


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


[XFree86] X Server crash

2003-09-12 Thread danthe
_XSERVTransSocketOpen: socket() failed for tcp
_XSERVTransSocketOpenCOTSServer: Unable to open socket for tcp
_XSERVTransOpen: transport open failed for tcp/danhome.kesmarki.hu:0
_XSERVTransMakeAllCOTSServerListeners: failed to open listener for tcp

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.21 i686 [ELF] 
Build Date: 21 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.0.log, Time: Fri Sep 12 19:58:46 2003
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device ATI Radeon
(**) |--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 7
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(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 = 0x800082c0, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,3189 card 1458,5000 rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b168 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:0a:0: chip 1113,1216 card 10b8,1255 rev 11 class 02,00,00 hdr 00
(II) PCI: 00:10:0: chip 1106,3038 card 1458,5004 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:1: chip 1106,3038 card 1458,5004 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:2: chip 1106,3038 card 1458,5004 rev 80 class 0c,03,00 hdr 80
(II) PCI: 00:10:3: chip 1106,3104 card 1458,5004 rev 82 class 0c,03,20 hdr 00
(II) PCI: 00:11:0: chip 1106,3177 card 1458,5001 rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card 1458,5002 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card 1458,a002 rev 50 class 04,01,00 hdr 00
(II) PCI: 00:13:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4966 card 1458,4010 rev 01 class 03,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) 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 - 0xc4ff (0x100) IX[B]
[2] -1  0   0xc800 - 0xc8ff (0x100) IX[B]
[3] -1  0   0xcc00 - 0xccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xe000 - 0xe1ff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd800 - 0xdfff (0x800) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) ATI Technologies Inc Radeon R250 If [Radeon 9000] rev 1, Mem @ 
0xd800/27, 0xe100/16, I/O @ 0xc000/8
(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   0x000f - 0x000f (0x1) MX[B]
[3] -1  

[XFree86] Re: THX

2003-09-12 Thread Dan Mergens
Your graphics card and monitor must be able to support those modes. 
Also, the video card probably uses different rates (vertical refresh and 
horizontal sync) for each mode. You really should try to upgrade the 
driver and use XFree86 to configure your X for you.

But again, if you want to risk it, you can try setting your Modes line to:

Modes 640x480 800x600 1024x768

and use the Ctrl-Alt-Num+ (The plus key on the numeric keypad - you must 
have the NumLock set) to tab through the different modes. Try with 16 
bit first and then 24.

ATTEMPTING TO SET THESE VALUES BY HAND MAY RESULT IN PERMANENT DAMAGE TO 
YOUR MONITOR - which is why I recommend upgrading your driver and using 
XFree86 to configure X.

Ahmad Saiful wrote:

i follow your instruction and it's work my KDE running well on Depth  
16
   Modes   640x480
any suggestion if i want 2 use depth 24 and Modes 1024x768 800x600

thx 4 help

-saiful-



 

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Mark Vojkovich
On Fri, 12 Sep 2003, Wolle wrote:

 On Thursday 11 September 2003 19:48, Mark Vojkovich wrote:
  but the hotkey switching still isn't likely to work.  NVIDIA's binary
  Linux drivers probably work better in this regards, since there is
  a kernel module there.
 
 I can live without hotkeying. My Problem is the never working CRT in X. Maybe 
 I have a problem in understanding the XF86Config:
 
 I define my LCD in a monitor section
 I define my CRT in a 2nd monitor section
 
 I define my Chipset in a device section
 
 I define how to use the monitors connected to the device in a screen section
 (both monitors in one section? maybe, because they must use same color depth. 
 On the other hand XFree claims about trying to use the device twice, if I 
 define two screen sections)
 
 Now to enable them:
 The 'man XF86Config' in 'DEVICE SECTION' says:
Screen  number
   This option is mandatory for cards where a single PCI entity can
   drive more than one display (i.e., multiple CRTCs sharing a sin-
   gle  graphics accelerator and video memory).  One Device section
   is required for each head, and this parameter  determines  which
   head  each  of the Device sections applies to.  The legal values
   of number range from 0 to one less  than  the  total  number  of
   heads  per entity.  Most drivers require that the primary screen
   (0) be present.
 Looks good, this seems to be my case.

   That is not your case, you are only using one display.  You should 
not have a Screen number in the device section.

 
 I played a bit around with:
Option CrtcNumber 0
Option FlatPanel 0
 and modified the parameters, but I had no luck with it. Is there any 
 documentation? The man page says nothing about this.

   Those are in the man page.  Perhaps your man pages aren't up to date.
You are using 4.3.0 right?

   In the simplest case you just take a working config that uses
the flat panel and add those options.  CrtcNumber specifies which
output to use.  I think 1 ends up being the panel and 0 is the
external connector on most laptops.  Setting FlatPanel to 0 tells
it to ignore that it sees a flat panel connected and to treat it
like a CRT.


Mark.

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


Re: [XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread Dan Mergens
The latest NVidia driver should be nvidia not nv. Check nvidia.com 
again and download and get there latest driver. They have clear 
instructions on how to proceed, including a line regarding changing from 
vesa or nv to nvidia.

amerson wrote:

I have an Apple Cinema 20 display running on windows. I tried 
installing RedHat Linux 8.0, got the newest drivers from NVIDIA. The 
screen's optimal resolution is 1680x1050 but right now, it does a 
stretched 1280x1024. In the XFree86Config file, the graphics card 
still has a driver of vesa, chanigng it to nv causes the display 
to not work at all.

any thoughts on how I can tweak XFree86 to accept this resolution?

thanks
help greatly appreciated
amerson
Amerson H. Lin  MIT '05  EECS
Simmons 632 Cambridge, MA 02139
617-2256692
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


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


Re: [XFree86] Lacking organization

2003-09-12 Thread Dan Mergens
Egbert,

There is enough information out there if you're an experience google 
search and have a day to search through all the bad information and 
unanswered questions. What is really needed is clear organization and 
links to the helpful sites such as the one you mentioned.

Egbert Eich wrote:

Mark Vojkovich writes:
There was a group working on a FAQ, but I'm not sure what the
 status on that is.   We could sure use some efforts to keep the
 level of redundant questions down.  We get too many i845G doesn't
 work, too many fixed font questions, etc...
 
 

The XFree86 merely contains the same documentation about configuration
that is also in your system when you install X. 
These are the man pages for the drivers, the Xservers and the config
files, the READMEs and the release notes.
It isn't really helpful to find any information on troubleshooting.
I've started a Wiki with an FAQ at: http://xfree86.linuxwiki.org.
Despite the name this to cover XFree86 on all platforms. Therefore
I don't understand why people are whining about not having an FAQ.

This FAQ already addresses a lot of the questions that are asked the
most. If anyone would like to help me filling it with more useful
information please feel free to do so. It is not required that you
submit your contributions anywhere. It is a Wiki, you can just add
it right in place.
Egbert.

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

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


Re: [XFree86] No signal to external VGA port

2003-09-12 Thread Dan Mergens
Get used to incompatibility problems if you insist on installing the 
latest security patches. I've worked with government facilities with 
this paranoid delusion and they consistently break simple things such as 
regular expression matching. I think Mark has so more productive 
comments on your situation, although using nvidia's latest driver is 
preferable. Maybe you can submit a bug to nvidia.

Good luck.

Are you using NVidia's latest driver?
   

I use XFree's driver. NVidia's driver fails to install after installing a 
kernel security patch from suse. I insist on having security patches 
installed.

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

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


Re: [XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread Mark Vojkovich
On Fri, 12 Sep 2003, amerson wrote:

 I have an Apple Cinema 20 display running on windows. I tried installing 
 RedHat Linux 8.0, got the newest drivers from NVIDIA. The screen's optimal 
 resolution is 1680x1050 but right now, it does a stretched 1280x1024. In 
 the XFree86Config file, the graphics card still has a driver of vesa, 
 chanigng it to nv causes the display to not work at all.

   The nv driver didn't support flat panels until XFree86 4.3.0,
and the vesa driver can only do canned standard modes.  I think RH 8 
only has 4.2.0 or 4.2.1.

 
 any thoughts on how I can tweak XFree86 to accept this resolution?

You either need to upgrade to 4.3.0 (or newer) where the nv 
driver will support flat panels, or you should use NVIDIA's binary
drivers.

   For either you'll need to specify a custom modeline like:

  Modeline 1680x1050  147.14  1680 1784 1968 2256  1050 1051 1054 1087 

   since XFree86 doesn't have any builtin 1680x1050 modes.

Mark.

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


Re: [XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread Dan Mergens
Since you are in the process of a RedHat 8 install anyway, it would be 
worth it to install RedHat 9 instead. The install process is better than 
previous versions, although you'll still have to install the new nvidia 
driver and customize your XF86Config file as Mark instructed.

Mark Vojkovich wrote:

On Fri, 12 Sep 2003, amerson wrote:

 

I have an Apple Cinema 20 display running on windows. I tried installing 
RedHat Linux 8.0, got the newest drivers from NVIDIA. The screen's optimal 
resolution is 1680x1050 but right now, it does a stretched 1280x1024. In 
the XFree86Config file, the graphics card still has a driver of vesa, 
chanigng it to nv causes the display to not work at all.
   

  The nv driver didn't support flat panels until XFree86 4.3.0,
and the vesa driver can only do canned standard modes.  I think RH 8 
only has 4.2.0 or 4.2.1.

 

any thoughts on how I can tweak XFree86 to accept this resolution?
   

   You either need to upgrade to 4.3.0 (or newer) where the nv 
driver will support flat panels, or you should use NVIDIA's binary
drivers.

  For either you'll need to specify a custom modeline like:

 Modeline 1680x1050  147.14  1680 1784 1968 2256  1050 1051 1054 1087 

  since XFree86 doesn't have any builtin 1680x1050 modes.

			Mark.

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

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


[XFree86] Resume from Mechanical, Civil Structural Designer

2003-09-12 Thread CAD Engineer
  RIC  M'SIE

San Jose, CA 95131   USA

  Tel (408)  482-2840   [EMAIL PROTECTED]


OBJECTIVE:  STRUCTURAL   MECHANICAL  DESIGNER

CIVIL, ARCHITECTURAL, TRANSPORTATION  CAD Operator 

EXPERIENCE:

89 - present 

  DESIGNER, ENGINEER,  CAD MANAGER; 

Engineering  Design Service, Project Management  Development.
Preparing technical documentation, calculations, layouts drawings 
propositions. CAD Management and Operations, drafting  redesigning.

Intergraph, MicroStation,  Autodesk, ACAD, Win, Net, Softdesk Mgmt
Civil, Bridges and Structural Design, Plans, Mapping, Detail Freeway
 Roadway, data translation  inserting. Script  CAD automation.

Geological Structures, Viaducts, Freeways, Highways, Shopping Center. 
Architectural and Environmental Projects and cooperation; military
facilities and plans, Cities, Airports, remediation drawings upgrade,
correcting and redesign. Traffic design  problem analyzes-reorganize.

Freeway Design  Drafting Support, Site analyzing for Caltrans,
Architectural, Archeotype  Electrical drawings, as is and initial design;  
Develop remediation procedure and equipment for lead painted buildings.
Construction management, Job site inspection, civil  structural support
Mechanical Evaluations - Design - Service and Maintenance; RD.

EDUCATION:


   College -  BS  Degree - CAD, Engineering



DOS, UNIX, MAC, SUN computers;  WP, dBase, Lotus, Network, Lisp,
Windows  Applications:  Excel, Words, Access, Power Point  more
METRIC,  SOLAR,  AutoCAD/Computer Instructor. Transportation Spec.

Personal Designer, MS Project, C, Script, File Management, File transfer,
Nastran, Algor, Solid Works. Learn quickly, work independly, shift, overtime.




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


Re: [XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread Mark Vojkovich
On Fri, 12 Sep 2003, Dan Mergens wrote:

 Since you are in the process of a RedHat 8 install anyway, it would be 
 worth it to install RedHat 9 instead. The install process is better than 
 previous versions, although you'll still have to install the new nvidia 
 driver and customize your XF86Config file as Mark instructed.

   You don't need to run NVIDIA's binary drivers if you have XFree86
4.3.0.  The nv driver in 4.3.0 should work with that combo.  And
you don't need to install XFree86 4.3.0 if you are using NVIDIA's
binary drivers.  Those will work with the version of XFree86 that
came with RedHat 8.  While you can do both: install 4.3.0 and
use NVIDIA's binary drivers, only one of those should be needed
to get a working server.

Mark.

 
 Mark Vojkovich wrote:
 
 On Fri, 12 Sep 2003, amerson wrote:
 
   
 
 I have an Apple Cinema 20 display running on windows. I tried installing 
 RedHat Linux 8.0, got the newest drivers from NVIDIA. The screen's optimal 
 resolution is 1680x1050 but right now, it does a stretched 1280x1024. In 
 the XFree86Config file, the graphics card still has a driver of vesa, 
 chanigng it to nv causes the display to not work at all.
 
 
 
The nv driver didn't support flat panels until XFree86 4.3.0,
 and the vesa driver can only do canned standard modes.  I think RH 8 
 only has 4.2.0 or 4.2.1.
 
   
 
 any thoughts on how I can tweak XFree86 to accept this resolution?
 
 
 
 You either need to upgrade to 4.3.0 (or newer) where the nv 
 driver will support flat panels, or you should use NVIDIA's binary
 drivers.
 
For either you'll need to specify a custom modeline like:
 
   Modeline 1680x1050  147.14  1680 1784 1968 2256  1050 1051 1054 1087 
 
since XFree86 doesn't have any builtin 1680x1050 modes.
 
  Mark.
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
   
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


Re: [XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread amerson
Hey Dan and Mark,

thanks for the adivice. I tried what you guys said. I updated XFree to 
4.3.0 and installed the newest NVIDIA drivers. I added the Modeline you 
suggest. However, it still displays a stretch 1280x1024 despite me choosing 
1680x1050 in XFreeConfig. I will paste the relevant portions of my 
XFreeConfig file.

Section ServerLayout
Identifier Default Layout
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
InputDeviceDevInputMice AlwaysCore
EndSection
Section Module
Load  dbe
Load  extmod
Load  fbdevhw
Load  glx
Load  record
Load  freetype
Load  type1
EndSection
Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameApple Cinema
DisplaySize  427267
HorizSync63.6 - 63.6
VertRefresh  60.0 - 60.0
ModeLine 1680x1050 147.1 1680 1784 1968 2256 1050 1051 1054 1087
ModeLine 1680x1050 129.0 1400 1464 1656 1960 1050 1051 1054 
1680 +hsync +vsync
ModeLine 1680x1050 151.0 1400 1464 1656 1960 1050 1051 1054 
1680 +hsync +vsync
ModeLine 1680x1050 162.0 1400 1464 1656 1960 1050 1051 1054 
1680 +hsync +vsync
ModeLine 1680x1050 184.0 1400 1464 1656 1960 1050 1051 1054 
1680 +hsync +vsync
Option  dpms
EndSection

Section Device
Identifier  Videocard0
Driver  nvidia
VendorName  Videocard vendor
BoardName   NVIDIA GeForce 4 (generic)
EndSection
Section Screen
Identifier Screen0
Device Videocard0
MonitorMonitor0
DefaultDepth 16
SubSection Display
Modes800x600
EndSubSection
SubSection Display
Depth 16
Modes1680x1050
EndSubSection
EndSection
Section DRI
Group0
Mode 0666
EndSection
amerson

At 02:22 PM 9/12/2003 -0700, you wrote:
Since you are in the process of a RedHat 8 install anyway, it would be 
worth it to install RedHat 9 instead. The install process is better than 
previous versions, although you'll still have to install the new nvidia 
driver and customize your XF86Config file as Mark instructed.

Mark Vojkovich wrote:

On Fri, 12 Sep 2003, amerson wrote:



I have an Apple Cinema 20 display running on windows. I tried 
installing RedHat Linux 8.0, got the newest drivers from NVIDIA. The 
screen's optimal resolution is 1680x1050 but right now, it does a 
stretched 1280x1024. In the XFree86Config file, the graphics card still 
has a driver of vesa, chanigng it to nv causes the display to not 
work at all.

  The nv driver didn't support flat panels until XFree86 4.3.0,
and the vesa driver can only do canned standard modes.  I think RH 8 
only has 4.2.0 or 4.2.1.



any thoughts on how I can tweak XFree86 to accept this resolution?

   You either need to upgrade to 4.3.0 (or newer) where the nv driver 
will support flat panels, or you should use NVIDIA's binary
drivers.

  For either you'll need to specify a custom modeline like:

 Modeline 1680x1050  147.14  1680 1784 1968 2256  1050 1051 1054 1087
  since XFree86 doesn't have any builtin 1680x1050 modes.
Mark.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
Amerson H. Lin  MIT '05  EECS
Simmons 632 Cambridge, MA 02139
617-2256692  

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


Re: [XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread Dan Mergens
I'm not the expert (as Mark will atest to), but I think you should put 
the 1680x1050 first in your Display SubSection. I think you can put them 
on the same line. Then you should be able to Crtl-Atl-NumKey+ to switch 
between the modes.

amerson wrote:

Hey Dan and Mark,

thanks for the adivice. I tried what you guys said. I updated XFree to 
4.3.0 and installed the newest NVIDIA drivers. I added the Modeline 
you suggest. However, it still displays a stretch 1280x1024 despite me 
choosing 1680x1050 in XFreeConfig. I will paste the relevant portions 
of my XFreeConfig file.

Section ServerLayout
Identifier Default Layout
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
InputDeviceDevInputMice AlwaysCore
EndSection
Section Module
Load  dbe
Load  extmod
Load  fbdevhw
Load  glx
Load  record
Load  freetype
Load  type1
EndSection
Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameApple Cinema
DisplaySize  427267
HorizSync63.6 - 63.6
VertRefresh  60.0 - 60.0
ModeLine 1680x1050 147.1 1680 1784 1968 2256 1050 1051 
1054 1087
ModeLine 1680x1050 129.0 1400 1464 1656 1960 1050 1051 
1054 1680 +hsync +vsync
ModeLine 1680x1050 151.0 1400 1464 1656 1960 1050 1051 
1054 1680 +hsync +vsync
ModeLine 1680x1050 162.0 1400 1464 1656 1960 1050 1051 
1054 1680 +hsync +vsync
ModeLine 1680x1050 184.0 1400 1464 1656 1960 1050 1051 
1054 1680 +hsync +vsync
Option  dpms
EndSection

Section Device
Identifier  Videocard0
Driver  nvidia
VendorName  Videocard vendor
BoardName   NVIDIA GeForce 4 (generic)
EndSection
Section Screen
Identifier Screen0
Device Videocard0
MonitorMonitor0
DefaultDepth 16
SubSection Display
Modes800x600
EndSubSection
SubSection Display
Depth 16
Modes1680x1050
EndSubSection
EndSection
Section DRI
Group0
Mode 0666
EndSection
amerson

At 02:22 PM 9/12/2003 -0700, you wrote:

Since you are in the process of a RedHat 8 install anyway, it would 
be worth it to install RedHat 9 instead. The install process is 
better than previous versions, although you'll still have to install 
the new nvidia driver and customize your XF86Config file as Mark 
instructed.

Mark Vojkovich wrote:

On Fri, 12 Sep 2003, amerson wrote:



I have an Apple Cinema 20 display running on windows. I tried 
installing RedHat Linux 8.0, got the newest drivers from NVIDIA. 
The screen's optimal resolution is 1680x1050 but right now, it does 
a stretched 1280x1024. In the XFree86Config file, the graphics card 
still has a driver of vesa, chanigng it to nv causes the 
display to not work at all.

  The nv driver didn't support flat panels until XFree86 4.3.0,
and the vesa driver can only do canned standard modes.  I think RH 
8 only has 4.2.0 or 4.2.1.



any thoughts on how I can tweak XFree86 to accept this resolution?

   You either need to upgrade to 4.3.0 (or newer) where the nv 
driver will support flat panels, or you should use NVIDIA's binary
drivers.

  For either you'll need to specify a custom modeline like:

 Modeline 1680x1050  147.14  1680 1784 1968 2256  1050 1051 1054 1087
  since XFree86 doesn't have any builtin 1680x1050 modes.
Mark.

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


Amerson H. Lin  MIT '05  EECS
Simmons 632 Cambridge, MA 02139
617-2256692 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


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


Re: [XFree86] widescreen 1680x1050 resolution

2003-09-12 Thread Mark Vojkovich
On Fri, 12 Sep 2003, amerson wrote:

 Section Monitor
  Identifier   Monitor0
  VendorName   Monitor Vendor
  ModelNameApple Cinema
  DisplaySize  427267
  HorizSync63.6 - 63.6
  VertRefresh  60.0 - 60.0
  ModeLine 1680x1050 147.1 1680 1784 1968 2256 1050 1051 1054 1087
  ModeLine 1680x1050 129.0 1400 1464 1656 1960 1050 1051 1054 
 1680 +hsync +vsync
  ModeLine 1680x1050 151.0 1400 1464 1656 1960 1050 1051 1054 
 1680 +hsync +vsync
  ModeLine 1680x1050 162.0 1400 1464 1656 1960 1050 1051 1054 
 1680 +hsync +vsync
  ModeLine 1680x1050 184.0 1400 1464 1656 1960 1050 1051 1054 
 1680 +hsync +vsync
  Option  dpms
 EndSection

  None of those modes lay within the HorizSync that you've given.  
Subsequently, they would get rejected.  Typical specs for a panel 
like that would be:

HorizSync 30 - 66
VertRefresh 55 - 65

  gtf that ships with XFree86 4.3.0 would be able to generate a
suitable modeline. eg:

$ gtf 1680 1050 60

# 1680x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 147.14 MHz
  Modeline 1680x1050_60.00  147.14  1680 1784 1968 2256  1050 1051 1054 1087  -HSync 
+Vsync



Mark.

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


Re: [XFree86] Keyboard configuration for Alt chars

2003-09-12 Thread Frank Murphy
On Thursday 11 September 2003 12:18, Ph Legay wrote:
 Frank Murphy wrote:
  On Friday 05 September 2003 12:56, Ph Legay wrote:
  Well, the modifier that it sees is Alt_L. You want it to see Mode_shift.
  You can cause this to happen by putting this into your .Xmodmap file:
 
  keysym Alt_L = Mode_switch
 
  Then run `xmodmap .Xmodmap` and the left alt key should generate
  Mode_switch and you can get your characters.

 OK, Thanks. You have rights. Everty thing is perfect.

Great! Glad to hear that it works.

 Just to be a little less dummy, Is there a way to say to X keyboard
 that Alt_L = Mode_switch in the configuration file. In other words
 where are the modifiers defined ? in one file or in several files ?

I assume that you mean in the system Xkb configuration files. On Debian, 
they're in /etc/X11/xkb/, but I think the default is /usr/X11R6/lib/X11/xkb. 
Under symbols, there are the files that define how X maps keycodes to 
keysyms. In these files, you'll see lines like this:

key RALT {[  Mode_switch, Multi_key   ]   };

They define how to get Mode_switch.

Frank

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