Re: CVS Update: xc (branch: trunk)

2003-09-19 Thread Harold L Hunt II
Matthieu,

The new file, prngc.c, uses sockaddr_storage.  However, I know that at 
least Cygwin does not have sockaddr_storage.

No alternative is provided and no conditional compilation is in effect 
to fall back to previous functionality when sockaddr_storage is not 
available.  This breaks the build on Cygwin.

What can be done to fix the build on platforms that do not have 
sockaddr_storage?

I already tried using sockaddr instead, but that is missing fields that 
are contained in sockaddr_storage.  Any other ideas?

Harold

Matthieu Herrb wrote:

CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/09/16 22:48:34
Log message:
   447. In xdm, use better pseudo-random number generators to generate
magic cookies. Add support for EGD and other compatible entropy
gathering daemons. (Oswald Buddenhagen from KDE, Matthieu Herrb).
Modified files:
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  xc/config/cf/:
OpenBSD.cf X11.tmpl darwin.cf 
  xc/programs/xdm/:
Imakefile dm.c dm.h dm_auth.h genauth.c mitauth.c 
resource.c session.c xdm.man xdmauth.c 
Added files:
  xc/programs/xdm/:
prngc.c 
  
  Revision  ChangesPath
  3.2858+4 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG
  3.91  +2 -2  xc/config/cf/OpenBSD.cf
  1.220 +7 -1  xc/config/cf/X11.tmpl
  1.40  +2 -1  xc/config/cf/darwin.cf
  3.58  +8 -3  xc/programs/xdm/Imakefile
  3.23  +10 -2 xc/programs/xdm/dm.c
  3.32  +6 -1  xc/programs/xdm/dm.h
  1.3   +10 -2 xc/programs/xdm/dm_auth.h
  3.18  +324 -137  xc/programs/xdm/genauth.c
  1.6   +8 -2  xc/programs/xdm/mitauth.c
  3.12  +20 -1 xc/programs/xdm/resource.c
  3.35  +6 -2  xc/programs/xdm/session.c
  3.25  +15 -1 xc/programs/xdm/xdm.man
  1.6   +8 -2  xc/programs/xdm/xdmauth.c

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


Re: BitBlt for big Endian

2003-09-19 Thread Gazelle Jean-Laurent
Hi,

I'm trying to build/run Xfree for a 69030 card on a PowerPC platform.
Looks like you're trying to do the same thing.

Are all these values set to MSBFirst for you also ?
X_BYTE_ORDER
BITMAP_BIT_ORDER
IMAGE_BYTE_ORDER

I do still have the following byteswapping issues (is it your case also ?):
16bpp = Red  Blue inversion.
24bpp = R-B G-R B-G 

regards,
Jean-Laurent

On Wed, 10 Sep 2003 09:14:35 +0530
Nitin Mahajan [EMAIL PROTECTED] wrote:

R HI!  
R  
R I have written the following BIt BLT function for the Little endian byte
R sex.
R But same is not working for theBig endian after doing some changes.Iam
R using CT 69030 card.
R  
R Can any one please tell how to convert it so that the same function
R works for both little and big endian.
R The commented statements were for Little endian.
R  
R  
R regards,
R  
R Nitin Mahajan
R mail:[EMAIL PROTECTED]
R Ph:51101667. Mobile : 9886099925
R ==
R The Lord gave us two ends -- one to sit on and the other to think with.
R Success depends on which one we use the most.
R  
R 


-- 

 Jean-Laurent GAZELLE   150, rue M. Berthelot   
 Phone: +33 (0)4 98 16 34 66Z.I. Toulon Est BP244   
 Fax : +33 (0)4 98 16 34 01 83078 TOULON Cedex9 
 e-mail : [EMAIL PROTECTED]
 Thales Computers   FRANCE  
_ http://www.thalescomputers.com ___
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: C version of ucs2any.pl

2003-09-19 Thread Harold L Hunt II
Matthieu (and Matthias),

Matthias Scheler wrote:

On Thu, Sep 18, 2003 at 10:58:19PM +0200, Matthieu Herrb wrote:

It seems to me that the C langage version of ucs2any.pl developped by
Ben Collver and other NetBSD developpers is now stable enough to be
included in XFree86.


Two comments:
1.) While it is stable enough it is quite slow due to excessive and
ineffecient use of regular expressions.
2.) A while ago I reported the fonts get build twice. We could confirm
that problem in the meantime and found out that it was related
to using a C version of ucs2any. Tatoku Ogaito finally fixed
it by adding includes :: ucs2any to xc/fonts/util/Imakefile.
Fonts get built twice on Cygwin as well.  In fact, they probably get 
built twice on all platforms.

The xc/fonts/util/Imakefile already has includes:: ucs2any in it in 
the version that I am compiling; yet, ucs2any is still run for each font 
during both the includes step and later during the all step.

It seems that Tatoku Ogaito's patch (if his patch was to add the 
includes:: dependency) was included but it does not fix the problem.

The root problem here is that ucs2any is being deleted and rebuilt, 
because of its dependencies, during the all stage of compilation.

It breaks down like this:
=
1) ucs2any is built using SimpleProgramTarget
2) SimpleProgramTarget calls ComplexProgramTarget

3) ComplexProgramTarget calls ProgramTargetHelper as such:

ProgramTargetHelper(program,SRCS,OBJS,DEPLIBS,$(LOCAL_LIBRARIES),NullParameter)

4) ProgramTargetHelper sets up the dependencies as follows:

	ProgramTargetName(program): $(objs) $(deplib)

4) DEPLIBS is, in this case:
$(DEPXAWLIB) $(DEPXMULIB) $(DEPXTOOLLIB) $(DEPXLIB)
5) The DEPLIBS have not yet been built during the includes stage.  Why 
ucs2any is still built when its dependencies have not been built is sort 
of a mystery to me.  In any case, ucs2any is built and run during the 
includes stage.

6) The DEPLIBS are built during all and upon return to the font/util 
directory during all, ucs2any is deleted and rebuilt since the DEPLIBS 
have a more recent timestamp.

7) All of the bdf files are thus rebuilt since the ucs2any timestamp has 
been updated.

Building the fonts takes a really long time.  Maybe my opinion doesn't 
matter, but I think that this patch needs to be corrected so that the 
fonts aren't built twice.  I can think of at least one way to do this, 
which would be to call AllTarget and ProgramTargetHelper directly from 
xc/fonts/util/Imakefile, passing nothing as DEPLIBS.

Harold

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


new patch for pkg-config in libX11 - much shorter

2003-09-19 Thread Warren Turkal
I found that I don't need some of the stuff I had in the patch. Here is a
new patch representing that knowledge.

diff -r -u3 -N xc/lib/X11/Imakefile 017_x11-pkg-config-enable.diff/xc/lib
X11/Imakefile
--- xc/lib/X11/Imakefile2002-11-25 20:31:23.0 -0600
+++ xc/lib/X11/Imakefile2003-09-18 04:23:45.0 -0500
@@ -1089,3 +1089,22 @@
 
 BuildIncludes($(HEADERS),IncSubdir,..)
 #endif
+
+
+SUBSTVARS=prefix=$(PROJECTROOT) \
+ exec_prefix=$(BINDIR) \
+ libdir=$(USRLIBDIR) \
+ includedir=$(INCROOT) \
+ PACKAGE_VERSION=$(SOXLIBREV) \
+
+all:: X11.pc
+
+X11.pc: X11.pc.in
+   RemoveFile($@)
+   sh config/config-subst $(SUBSTVARS)  X11.pc.in  $@
+
+InstallNonExecFile(X11.pc,$(USRLIBDIR)/pkgconfig)
+
+clean::
+   RemoveFile(X11.pc)
+
diff -r -u3 -N xc/lib/X11/X11.pc.in 017_x11-pkg-config-enable.diff/xc/lib
X11/X11.pc.in
--- xc/lib/X11/X11.pc.in1969-12-31 18:00:00.0 -0600
+++ xc/lib/X11/X11.pc.in2003-09-18 04:23:45.0 -0500
@@ -0,0 +1,11 @@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
+
+Name: X11
+Description: X11 library
+Version: @PACKAGE_VERSION@
+Requires: fontconfig
+Libs: -L${libdir} -lX11
+Cflags: -I${includedir}
diff -r -u3 -N xc/lib/X11/config/config-subst
017_x11-pkg-config-enable.diff/xc/lib/X11/config/config-subst
--- xc/lib/X11/config/config-subst  1969-12-31 18:00:00.0 -0600
+++ xc/lib/X11/config/config-subst  2003-09-18 04:23:45.0 -0500
@@ -0,0 +1,10 @@
+#!/bin/sh
+script=config-subst.$$
+trap rm $script 0
+rm -f $script
+for i in ${1+$@}; do
+   var=`echo $i | sed 's/=.*$//'`
+   val=`echo $i | sed 's/^[^=]*=//'`
+   echo s;@$var@;$val;  $script
+done
+sed -f $script

-- 
President, GOLUM, Inc.
http://www.golum.org

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


Re: C version of ucs2any.pl

2003-09-19 Thread David Dawes
On Fri, Sep 19, 2003 at 02:01:00PM -0400, Harold L Hunt II wrote:
Matthieu (and Matthias),


Matthias Scheler wrote:

 On Thu, Sep 18, 2003 at 10:58:19PM +0200, Matthieu Herrb wrote:
 
It seems to me that the C langage version of ucs2any.pl developped by
Ben Collver and other NetBSD developpers is now stable enough to be
included in XFree86.
 
 
 Two comments:
 1.) While it is stable enough it is quite slow due to excessive and
 ineffecient use of regular expressions.
 2.) A while ago I reported the fonts get build twice. We could confirm
 that problem in the meantime and found out that it was related
 to using a C version of ucs2any. Tatoku Ogaito finally fixed
 it by adding includes :: ucs2any to xc/fonts/util/Imakefile.

Fonts get built twice on Cygwin as well.  In fact, they probably get 
built twice on all platforms.

The xc/fonts/util/Imakefile already has includes:: ucs2any in it in 
the version that I am compiling; yet, ucs2any is still run for each font 
during both the includes step and later during the all step.

Maybe removing the includes part of MakeTruncatedUCSBdfFont and
MakeBdfFontFromUCSMaster would be sufficient?  I don't remember why the
conversion was done in the includes phase instead of the all phase, but
removing the includes part from those rules worked here when I just
tested it.

If it does need to be done in the includes phase, for example, because
a host version of ucs2any is needed to do the conversion when
cross-compliling, but a target version of ucs2any needs to get built
later for installation, then I'd just remove $(UCS2ANY) as a dependency
in MakeBdfFontFromUCSMaster().  If a dependency is still desired, make
it be the source rather than the binary.

BTW, how are things like host vs target imake binaries handled when
cross-compiling?

David
-- 
David Dawes X-Oz Technologies
www.XFree86.org/~dawes  www.x-oz.com
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: C version of ucs2any.pl

2003-09-19 Thread Harold L Hunt II
David Dawes wrote:

On Fri, Sep 19, 2003 at 02:01:00PM -0400, Harold L Hunt II wrote:

Matthieu (and Matthias),

Matthias Scheler wrote:


On Thu, Sep 18, 2003 at 10:58:19PM +0200, Matthieu Herrb wrote:


It seems to me that the C langage version of ucs2any.pl developped by
Ben Collver and other NetBSD developpers is now stable enough to be
included in XFree86.


Two comments:
1.) While it is stable enough it is quite slow due to excessive and
   ineffecient use of regular expressions.
2.) A while ago I reported the fonts get build twice. We could confirm
   that problem in the meantime and found out that it was related
   to using a C version of ucs2any. Tatoku Ogaito finally fixed
   it by adding includes :: ucs2any to xc/fonts/util/Imakefile.
Fonts get built twice on Cygwin as well.  In fact, they probably get 
built twice on all platforms.

The xc/fonts/util/Imakefile already has includes:: ucs2any in it in 
the version that I am compiling; yet, ucs2any is still run for each font 
during both the includes step and later during the all step.


Maybe removing the includes part of MakeTruncatedUCSBdfFont and
MakeBdfFontFromUCSMaster would be sufficient?  I don't remember why the
conversion was done in the includes phase instead of the all phase, but
removing the includes part from those rules worked here when I just
tested it.
David,

Hmm... I don't know enough about how the fonts are built to say whether 
or not that is a good idea.

However, I can say that changing SimpleProgramTarget(ucs2any) to the 
following stops ucs2any from being rebuilt when the DEPLIBS are built:

NormalProgramTarget(ucs2any, ucs2any.o, , , )

ucs2any doesn't depend on any X libs so this seems to be fine.

I build tested this on Cygwin without problems and confirmed that the 
fonts were only passed through ucs2any once.

If it does need to be done in the includes phase, for example, because
a host version of ucs2any is needed to do the conversion when
cross-compliling, but a target version of ucs2any needs to get built
later for installation, then I'd just remove $(UCS2ANY) as a dependency
in MakeBdfFontFromUCSMaster().  If a dependency is still desired, make
it be the source rather than the binary.
BTW, how are things like host vs target imake binaries handled when
cross-compiling?
I think this are questions for Matthieu, right?

Harold

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


Re: C version of ucs2any.pl

2003-09-19 Thread David Dawes
On Fri, Sep 19, 2003 at 03:38:14PM -0400, Harold L Hunt II wrote:
David Dawes wrote:

 On Fri, Sep 19, 2003 at 02:01:00PM -0400, Harold L Hunt II wrote:
 
Matthieu (and Matthias),


Matthias Scheler wrote:


On Thu, Sep 18, 2003 at 10:58:19PM +0200, Matthieu Herrb wrote:


It seems to me that the C langage version of ucs2any.pl developped by
Ben Collver and other NetBSD developpers is now stable enough to be
included in XFree86.


Two comments:
1.) While it is stable enough it is quite slow due to excessive and
ineffecient use of regular expressions.
2.) A while ago I reported the fonts get build twice. We could confirm
that problem in the meantime and found out that it was related
to using a C version of ucs2any. Tatoku Ogaito finally fixed
it by adding includes :: ucs2any to xc/fonts/util/Imakefile.

Fonts get built twice on Cygwin as well.  In fact, they probably get 
built twice on all platforms.

The xc/fonts/util/Imakefile already has includes:: ucs2any in it in 
the version that I am compiling; yet, ucs2any is still run for each font 
during both the includes step and later during the all step.
 
 
 Maybe removing the includes part of MakeTruncatedUCSBdfFont and
 MakeBdfFontFromUCSMaster would be sufficient?  I don't remember why the
 conversion was done in the includes phase instead of the all phase, but
 removing the includes part from those rules worked here when I just
 tested it.

David,

Hmm... I don't know enough about how the fonts are built to say whether 
or not that is a good idea.

However, I can say that changing SimpleProgramTarget(ucs2any) to the 
following stops ucs2any from being rebuilt when the DEPLIBS are built:

NormalProgramTarget(ucs2any, ucs2any.o, , , )

ucs2any doesn't depend on any X libs so this seems to be fine.

That looks OK too.

 If it does need to be done in the includes phase, for example, because
 a host version of ucs2any is needed to do the conversion when
 cross-compliling, but a target version of ucs2any needs to get built
 later for installation, then I'd just remove $(UCS2ANY) as a dependency
 in MakeBdfFontFromUCSMaster().  If a dependency is still desired, make
 it be the source rather than the binary.
 
 BTW, how are things like host vs target imake binaries handled when
 cross-compiling?

I think this are questions for Matthieu, right?

They're for anyone who has the answers :-).  We do currently install
ucs2any, so when cross compliling that would mean having a host version
to process the fonts and a target version to install.  I was wondering
how we deal with the same issue with imake (and other utilities that
get used at build-time) in case it affects the way to deal with the
current usc2any getting called twice issue.

David
-- 
David Dawes X-Oz Technologies
www.XFree86.org/~dawes  www.x-oz.com
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: [XFree86] trident cyber 9385 problem again, now with logs

2003-09-19 Thread Alan Hourihane
Can you please attach the file /etc/X11/XF86Config-4.

Alan.

On Wed, Jan 01, 1997 at 12:35:20AM +0300, Alexei Brazhe wrote:
 Once again hello,
 the last time I was not able to include.
 Now I can:
 
 XFree86 Version 4.3.0
 Release Date: 27 February 2003
 X Protocol Version 11, Revision 0, Release 6.6
 Build Operating System: Linux 2.4.20 i686 [ELF] 
 Build Date: 01 March 2003
   Before reporting problems, check http://www.XFree86.Org/
   to make sure that you have the latest version.
 Module Loader present
 Markers: (--) probed, (**) from config file, (==) default setting,
  (++) from command line, (!!) notice, (II) informational,
  (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
 (==) Log file: /var/log/XFree86.0.log, Time: Thu Sep 11 09:01:34 2003
 (==) Using config file: /etc/X11/XF86Config-4
 (==) ServerLayout XFree86 Configured
 (**) |--Screen Screen0 (0)
 (**) |   |--Monitor Monitor0
 (**) |   |--Device Card0
 (**) |--Input Device Mouse0
 (**) |--Input Device Keyboard0
 (**) Option XkbModel pc101
 (**) XKB: model: pc101
 (**) Option XkbLayout ru
 (**) XKB: layout: ru
 (==) Keyboard: CustomKeycode disabled
 (**) FontPath set to 
 /usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/local/
 (**) RgbPath set to /usr/X11R6/lib/X11/rgb
 (**) ModulePath set to /usr/X11R6/lib/modules
 (--) using VT number 7
 
 (II) Open APM successful
 (II) Module ABI versions:
   XFree86 ANSI C Emulation: 0.2
   XFree86 Video Driver: 0.6
   XFree86 XInput driver : 0.4
   XFree86 Server Extension : 0.2
   XFree86 Font Renderer : 0.4
 (II) Loader running on linux
 (II) LoadModule: bitmap
 (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
 (II) Module bitmap: vendor=The XFree86 Project
   compiled for 4.3.0, module version = 1.0.0
   Module class: XFree86 Font Renderer
   ABI class: XFree86 Font Renderer, version 0.4
 (II) Loading font Bitmap
 (II) LoadModule: pcidata
 (II) Loading /usr/X11R6/lib/modules/libpcidata.a
 (II) Module pcidata: vendor=The XFree86 Project
   compiled for 4.3.0, module version = 1.0.0
   ABI class: XFree86 Video Driver, version 0.6
 (II) PCI: Probing config type using method 1
 (II) PCI: Config type is 1
 (II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
 (II) PCI: PCI scan (all values are in hex)
 (II) PCI: 00:00:0: chip 8086,1235 card , rev 02 class 06,00,00 hdr 00
 (II) PCI: 00:01:0: chip 8086,122e card , rev 02 class 06,01,00 hdr 00
 (II) PCI: 00:01:1: chip 8086,1230 card , rev 02 class 01,01,80 hdr 00
 (II) PCI: 00:02:0: chip 104c,ac12 card 4000, rev 04 class 06,07,00 hdr 82
 (II) PCI: 00:02:1: chip 104c,ac12 card 4800, rev 04 class 06,07,00 hdr 82
 (II) PCI: 00:03:0: chip 1023,9660 card , rev d3 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,4), 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-ISA bridge:
 (II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
 (II) PCI-to-CardBus bridge:
 (II) Bus 1: bridge is at (0:2:0), (0,1,3), BCTRL: 0x0540 (VGA_EN is cleared)
 (II) Bus 1 I/O range:
   [0] -1  0   0x4000 - 0x40ff (0x100) IX[B]
   [1] -1  0   0x4400 - 0x44ff (0x100) IX[B]
 (II) Bus 1 non-prefetchable memory range:
   [0] -1  0   0x1040 - 0x107f (0x40) MX[B]
 (II) Bus 1 prefetchable memory range:
   [0] -1  0   0x1000 - 0x103f (0x40) MX[B]
 (II) PCI-to-CardBus bridge:
 (II) Bus 4: bridge is at (0:2:1), (0,4,6), BCTRL: 0x0540 (VGA_EN is cleared)
 (II) Bus 4 I/O range:
   [0] -1  0   0x4800 - 0x48ff (0x100) IX[B]
   [1] -1  0   0x4c00 - 0x4cff (0x100) IX[B]
 (II) Bus 4 non-prefetchable memory range:
   [0] -1  0   0x1100 - 0x113f (0x40) MX[B]
 (II) Bus 4 prefetchable memory range:
   [0] -1  0   0x10c0 - 0x10ff (0x40) MX[B]
 (--) PCI:*(0:3:0) Trident Microsystems TGUI 9660/938x/968x rev 211, Mem @ 
 0x0800/22, 0x0840/16, 0x0880/22, BIOS @ 0x000c/16
 (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]
 

[XFree86] XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)

2003-09-19 Thread Aldemir . Silva

I don't know what is it.

XFree86 Version 4.3.0 (Red Hat Linux
release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release
6.6
Build Operating System: Linux 2.4.20-3bigmem
i686 [ELF] 
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com

Before
reporting problems, check http://www.XFree86.Org/
to
make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-20.9
([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 (Red
Hat Linux 3.2.2-5)) #1 Mon Aug 18 11:45:58 EDT 2003 
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: Thu Sep 18 17:10:02 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0
(0)
(**) |  |--Monitor Monitor0
(**) |  |--Device Videocard0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel abnt2
(**) XKB: model: abnt2
(**) Option XkbLayout br
(**) XKB: layout: br
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(++) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86
ANSI C Emulation: 0.2
XFree86
Video Driver: 0.6
XFree86
XInput driver : 0.4
XFree86
Server Extension : 0.2
XFree86
Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The
XFree86 Project
compiled
for 4.3.0, module version = 1.0.0
Module
class: XFree86 Font Renderer
ABI
class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The
XFree86 Project
compiled
for 4.3.0, module version = 1.0.0
ABI
class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using
method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x,
mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in
hex)
(II) PCI: 00:00:0: chip 1106,3148 card
1106, rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b091 card
, rev 00 class 06,04,00 hdr 01
(II) PCI: 00:11:0: chip 1106,3074 card
1106, rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571 card
1106,0571 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:2: chip 1106,3038 card
0925,1234 rev 1b class 0c,03,00 hdr 00
(II) PCI: 00:11:3: chip 1106,3038 card
0925,1234 rev 1b class 0c,03,00 hdr 00
(II) PCI: 00:11:4: chip 1106,3038 card
0925,1234 rev 1b class 0c,03,00 hdr 00
(II) PCI: 00:11:5: chip 1106,3059 card
1106,4161 rev 30 class 04,01,00 hdr 00
(II) PCI: 00:11:6: chip 1106,3068 card
1543,4c21 rev 70 class 07,80,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065 card
1106,0102 rev 70 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 5333,8d04 card
5333,8d04 rev 00 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) 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]
-100x
- 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0]
-100x
- 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0]
-100x
- 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 non-prefetchable memory range:
[0]
-100xdfd0
- 0xdfef (0x20) MX[B]
(II) Bus 1 prefetchable memory range:
[0]
-100xcfb0
- 0xdfbf (0x1010) 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) S3 Inc. [ProSavageDDR
K4M266] rev 0, Mem @ 0xdfe8/19, 0xd000/27, BIOS @ 0xdfe7/16
(II) Addressable bus resource ranges
are
[0]
-100x
- 0x (0x0) MX[B]
[1]
-100x
- 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0]
-100xffe0
- 0x (0x20) MX[B](B)
[1]
-100x0010
- 0x3fff (0x3ff0) MX[B]E(B)
[2]
-100x000f
- 0x000f (0x1) MX[B]
[3]
-100x000c
- 0x000e (0x3) MX[B]
[4]
-100x
- 0x0009 (0xa) MX[B]
[5]
-100x
- 0x (0x1) IX[B]
[6]
-100x
- 0x00ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced
0xe800 from 0xebff to 0xe7ff
(II) Active PCI resource ranges:
[0]
-100xdf00
- 0xdfff (0x100) MX[B]
[1]
-100xe800
- 0xe7ff (0x0) MX[B]O
[2]
-100xdfe7
- 0xdfe7 (0x1) 

Re: [XFree86] Can't start X - errors

2003-09-19 Thread Randy Kramer
On Thursday 18 September 2003 10:39 pm, Harold Martin wrote:
 I think you missed the point of the question. If I go in and rip stuff
 out later, I'll still need to know what I do and don't need. Just tell
 me what kernel modules (and other software besides X, if necessary) I
 need.

IMHO/IM(L)E, that's not easy, and I'm not sure it's worth the time.  Although 
I take issue with the always in the previous response (not quoted), I think 
it's often wise to install almost everything.  If the problem is hard disk 
space, think seriously about a bigger / additional disk.

If I really had to do decide what I needed and what I didn't, I guess I'd 
start digging into dependencies -- the package manager for your distro can 
probably help.

Randy Kramer

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


[XFree86] Re: XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)

2003-09-19 Thread Mike A. Harris
On Fri, 19 Sep 2003 [EMAIL PROTECTED] wrote:

Date: Fri, 19 Sep 2003 09:31:39 -0300
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Content-Type: multipart/alternative; boundary==_alternative
0044B47203256DA6_=
Subject: XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)

I don't know what is it.

Your font server is not running.

As root, type:  service xfs start

That will start the service.  Make sure the xfs service is 
configured to start at boot time by running the ntsysv command 
as root and enabling xfs.  Also make sure there is plenty of disk 
space on the partition which holds /tmp.  If the /tmp partition 
gets filled, xfs wont start up, and the X server can't connect to 
it to get fonts.



-- 
Mike A. Harris

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


[XFree86] Intermittent error with Radeon

2003-09-19 Thread a carbonnel
Hi,
sorry for my bad English, 
I want to speack about : (EE) end of block range 0x3b  begin 0xfffc

Since the 15 september  i can't start my XfreeServer, but i have not 
touch my configuration,
i have just save the Xfree.86.0.log .

The 16 september i saved my total config with dd of my hard drive and i 
have test many soluce
to launch XfreeServer but always with the same error.

The 17 september i decided to reinstall my SUSE 7.2 on hard drive clean, 
but at install i have the
error.

The 18 september i restore my image of  hard drive make the 16 september 
and XfreeServer start
succesfully

The 19 september without any change in my config  y have the error, i 
reboot , reboot, reboot stop
power but always error.

I try to install Mandrake 9.2rc2 and i obtain th same error.
I join the Xfree86.log of my SUSE and the Xfree86.log of Mandrake 9.2rc2
Note my computer work fine under WINDOWS98 and with game like UNREAL II, 
i think my
video card or my hardware is ok but perhaps there is a bad init but where?

Thank's for advance for any way to resolve my problem.

  Xfree86.log of my SUSE 7.2 
*
XFree86 Version 4.0.3 / X Window System
(protocol Version 11, revision 0, vendor release 6400)
Release Date: 16 March 2001
   If the server is older than 6-12 months, or if your card is
   newer than the above date, look for a newer version before
   reporting problems.  (See http://www.XFree86.Org/FAQ)
Operating System: SuSE Linux [ELF] SuSE
Module Loader present
(==) Log file: /var/log/XFree86.0.log, Time: Fri Sep 19 19:23:02 2003
(==) Using config file: /etc/X11/XF86Config
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (??) unknown.
(==) ServerLayout Layout[all]
(**) |--Screen Screen[0] (0)
(**) |   |--Monitor Monitor[0]
(**) |   |--Device Device[0]
(**) |--Input Device Keyboard[0]
(**) Option Protocol Standard
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc104
(**) XKB: model: pc104
(**) Option XkbLayout fr
(**) XKB: layout: fr
(**) |--Input Device Mouse[1]
(WW) The directory /usr/X11R6/lib/X11/fonts/cyrillic does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/latin2/misc does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/latin2/Type1 does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/latin7/75dpi does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/kwintv does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/baekmuk does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/japanese does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/ucs/misc does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/ucs/75dpi does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/ucs/100dpi does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/hellas/misc does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/hellas/75dpi does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/hellas/100dpi does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/hellas/Type1 does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/misc/sgi does not exist.
   Entry deleted from font path.
(WW) The directory /usr/X11R6/lib/X11/fonts/xtest does not exist.
   Entry deleted from font path.
(**) FontPath set to 
/usr/X11R6/lib/X11/fonts/misc:unscaled,/usr/X11R6/lib/X11/fonts/local,/usr/X11R6/lib/X11/fonts/misc:unscaled,/usr/X11R6/lib/X11/fonts/75dpi:unscaled,/usr/X11R6/lib/X11/fonts/100dpi:unscaled,/usr/X11R6/lib/X11/fonts/Type1,/usr/X11R6/lib/X11/fonts/URW,/usr/X11R6/lib/X11/fonts/Speedo,/usr/X11R6/lib/X11/fonts/75dpi,/usr/X11R6/lib/X11/fonts/100dpi,/usr/X11R6/lib/X11/fonts/PEX,/usr/X11R6/lib/X11/fonts/latin2/75dpi,/usr/X11R6/lib/X11/fonts/latin2/100dpi,/usr/X11R6/lib/X11/fonts/truetype,/usr/X11R6/lib/X11/fonts/uni,/usr/X11R6/lib/X11/fonts/CID
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(**) ModulePath set to /usr/X11R6/lib/modules
(**) Option AllowMouseOpenFail
(**) Option Xinerama off
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
   XFree86 ANSI C Emulation: 0.1
   XFree86 Video Driver: 0.3
   XFree86 XInput driver : 0.1
   XFree86 Server Extension : 0.1
   XFree86 Font Renderer : 0.2
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
   compiled for 4.0.3, module version = 1.0.0
   Module 

Re: [XFree86] What do I need if I want to build a minimized X window?

2003-09-19 Thread Darko Novak
Look on google for instructions about KDrive (former TinyX). It's a part of
XFree86 sources and with correct compilation settings, you can compile very
small X windows which will fit on 10MB or even less. You can choose to
compile for VESA, Trident... depends on your HW.

But don't expect support for this on this mailing list. I've been asking the
same questions but nobody helped, it looks like nobody knows anything on
this subject here.

Best regards,
Darko


- Original Message -

Can any of you tell me what I can do if I want to build a minimized X
Window?

I wish to make a minimized Linux that can be run in a 32M flash disk rather
than a hard disk.
Now I have a kernel and a initrd, and I was told to copy the /usr/X11R6/lib
and /usr/X11R6/bin to the img file that will be mounted to the /usr.

But /usr/X11R6/lib and /usr/X11R6/bin are too big for my flash disk. My
friend told me that I just need to copy the neccesary files and lib files
to the img file that will be mounted to the /usr. Can u tell me the least
files and libs that I need to build a X window?

3X!



+++
+   Tel:  086-010-62986638-4003
+   E-mail  [EMAIL PROTECTED]
+++

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

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


Re: [XFree86] Rotate capable driver.

2003-09-19 Thread Mark Vojkovich
   The Rotate option does work with the nv driver.  The Resize
and Rotate extension broke Rotate options in ALL drivers in XFree86
4.3 so you have to disable RandR:

 Option RandR 0

In the Section ServerFlags.


Mark.



On Fri, 19 Sep 2003, Zampelli [utf-8] Stéphane wrote:

 Hi everyone.
 
 
 Since the Rotate option does not work with my nv driver,
 can anyone tell me which video card (S3 maybe ?) is known to work in portrait 
 mode under X (also known as the Rotate CCW option) ?
 
 I need to set up a Linux machine which works in portrait mode.
 
 
 
 Thank you,
 
 Z.Stephane.
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 


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


[XFree86] Xfree86

2003-09-19 Thread yandex.ru







  01
  
  


Digital5Signal5Processing



 47324912277
  3!

 1999   7 -  "  ".
   8,,
 , ,  3,   ,
   ,   ,2   ,
 0 ,  5.
77690252964

  5 
   :2
82517429706

0  ;
  ;
  8  ;
  5   4   ;
   1 .

6,0- .

	  4   .
	 9  .
  3  
 82185
6

  , 9  4 
 ( ) 8  .
   2003  4242  .
 (  10%). 
.   7 
 8  
  0.

 :   7709353859
 /  4070281070819000 -  . 
 /  301018109810044599810

   :1, 129090 , / 48
 :  (095) 290-9088.  :  (095) 290-90854
  :  [EMAIL PROTECTED]
:   www.dspa.ru

20682425495

!


10464524461







Re: [XFree86] Can't start X - errors

2003-09-19 Thread Satej Ankolekar


Hi harold,

You would probably need the Graphical Development and X11 packages in all.
I would rather install the entire operating system because many files
depend on each other for proper initialization.
Are u running out of hard disk space?
I don't understand why you want to load only a few options..
Satej
Harold Martin wrote:
On Thu, 2003-09-18 at 13:40, Satej Ankolekar wrote:
> > Hi harold,
> I would suggest a reinstallation. Looks like you have
a minimal
> installation of Linux on your system. Its always wise to install
the
> entire operating system in the first go and then remove those files
> that aren't necessary later.
> Satej
snip>
I think you missed the point of the question. If I go in and rip stuff
out later, I'll still need to know what I do and don't need. Just tell
me what kernel modules (and other software besides X, if necessary)
I
need.
Thanks,
Harold

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

--
Micro$oft sells you Windows
Linux sells you the whole house for free
Proud Linux User SAM DOUGLAS



Re: [XFree86] XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)

2003-09-19 Thread Satej Ankolekar


Hi Mr. Silva,

You might want to go to /etc/X11/XF86Config and comment out the line that
has font unix/7100 line.
Thanks,
Satej
[EMAIL PROTECTED] wrote:

I don't know what is it.
XFree86 Version 4.3.0 (Red Hat
Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision
0, Release 6.6
Build Operating System: Linux
2.4.20-3bigmem i686 [ELF]
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com

Before reporting problems, check http://www.XFree86.Org/

to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-20.9
([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 (Red
Hat Linux 3.2.2-5)) #1 Mon Aug 18 11:45:58 EDT 2003
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: Thu Sep 18 17:10:02 2003
(==) Using config file: "/etc/X11/XF86Config"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Screen0" (0)
(**) | |-->Monitor
"Monitor0"
(**) | |-->Device
"Videocard0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "abnt2"
(**) XKB: model: "abnt2"
(**) Option "XkbLayout" "br"
(**) XKB: layout: "br"
(==) Keyboard: CustomKeycode
disabled
(**) |-->Input Device "DevInputMice"
(**) FontPath set to "unix/:7100"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(++) using VT number 7
(II) Open APM successful
(II) Module ABI versions:

XFree86 ANSI C Emulation: 0.2

XFree86 Video Driver: 0.6

XFree86 XInput driver : 0.4

XFree86 Server Extension : 0.2

XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The
XFree86 Project"

compiled for 4.3.0, module version = 1.0.0

Module class: XFree86 Font Renderer

ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The
XFree86 Project"

compiled for 4.3.0, module version = 1.0.0

ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type
using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1
= 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values
are in hex)
(II) PCI: 00:00:0: chip 1106,3148
card 1106, rev 00 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,b091
card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:11:0: chip 1106,3074
card 1106, rev 00 class 06,01,00 hdr 80
(II) PCI: 00:11:1: chip 1106,0571
card 1106,0571 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:11:2: chip 1106,3038
card 0925,1234 rev 1b class 0c,03,00 hdr 00
(II) PCI: 00:11:3: chip 1106,3038
card 0925,1234 rev 1b class 0c,03,00 hdr 00
(II) PCI: 00:11:4: chip 1106,3038
card 0925,1234 rev 1b class 0c,03,00 hdr 00
(II) PCI: 00:11:5: chip 1106,3059
card 1106,4161 rev 30 class 04,01,00 hdr 00
(II) PCI: 00:11:6: chip 1106,3068
card 1543,4c21 rev 70 class 07,80,00 hdr 00
(II) PCI: 00:12:0: chip 1106,3065
card 1106,0102 rev 70 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 5333,8d04
card 5333,8d04 rev 00 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) 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 non-prefetchable memory
range:

[0] -1 0
0xdfd0 - 0xdfef (0x20) MX[B]
(II) Bus 1 prefetchable memory
range:

[0] -1 0
0xcfb0 - 0xdfbf (0x1010) 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) S3 Inc. [ProSavageDDR
K4M266] rev 0, Mem @ 0xdfe8/19, 0xd000/27, BIOS @ 0xdfe7/16
(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 0
0x000c - 0x000e (0x3) MX[B]

[4] -1 0
0x - 0x0009 (0xa) MX[B]

[5] -1 0
0x - 0x (0x1) IX[B]

[6] -1 0
0x - 0x00ff (0x100) IX[B]
(II) PCI Memory resource overlap
reduced 0xe800 from 0xebff to 0xe7ff
(II) Active PCI resource ranges:

[0] -1 0
0xdf00 - 0xdfff (0x100) MX[B]

[1] -1 0
0xe800 - 0xe7ff (0x0) MX[B]O

[2] -1 0
0xdfe7 - 0xdfe7 

Re: [XFree86] Can't start X - errors

2003-09-19 Thread Harold Martin
I'm using the Gentoo linux distro, which custom builds and installs the
needed packages as you specify. According to their docs, I've installed
all of the packages that I need to.

Are you saying this is a library/package issue or a kernel/module issue.
If the first, tell me what packages I need.
If the second, tell me what modules.
Thanks for your help. I will get this working somehow ;)
Harold

On Fri, 2003-09-19 at 15:15, Satej Ankolekar wrote:
 Hi harold, 
   You would probably need the Graphical Development
 and X11 packages in all. 
 I would rather install the entire operating system because many files
 depend on each other for proper initialization. 
 Are u running out of hard disk space? 
 I don't understand why you want to load only a few options.. 
 Satej 
 
 Harold Martin wrote: 
  On Thu, 2003-09-18 at 13:40, Satej Ankolekar wrote: 
Hi harold, 
I would suggest a reinstallation.  Looks like you have a minimal 
   installation of Linux on your system. Its always wise to install
  the 
   entire operating system in the first go and then remove those
  files 
   that aren't necessary later. 
   Satej 
  snip 
  I think you missed the point of the question. If I go in and rip
  stuff 
  out later, I'll still need to know what I do and don't need. Just
  tell 
  me what kernel modules (and other software besides X, if necessary)
  I 
  need. 
  Thanks, 
  Harold 

  
  ___ 
  XFree86 mailing list 
  [EMAIL PROTECTED] 
  http://XFree86.Org/mailman/listinfo/xfree86
 -- 
 Micro$oft sells you Windows 
 Linux sells you the whole house for free
 Proud Linux User SAM DOUGLAS
  

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


[XFree86] X11 Problems with my Amilo D

2003-09-19 Thread PhilSutter
Hi!
I got some Fujitsu-Siemens Amilo D PIII 1.2GHz
with a S3 Twister Chipset. I tried to configure X11,
here's the XFree86 -configure output:

Fatal server error:

XFree86 has found a valid card configuration.
Unfortunately the appropriate data has not been added to xf86PciInfo.h.
Please forward 'scanpci -v' output to XFree86 support team.

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

I also tried configuring a VESA framebuffer server and that
runs, but crashes while exiting or switching to a virtual console.
the most annoying thing is, the whole machine freezes and then
can only being powered off hardly by the power-button.

I attached some important information. Hope, that's enough for you.

greets, phil

-- 
+++ GMX - die erste Adresse für Mail, Message, More! +++

Getestet von Stiftung Warentest: GMX FreeMail (GUT), GMX ProMail (GUT)
(Heft 9/03 - 23 e-mail-Tarife: 6 gut, 12 befriedigend, 5 ausreichend)

Jetzt selbst kostenlos testen: http://www.gmx.netCopyright (c) 1992-2003 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD 5.0-RELEASE #1: Tue Sep 16 12:49:09 CEST 2003
[EMAIL PROTECTED]:/usr/src/sys/i386/compile/OWNKERN
Preloaded elf kernel /boot/kernel/kernel at 0xc04ba000.
Preloaded elf module /boot/kernel/snd_via82c686.ko at 0xc04ba0a8.
Preloaded elf module /boot/kernel/snd_pcm.ko at 0xc04ba15c.
Preloaded elf module /boot/kernel/acpi.ko at 0xc04ba208.
Timecounter i8254  frequency 1193182 Hz
Timecounter TSC  frequency 1193691444 Hz
CPU: Pentium III/Pentium III Xeon/Celeron (1193.69-MHz 686-class CPU)
  Origin = GenuineIntel  Id = 0x6b1  Stepping = 1
  
Features=0x383f9ffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
real memory  = 234881024 (224 MB)
avail memory = 222978048 (212 MB)
Initializing GEOMetry subsystem
Pentium Pro MTRR support enabled
VESA: v2.0, 31680k memory, flags:0x1, mode table:0xc03d2ee2 (122)
VESA: S3 Incorporated. Twister BIOS
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: PTLTDRSDT   on motherboard
ACPI-0625: *** Info: GPE Block0 defined as GPE0 to GPE15
Using $PIR table, 8 entries at 0xc00fdf40
acpi0: power button is handled as a fixed feature programming model.
Timecounter ACPI-fast  frequency 3579545 Hz
acpi_timer0: 24-bit timer at 3.579545MHz port 0x8008-0x800b on acpi0
acpi_cpu0: CPU on acpi0
acpi_tz0: thermal zone on acpi0
acpi_lid0: Control Method Lid Switch on acpi0
acpi_button0: Power Button on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
agp0: VIA Generic host to PCI bridge mem 0xec00-0xefff at device 0.0 on pci0
pcib1: ACPI PCI-PCI bridge at device 1.0 on pci0
pci1: ACPI PCI bus on pcib1
pci1: display, VGA at device 0.0 (no driver attached)
cbb0: O2Micro OZ6833 PCI-CardBus Bridge at device 4.0 on pci0
cardbus0: CardBus bus on cbb0
pccard0: 16-bit PCCard bus on cbb0
pcib0: slot 4 INTA is routed to irq 10
cbb1: O2Micro OZ6833 PCI-CardBus Bridge at device 4.1 on pci0
cardbus1: CardBus bus on cbb1
pccard1: 16-bit PCCard bus on cbb1
pcib0: slot 4 INTB is routed to irq 11
isab0: PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
atapci0: VIA 82C686 ATA100 controller port 0x1000-0x100f at device 7.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
uhci0: VIA 83C572 USB controller port 0x1020-0x103f irq 11 at device 7.2 on pci0
usb0: VIA 83C572 USB controller on uhci0
usb0: USB revision 1.0
uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
isab1: PCI-ISA bridge at device 7.4 on pci0
pcm0: VIA VT82C686A port 0x1010-0x1013,0x1014-0x1017,0x1400-0x14ff irq 5 at device 
7.5 on pci0
pci0: serial bus, FireWire at device 13.0 (no driver attached)
pci0: simple comms at device 16.0 (no driver attached)
dc0: Accton EN2242 MiniPCI 10/100BaseTX port 0x1c00-0x1cff mem 0xe8004c00-0xe8004fff 
irq 11 at device 17.0 on pci0
dc0: Ethernet address: 00:90:96:1f:2b:c8
miibus0: MII bus on dc0
ukphy0: Generic IEEE 802.3u media interface on miibus0
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
acpi_ec0: embedded controller port 0x66,0x62 on acpi0
fdc0: Enhanced floppy controller (i82077, NE72065 or clone) port 0x3f7,0x3f0-0x3f5 
irq 6 drq 2 on acpi0
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1440-KB 3.5 drive on fdc0 drive 0
ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: FIFO with 16/16/8 bytes threshold
plip0: PLIP network interface on ppbus0
lpt0: Printer on ppbus0
lpt0: Interrupt-driven port
ppi0: Parallel I/O on ppbus0
atkbdc0: Keyboard controller (i8042) port 0x64,0x60 irq 1 on acpi0
atkbd0: AT Keyboard 

Re: [XFree86] Rotate capable driver.

2003-09-19 Thread Mark Vojkovich
On Sat, 20 Sep 2003, Zampelli [iso-8859-1] Stéphane wrote:

 Thank you for the trick, the Rotate option is working now.
 
 This trick should be better documented - not a single word on it all other the 
 XFree86 Site. What about an entry in the FAQ : how can I get Xfree working 
 in portrait mode ? ?

   It is mentioned in the nv man page. 

http://www.xfree86.org/4.3.0/nv.4.html

 
 Unfortunatly, I have my portrait mode, but the server crashes whenever I come 
 with my mouse near the right and top side of the screen. ( Here right and top 
 mean : right and top of the screen when the screen is in normal position, not 
 in portrait position. )

   That's a bug in the shadow framebuffer code.  It effects all 
drivers.  It was fixed in CVS on:
  Tue Apr 15 20:32:29 2003 UTC (5 months ago) by sven 
which is after 4.3.0.  So you'd need CVS or one of the snapshots
after that date.  If you've built from source, you can fix it 
yourself:

http://cvsweb.xfree86.org/cvsweb/xc/programs/Xserver/hw/xfree86/shadowfb/shadow.c.diff?r1=1.18r2=1.18.2.1

  It should also not happen if you disable alphablended cursors
by setting the XCURSOR_CORE environment variable to 1.  So if you
don't need alpha blended cursors you should be able to make it work
with your current server with that environment variable.

Mark.


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


[XFree86] Xfree86

2003-09-19 Thread Åëåíà







  54
  
  


Digital1Signal6Processing



 38889835130
  9!

 1999   5 -  "  ".
   2,,
 , ,  3,   ,
   ,   ,0   ,
 4 ,  0.
43461281236

  3 
   :0
92982717948

9  ;
  ;
  0  ;
  0   2   ;
   1 .

5,2- .

	  4   .
	 5  .
  8  
 82185
7

  , 1  9 
 ( ) 9  .
   2003  0242  .
 (  10%). 
.   1 
 1  
  4.

 :   7709353859
 /  4070281070819000 -  . 
 /  301018109810044599810

   :7, 129090 , / 48
 :  (095) 290-9088.  :  (095) 290-90855
  :  [EMAIL PROTECTED]
:   www.dspa.ru

47745017812

!


60372425912







[XFree86] Videocard driver

2003-09-19 Thread James Laine
I am installing Linux Debian on my home computer but at the time when 
the installer ask me for the driver needed, am unable to select a choice 
since, NVIDIA GeForce 2 is not in the selection, so if anyone knows 
the equivalent of that driver, it would be appriciated.

P.s also send me the instruction on how to install it  and where can i 
get it.



James,

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


Re: [XFree86] Severe Intel (82)855 GM problem

2003-09-19 Thread David Dawes
On Sat, Sep 20, 2003 at 04:04:28AM +0200, [EMAIL PROTECTED] wrote:
Good day lads.

I just bought myself a new laptop for my birthday on the 21'st sep and I'm 
dissapointed to say that I am
failing miserably in getting XFree86 working with the Intel 82855 GM 64Mb videboard.

I downloaded the source version of the drivers from http://downloadfinder.intel.com 
(originally from dri.sourceforge.net)
and followed the simple installation procedures without any problems.

I then continued with making the necesary changes in XFree86Config as specified in 
ftp://aiedownload.intel.com/df-support/6185/ENG/readme.txt
(the usual stuff, driver editing, etc).

Now the weird part.

when running XFree86 (via xinit but everything else is the same), XF86 exits with 
signal 11 without any warnings.
I've been trying to fix this for hours to no avail, therefore I seek your expert help.

The logfile can be located here, http://www.pulia.nu/tmp/XFree86.0.log
An strace of the execution here, http://www.pulia.nu/tmp/xf_hang
And my XF86Config file here, http://www.pulia.nu/tmp/XF86Config

The laptop in question is an Acer TravelMate 290 (I seem to be the first person 
working on a page for linux-on-laptops on it)

And in short, this is what is inside it:

Processor: Mobile Intel Centrino 1.3GHz
Chipset: ?
Memory: 256Mb (expandable to xxxMb)
Audio: Intel® 82801DB AC'97 (Rev 03)
Video: Intel® 82852/82855 GM/GME 64Mb with TV-Out
Display: 15 TFT, 1024x768
Network: RealTek RTL8139/810x familty and Intel® PRO/Wireless LAN 2100 3B PCI Mini 
adapter

I'm using the Slackware distribution, version 9.0 with kernel 2.4.22, and XFree86 
version 4.3.0.

What you did wrong was to download the drivers from the Intel site.
XFree86 4.3.0 and the Linux 2.4.22 kernel both include 855GM support
without the need for any new drivers or patches.  Last time I checked,
the drivers on the Intel site are only for XFree86 4.2.x.  My suggestion
is to uninstall them.

David
-- 
David Dawes X-Oz Technologies
www.XFree86.org/~dawes  www.x-oz.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Videocard driver

2003-09-19 Thread Mark Vojkovich
   The XFree86 nv driver supports NVIDIA cards.  Selecting any
NVIDIA card in the list should result in the correct driver getting used.
However, drivers older than the graphics hardware typically don't
support newer graphics hardware.  GeForce2 is pretty old though, so
one would hope that the XFree86 version that comes with your
Debian version would support it.  If not, the newest XFree86
versions do.


Mark.


On Thu, 18 Sep 2003, James Laine wrote:

 I am installing Linux Debian on my home computer but at the time when 
 the installer ask me for the driver needed, am unable to select a choice 
 since, NVIDIA GeForce 2 is not in the selection, so if anyone knows 
 the equivalent of that driver, it would be appriciated.
 
 
 P.s also send me the instruction on how to install it  and where can i 
 get it.
 
 
 
 James,
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


Re: [XFree86] compiling from sources

2003-09-19 Thread Mark Vojkovich
In file included from server.c:38:
dm.h:105: security/pam_appl.h: No such file or directory
make[4]: *** [server.o] Error 1


  This is a problem specific to Debian if I recall correctly.
I'm not sure what the correct solution is.  Anyone?  Anyone?

  I think you can hack it by changing
# define HasPam YES
  to
# define HasPam NO
in xc/config/cf/linux.cf, but I suppose the Debian folks would tell
you to just get Pam.  They seemed to think it should be a requirement
for building XFree86.  You're going to need to make World again if 
you change that file.


Mark.


On Tue, 16 Sep 2003, Mauro Gaggero wrote:

 ok, thanks that was one of the problems. I have installed the packages you
 mentioned but I have still some errors. Do you know the solution even in
 this case?
 Tank you, Mauro
 
 PS (one of the errors is png.h no such file or directory but now it is ok,
 I forgot to type make install)
 
 
 - Original Message -
 From: Mark Vojkovich [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, September 14, 2003 9:23 PM
 Subject: Re: [XFree86] compiling from sources
 
 
  On Sun, 14 Sep 2003, Mauro Gaggero wrote:
 
   Hi, I downloaded from http://www.xfree86.org the 7 gzipped files of
 sources of XFree86 4.3.0 and the fixes. I tried to compile the sources
 following the docs file (Building XFree86 from a Source Distribution) but
 the compilation failed because of some errors. I have a GNU/Linux Debian
 system with gcc 2.95.4 and I have used the default configuration for Debian.
   The World.log.bz2 file shows the errors.
 
 You need libpng in order to build some server tools.  Not just the
  user libraries, but the development package (header files).  Install
  the libpng development package and run make (probably don't need a
  whole make World).
 
 
  Mark.
 
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86
 
 
 
 --
 Email.it, the professional e-mail, gratis per te: http://www.email.it/f
 
 Sponsor:
 Dai il suo nome ad una stella, un giorno speciale,una ricorrenza, un regalo unico e 
 prezioso,
 REGALA UNA STELLA, sarà tua per sempre!
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=1499d=16-9


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


[XFree86] driver compatibility

2003-09-19 Thread NetLogic Net NetLogic
  Dear sir,

   I have installed linux 8 red hat in my pc whose 
configuration is PIV0-2.40 GHz and 845gbve2 board.

xwindow does not started. please suggest me what to 
do?.

  Thanking you.
___
Meet your old school or college friends from
1 Million + database...
Click here to reunite www.batchmates.com/rediff.asp
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] RE: now increase your gas mileage 27%+ iqjlskplnn nle

2003-09-19 Thread Sal Russo
paying at the pump?

http://www.jbtws.org/default.asp?axel=8577





















hbrt kfixoq ss  lpiyycz
kaklqdtgmygrz h cr  a
lxliuk xhxu yhtx

Re: [XFree86] Videocard driver

2003-09-19 Thread bill and kary
go to nvidia site.  download the linux driver.  it should be 
NVIDIA-*.run.  bring down your X server.  type sh 
./NVIDIA-*.run.  Follow the prompts.  You will then put nvidia 
instead of nv in the driver section of the XF86Config file.  After you 
restart X you will find that your display will be much faster, have more 
available resolutions, and be 3D enabled (Tux racer anyone?).  Good luck.

Bill.

James Laine wrote:

I am installing Linux Debian on my home computer but at the time when 
the installer ask me for the driver needed, am unable to select a 
choice since, NVIDIA GeForce 2 is not in the selection, so if anyone 
knows the equivalent of that driver, it would be appriciated.

P.s also send me the instruction on how to install it  and where can i 
get it.



James,

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


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