Re: working xorg config for ATI Radeon 3850

2009-01-15 Thread Warren Block

On Thu, 15 Jan 2009, Robert Huff wrote:


Does anyone have a working X.org config file for the ATI Radeon
3850?  That they'd be willing to share?
I'm converting from a different card and would rather not
reinvent the wheel.


This worked for me under 8-CURRENT and with the not-yet-released xorg 
7.4.  I don't think there's anything special about it.  No acceleration 
on the HD 3850 yet.


Section "ServerLayout"
Identifier "X.org Configured"
Screen  0  "Screen0" 0 0
InputDevice"Mouse0" "CorePointer"
InputDevice"Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath  "/usr/local/share/X11/rgb"
ModulePath   "/usr/local/lib/xorg/modules"
FontPath "/usr/local/lib/X11/fonts/misc/"
FontPath "/usr/local/lib/X11/fonts/TTF/"
FontPath "/usr/local/lib/X11/fonts/OTF"
FontPath "/usr/local/lib/X11/fonts/Type1/"
FontPath "/usr/local/lib/X11/fonts/100dpi/"
FontPath "/usr/local/lib/X11/fonts/75dpi/"
EndSection

Section "Module"
Load  "GLcore"
Load  "xtrap"
EndSection

Section "InputDevice"
Identifier  "Keyboard0"
Driver  "kbd"
EndSection

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

Section "DRI"
Group "video"
Mode  0660
EndSection

Section "Monitor"
#DisplaySize  370   300 # mm
Identifier   "Monitor0"
VendorName   "PNR"
ModelName"Planar PE190"
 ### Comment all HorizSync and VertRefresh values to use DDC:
HorizSync24.0 - 80.0
VertRefresh  56.0 - 75.0
Option  "DPMS"
EndSection

Section "Device"
Identifier  "Card0"
Driver  "radeon"
VendorName  "ATI Technologies Inc"
BoardName   "Unknown Board"
BusID   "PCI:1:0:0"
Option  "AccelMethod" "EXA"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor"Monitor0"
DefaultDepth 24
SubSection "Display"
Virtual 1280 1024
EndSubSection
EndSection


-Warren Block * Rapid City, South Dakota USA
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


working xorg config for ATI Radeon 3850

2009-01-15 Thread Robert Huff

Does anyone have a working X.org config file for the ATI Radeon
3850?  That they'd be willing to share?
I'm converting from a different card and would rather not
reinvent the wheel.


Robert Huff
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Xorg config

2008-04-23 Thread Da Rock
I could use some more detailed information on setting up Xorg- I have a
USB Shintaro wireless keyboard with integrated trackball, and a touch
screen which is not cooperating with my setup. I tried Xorg -configure,
and running xorgconfig, but it still can't seem to find the devices.

Another thing is I have disabled mouse for the console, but Xorg still
looks to /dev/sysmouse. I'm not sure if this is important or it can be
ignored in this case.

Cheers

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config

2008-01-22 Thread Nerius Landys
 I don't know why you didn't succeed in installing 'xorg-server' during your
> installation if that was indeed your intent.
>

Read the Handbook section on installing X if you want to try installing or
configuring X post-install:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/x11.html

Actually according to the handbook the package you want to have on your
system is 'xorg', which can be found in /usr/ports/x11/xorg/ in case you
want to build from source.  But this package probably in turn depends on
'xorg-server', so your 'Xorg' file which is part of 'xorg-server' should be
installed once you install the 'xorg' package.  'pkg_add -r xorg' or 'make
install clean' from /usr/ports/x11/xorg/.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config

2008-01-22 Thread Nerius Landys
>I've followed the installation instructions in the book FreeBSD 6
> Unleashed and (finally) gotten it installed.  Now I proceed to the
> setting up of X, where the book says to log in as root, and type Xorg
> -configure .  I do that and get a response something like Xorg command
> not known.  During the installation, I selected Install it all including
> X.  This is version 6.3 by the way.  And this is about the 3rd or 4th
> attempt at installation on this HDD.  Some help would be appreciated.
>

Below is an interaction with my shell.  I'll explain what I'm doing
afterwards.



 [EMAIL PROTECTED] which Xorg
/usr/local/bin/Xorg
[EMAIL PROTECTED] pkg_info -W /usr/local/bin/Xorg
/usr/local/bin/Xorg was installed by package xorg-server-1.4_3,1
[EMAIL PROTECTED] pkg_info -do xorg-server-1.4_3,1
Information for xorg-server-1.4_3,1:

Description:
This package contains the X.Org X server and some associated programs.

WWW: http://www.freedesktop.org/Software/xorg

- Eric Anholt
[EMAIL PROTECTED]


Origin:
x11-servers/xorg-server

[EMAIL PROTECTED]




What I'm doing is trying to see which package the file 'Xorg' belongs to,
and I'm trying to get some information about that package.  What I found out
is that the file in question belongs to the package xorg-server-1.4_3,1, and
that if you have the ports tree installed, the ports directory would be
/usr/ports/x11-servers/xorg-server/.  So if you want to check to see if the
package which provides the file 'Xorg' is installed on your system, issue
the command 'pkg_info | grep xorg-server'.  If you see output then the
package you need is already installed.  Otherwise install the package
'xorg-server' in one of two ways: either install the pre-built binary [port]
by issuing the command 'pkg_add -r xorg-server' or build the port from
source by going to /usr/ports/x11-servers/xorg-server/ and doing a 'make
install clean'.  I don't know why you didn't succeed in installing
'xorg-server' during your installation if that was indeed your intent.

Instead of taking my advice above you really ought to read the Handbook
section on packages and ports:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports.html  You
can learn a lot and the documentation if really excellent.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config

2008-01-22 Thread Pieter Baele

On 22 Jan 2008, at 21:41, Jerry Breazeale wrote:


Newbie question here.
	I've followed the installation instructions in the book FreeBSD 6  
Unleashed and (finally) gotten it installed.  Now I proceed to the  
setting up of X, where the book says to log in as root, and type  
Xorg -configure .  I do that and get a response something like Xorg  
command not known.  During the installation, I selected Install it  
all including X.  This is version 6.3 by the way.  And this is about  
the 3rd or 4th attempt at installation on this HDD.  Some help would  
be appreciated.


Just follow the steps in the online freebsd handbook. First try  
startx, if that doesn't work, X is really not installed.


	By the way, after each of the first couple attempts at  
installation,during which I'd set up a separate /boot partition, I  
couldn't get FreeBSD to boot from the HDD.  The book had no caution  
about not using a separate /boot partition, but that's what I found  
to be causing the problem.  I installed again but without a  
separate /boot partition, and can now boot from the HDD.


Jerry


You decide which partition scheme to use. /boot is used on Linux.
The default layout the freebsd installer proposes (A auto) is a very  
good one, especially when new to FBSD.



Pieter Baele
[EMAIL PROTECTED]
VIM has two modes. The one in which it beeps and the one in which it  
doesn't.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Xorg config

2008-01-22 Thread Jerry Breazeale

Newbie question here.
	I've followed the installation instructions in the book FreeBSD 6 
Unleashed and (finally) gotten it installed.  Now I proceed to the 
setting up of X, where the book says to log in as root, and type Xorg 
-configure .  I do that and get a response something like Xorg command 
not known.  During the installation, I selected Install it all including 
X.  This is version 6.3 by the way.  And this is about the 3rd or 4th 
attempt at installation on this HDD.  Some help would be appreciated.


	By the way, after each of the first couple attempts at 
installation,during which I'd set up a separate /boot partition, I 
couldn't get FreeBSD to boot from the HDD.  The book had no caution 
about not using a separate /boot partition, but that's what I found to 
be causing the problem.  I installed again but without a separate /boot 
partition, and can now boot from the HDD.


Jerry
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config problems

2006-03-11 Thread Wojciech Puchar

switched to Xorg for these machines a while back, and was pleased to find
that I did not have to create a config file for Xorg as it was able to
autodetect all the correct stuff.

anyway - it's always better to create this file based on autoconfig made 
by -configure option. it's quite unlikely autodetect will get the most of 
your monitor and card.


and in your case - autoconfig can't deal with such cases. but for CL5446 i 
have my config already done for 1024x768x16bit display - if you like.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config problems

2006-03-11 Thread [EMAIL PROTECTED]
On 3/11/06, stan <[EMAIL PROTECTED]> wrote:
> I recycle old P2 class machines for a set of applications at work. I
> switched to Xorg for these machines a while back, and was pleased to find
> that I did not have to create a config file for Xorg as it was able to
> autodetect all the correct stuff.
>
> Today, though I ran up on 2 machines that are the older end of the spectrum
> of machines that I use for this, and for some reason this does not seem to
> be working.
snip
> (WW) CIRRUS(0): Mode pool is empty
> (EE) CIRRUS(0): No valid modes found

Usually this means you need to specify your horizontal
and vertical sync and refresh rates.
I would run:
X -configure
cp xorg.conf.new /etc/X11/xorg.conf
then add some lines like:

Section "Monitor"
Identifier  "Barfy"
HorizSync   31-92 # Taken from my monitor,
VertRefresh 55-160   # Don't use these values.
EndSection

and change

Section "Screen"
Monitor "Barfy"

Frequently on older cards the monitor's capabilities
cannot be detected which can lead to very conservative
defaults which can lead to no valid modes.

There is a database of these values (I've found it to be
accurate, if incomplete):
http://www.monitorworld.com/monitors_home.html

--
--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config problems

2006-03-11 Thread Kevin Kinsey

stan wrote:


I recycle old P2 class machines for a set of applications at work. I
switched to Xorg for these machines a while back, and was pleased to find
that I did not have to create a config file for Xorg as it was able to
autodetect all the correct stuff.

Today, though I ran up on 2 machines that are the older end of the spectrum
of machines that I use for this, and for some reason this does not seem to
be working.

Here's the Xorg logfiel from oen of these amchines:
 






(WW) CIRRUS(0): Mode pool is empty
(EE) CIRRUS(0): No valid modes found
(II) UnloadModule: "cirrus"
(II) UnloadModule: "ddc"
(II) Unloading /usr/X11R6/lib/modules/libddc.so
(II) UnloadModule: "i2c"
(II) Unloading /usr/X11R6/lib/modules/libi2c.so
(II) UnloadModule: "int10"
(II) Unloading /usr/X11R6/lib/modules/libint10.so
(II) UnloadModule: "vgahw"
(II) Unloading /usr/X11R6/lib/modules/libvgahw.so
(II) UnloadModule: "cirrus_alpine"
(EE) Screen(s) found, but none have a usable configuration.

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
	 at http://wiki.X.Org
for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional information.



My guess is thta the graphics cards on these machiens ahve too lilltle
memory to work with the default set of assumptions on these machines.
However I really don't need very hi-res displays on these amchines.

Any sugestions as to how to get Xorg to work with these machines?
 



Hmm.  Looks like you'll need to make some spec changes in
a config file.  Generate one with `Xorg -configure` ... it won't
actually run X, but will test and tell you where it placed the
file.  Try X again, and make sure it's finding said file (check
the output on ttyv0 or wherever ... log file will say also IIRC).

You'll then need to tweak Refresh rates and Sync for your
monitors and see what happens. 


Please include standard disclaimers, waivers of damages
and remember YMMV and all that.   ;-)

HTH,

Kevin Kinsey

--
The meta-Turing test counts a thing as intelligent if it seeks to
devise and apply Turing tests to objects of its own creation.
-- Lew Mammel, Jr.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config problems

2006-03-11 Thread Micah

stan wrote:

I recycle old P2 class machines for a set of applications at work. I
switched to Xorg for these machines a while back, and was pleased to find
that I did not have to create a config file for Xorg as it was able to
autodetect all the correct stuff.

Today, though I ran up on 2 machines that are the older end of the spectrum
of machines that I use for this, and for some reason this does not seem to
be working.

Here's the Xorg logfiel from oen of these amchines:

*SNIP*

My guess is thta the graphics cards on these machiens ahve too lilltle
memory to work with the default set of assumptions on these machines.
However I really don't need very hi-res displays on these amchines.

Any sugestions as to how to get Xorg to work with these machines?




Try doing an X -configure, which will write out an xorg.conf file for 
you.  You can then tweak the settings to something that works.  It looks 
like, from the log you sent, that the hsync refresh rate that Xorg is 
guessing is wrong.  You might be able to google on your video card and 
find the right setting.


HTH,
Micah
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Xorg config problems

2006-03-11 Thread stan
I recycle old P2 class machines for a set of applications at work. I
switched to Xorg for these machines a while back, and was pleased to find
that I did not have to create a config file for Xorg as it was able to
autodetect all the correct stuff.

Today, though I ran up on 2 machines that are the older end of the spectrum
of machines that I use for this, and for some reason this does not seem to
be working.

Here's the Xorg logfiel from oen of these amchines:



X Window System Version 6.9.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: FreeBSD 6.1 i386 [ELF] 
Current Operating System: FreeBSD pulpsysal.fas.com 6.1-PRERELEASE FreeBSD 
6.1-PRERELEASE #0: Sat Mar  4 13:00:51 EST 2006 [EMAIL 
PROTECTED]:/usr/obj/usr/src/sys/GENERIC i386
Build Date: 06 March 2006
Before reporting problems, check http://wiki.X.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/Xorg.0.log", Time: Sat Mar 11 10:55:35 2006
(EE) Unable to locate/open config file
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.8
X.Org XInput driver : 0.5
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on freebsd
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.9.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.9.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

(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,1237 card , rev 02 class 06,00,00 hdr 00
(II) PCI: 00:04:0: chip 8086,7000 card , rev 01 class 06,01,00 hdr 80
(II) PCI: 00:04:1: chip 8086,7010 card , rev 00 class 01,01,80 hdr 00
(II) PCI: 00:06:0: chip 8086,1229 card 8086,0001 rev 02 class 02,00,00 hdr 00
(II) PCI: 00:0d:0: chip 1013,00b8 card ,00ff rev 45 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,0), 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:4:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(0:13:0) Cirrus Logic GD 5446 rev 69, Mem @ 0xfc00/25, 
0xfecff000/12
xf86AutoConfig: Primary PCI is 0:13:0
Running "/usr/X11R6/bin/getconfig -X 6090 -I 
/etc/X11,/usr/X11R6/etc/X11,/usr/X11R6/lib/modules,/usr/X11R6/lib/X11/getconfig 
-v 0x1013 -d 0x00b8 -r 0x45 -s 0x -b 0x00ff -c 0x0300"
New driver is "cirrus"
(==) Using default built-in configuration (53 lines)
(==) --- Start of built-in configuration ---
Section "Module"
Load"extmod"
Load"dbe"
Load"glx"
Load"freetype"
EndSection
Section "Monitor"
Identifier  "Builtin Default Monitor"
Option  "TargetRefresh" "75.0"
EndSection
Section "Device"
Identifier  "Builtin Default cirrus Device 0"
Driver  "cirrus"
EndSection
Section "Screen"
Identifier  "Builtin Default cirrus Screen 0"
Device  "Builtin Default cirrus Device 0"
Monitor "Builtin Default Monitor"
EndSection
Section "Device"
Identifier  "Builtin Default fbdev Device 0"
Driver  "fbdev"
EndSection
Section "Screen"
Identifier  "Builtin Default fbdev Screen 0"
Device  "Builtin Default fbdev Device 0"
Monitor "Builtin Default Monitor"
EndSection
Section "Device"
Identifier  "Builtin Default vesa Device 0"
Driver  "vesa"
EndSection
Section "Screen"
Identifier  "Builtin Default vesa Screen 0"
Device  "Builtin Default vesa Device 0"
Monitor "Builtin Default Monitor

Xorg Config Problem-[drm] failed to load kernel module "i915"

2005-04-09 Thread Bob Perry
I've just installed FreeBSD 5.3-RELEASE #0 and ran into a 
problem configuring X Window System Version 6.8.2.  
I have an ASUS P4P800 motherboard with a built-in graphic 
card (Intel 865G GMCH I believe).

I receive the following error message when running the 
configuration test:

[drm] failed to load kernel module "i915"
(EE) I810(0): [dri] DRIScreenInit failed.  Disabling DRI.

This seems similar to the problem you had with the Intel chipset 
945.  I read your comment (below) but don't fully understand what steps 
were required.  Could you provide more detail? 

"I solved this problem by using the text configuration tool via the 
xorgconfig command.  I picked the i810 chipset driver and Xorg started up 
just fine."



Thank you,
Bob Perry


-- 
I've learned that whatever hits the fan will not be evenly
distributed.

FreeBSD 4.9-RELEASE-p2 #0
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Where are the Xorg config files ?

2005-02-25 Thread Edward Lichtner
> On Thursday, 24 February 2005 at 22:59:54 +0100, Edward Lichtner wrote:
>> Hi all,
>> I installed FreeBSD 5.3 along with Xorg 6.7.0-9 and KDE 3.3.0-4. I started
>> KDE by creating an .xinitrc file in my home directory containing the line :
>> exec startkde
>> I then run startx and KDE starts up and works fine.
>> However, there is no xorg.conf file in /etc/X11 or in /usr/X11R6/etc/X11,
>> and a ³find² search reveals no xorg.conf file anywhere. Since KDE seems to
>> work out of the box, I assume there is a config file that has been generated
>> for Xorg somewhere.
>> Any idea where I can find it ?
> 
> Look in your /var/log/Xorg.0.log.  You should see something like:
> 
> Release Date: 18 December 2003
> X Protocol Version 11, Revision 0, Release 6.7
> Build Operating System: FreeBSD 5.2 i386 [ELF]
> Current Operating System: FreeBSD wantadilla.lemis.com 5.2-CURRENT FreeBSD
> 5.2-CURRENT #1: Tue Jul 20 09:24:15 CST 2004
> [EMAIL PROTECTED]:/usr/obj/src/FreeBSD/WANTADILLA/src/sys/WANTADILLA
> i386
> Build Date: 20 July 2004
> Before reporting problems, check http://wiki.X.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/Xorg.0.log", Time: Fri Dec 24 18:25:30 2004
> (==) Using config file: "/etc/XF86Config"
> 
> (etc).  You'll note in this case that it fell back to the XF86Config.
> This may be what's happening to you.
> 
> Greg
> --
> When replying to this message, please copy the original recipients.
> If you don't, I may ignore the reply or reply to the original recipients.
> For more information, see http://www.lemis.com/questions.html
> See complete headers for address and phone numbers.
> 

Hi Greg,
I checked /var/log/Xorg.0.log. The file starts the same as yours. But the
line that on your system says :

(==) Using config file: "/etc/XF86Config"

Says on mine :

(EE) Unable to locate/open config file

It seems that my system uses default values instead. And KDE starts up OK.
Is there a reason why I should consider creating a config file anyway ?
Edward

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Where are the Xorg config files ?

2005-02-25 Thread Lowell Gilbert
Gary Kline <[EMAIL PROTECTED]> writes:

> 
>   Strangr things: xdm eventually brings up
>   the gray stippled bg with the "X" cursor;
>   then the CRT clicks, screen goes black,
>   and after several seconds it retries.
> 
>   Seems to be in an infinite loop.  Not even
>gets me to an alt vtty 
>   long enough to log in and shutdown.  I've
>   had to power down to get out.  Both 
>   xorgcfg and xorgconfig have the same 
>   results.  

Sounds more like your user doesn't have a working .xsession file...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Where are the Xorg config files ?

2005-02-25 Thread Gary Kline
On Fri, Feb 25, 2005 at 05:58:46PM +1030, Greg 'groggy' Lehey wrote:
> On Thursday, 24 February 2005 at 22:26:52 -0800, Gary Kline wrote:
> > On Fri, Feb 25, 2005 at 10:01:27AM +1030, Greg 'groggy' Lehey wrote:
> >> On Thursday, 24 February 2005 at 22:59:54 +0100, Edward Lichtner wrote:
> >>> Hi all,
> >>> I installed FreeBSD 5.3 along with Xorg 6.7.0-9 and KDE 3.3.0-4. I started
> >>> KDE by creating an .xinitrc file in my home directory containing the line 
> >>> :
> >>> exec startkde
> >>> I then run startx and KDE starts up and works fine.
> >>> However, there is no xorg.conf file in /etc/X11 or in /usr/X11R6/etc/X11,
> >>> and a ³find² search reveals no xorg.conf file anywhere. Since KDE seems to
> >>> work out of the box, I assume there is a config file that has been 
> >>> generated
> >>> for Xorg somewhere.
> >>> Any idea where I can find it ?
> >>
> >> Look in your /var/log/Xorg.0.log.  You should see something like:
> >>
> >>   ...
> >>   (==) Using config file: "/etc/XF86Config"
> >>
> >> (etc).  You'll note in this case that it fell back to the XF86Config.
> >> This may be what's happening to you.
> >
> > You gave me a clue, but looking ikn in log at my Xorg.0.log
> > file, doesn't help me much.
> 
> It helps me a lot:
> 
> > (EE) Unable to locate/open config file
> > ...
> > (==) Using default built-in configuration (53 lines)
> > (==) --- Start of built-in configuration ---
> > Section "Module"
> 
> You need to look at this config file. 
> 

The first dozen+ lines make sense, 
but not much more.


> > xdm only works without any config file.  It works at 1600x1200 but
> > everything quivers, so my guess is that I'm driving the tube to its
> > max.  Or beyond.
> 
> Possibly.
> 
> > Any idea how I can get xorg.conf that runs things at
> > 1280x1024?  I've tried xorgcfg so far without success.
> 
> What happened when you tried?
> 

Strangr things: xdm eventually brings up
the gray stippled bg with the "X" cursor;
then the CRT clicks, screen goes black,
and after several seconds it retries.

Seems to be in an infinite loop.  Not even
 gets me to an alt vtty 
long enough to log in and shutdown.  I've
had to power down to get out.  Both 
xorgcfg and xorgconfig have the same 
results.  

gary




-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Where are the Xorg config files ?

2005-02-24 Thread Greg 'groggy' Lehey
On Thursday, 24 February 2005 at 22:26:52 -0800, Gary Kline wrote:
> On Fri, Feb 25, 2005 at 10:01:27AM +1030, Greg 'groggy' Lehey wrote:
>> On Thursday, 24 February 2005 at 22:59:54 +0100, Edward Lichtner wrote:
>>> Hi all,
>>> I installed FreeBSD 5.3 along with Xorg 6.7.0-9 and KDE 3.3.0-4. I started
>>> KDE by creating an .xinitrc file in my home directory containing the line :
>>> exec startkde
>>> I then run startx and KDE starts up and works fine.
>>> However, there is no xorg.conf file in /etc/X11 or in /usr/X11R6/etc/X11,
>>> and a ³find² search reveals no xorg.conf file anywhere. Since KDE seems to
>>> work out of the box, I assume there is a config file that has been generated
>>> for Xorg somewhere.
>>> Any idea where I can find it ?
>>
>> Look in your /var/log/Xorg.0.log.  You should see something like:
>>
>>   ...
>>   (==) Using config file: "/etc/XF86Config"
>>
>> (etc).  You'll note in this case that it fell back to the XF86Config.
>> This may be what's happening to you.
>
>   You gave me a clue, but looking ikn in log at my Xorg.0.log
>   file, doesn't help me much.

It helps me a lot:

> (EE) Unable to locate/open config file
> ...
> (==) Using default built-in configuration (53 lines)
> (==) --- Start of built-in configuration ---
>   Section "Module"

You need to look at this config file. 

> xdm only works without any config file.  It works at 1600x1200 but
> everything quivers, so my guess is that I'm driving the tube to its
> max.  Or beyond.

Possibly.

>   Any idea how I can get xorg.conf that runs things at
>   1280x1024?  I've tried xorgcfg so far without success.

What happened when you tried?

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers.


pgpxI7yQn85do.pgp
Description: PGP signature


Re: Where are the Xorg config files ?

2005-02-24 Thread Gary Kline
On Fri, Feb 25, 2005 at 10:01:27AM +1030, Greg 'groggy' Lehey wrote:
> On Thursday, 24 February 2005 at 22:59:54 +0100, Edward Lichtner wrote:
> > Hi all,
> > I installed FreeBSD 5.3 along with Xorg 6.7.0-9 and KDE 3.3.0-4. I started
> > KDE by creating an .xinitrc file in my home directory containing the line :
> > exec startkde
> > I then run startx and KDE starts up and works fine.
> > However, there is no xorg.conf file in /etc/X11 or in /usr/X11R6/etc/X11,
> > and a ³find² search reveals no xorg.conf file anywhere. Since KDE seems to
> > work out of the box, I assume there is a config file that has been generated
> > for Xorg somewhere.
> > Any idea where I can find it ?
> 
> Look in your /var/log/Xorg.0.log.  You should see something like:
> 
>   Release Date: 18 December 2003
>   X Protocol Version 11, Revision 0, Release 6.7
>   Build Operating System: FreeBSD 5.2 i386 [ELF] 
>   Current Operating System: FreeBSD wantadilla.lemis.com 5.2-CURRENT FreeBSD 
> 5.2-CURRENT #1: Tue Jul 20 09:24:15 CST 2004 [EMAIL 
> PROTECTED]:/usr/obj/src/FreeBSD/WANTADILLA/src/sys/WANTADILLA i386
>   Build Date: 20 July 2004
>   Before reporting problems, check http://wiki.X.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/Xorg.0.log", Time: Fri Dec 24 18:25:30 2004
>   (==) Using config file: "/etc/XF86Config"
> 
> (etc).  You'll note in this case that it fell back to the XF86Config.
> This may be what's happening to you.
> 


You gave me a clue, but looking ikn in log at my Xorg.0.log
file, doesn't help me much.  xdm only works without any
config file.  It works at 1600x1200 but everything quivers,
so my guess is that I'm driving the tube to its max.  Or
beyond.

Any idea how I can get xorg.conf that runs things at 1280x1024?
I've tried  xorgcfg so far without success.

gary

Encl: Xorg.0.log  (apologies fot its length)


-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix


X Window System Version 6.8.1
Release Date: 17 September 2004
X Protocol Version 11, Revision 0, Release 6.8.1
Build Operating System: FreeBSD 5.3 i386 [ELF] 
Current Operating System: FreeBSD sartre.thought.org 5.3-STABLE FreeBSD 
5.3-STABLE #2: Mon Jan  3 17:35:49 PST 2005 [EMAIL 
PROTECTED]:/usr/obj/usr/src/sys/SARTRE i386
Build Date: 25 February 2005
Before reporting problems, check http://wiki.X.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/Xorg.0.log", Time: Fri Feb 25 05:06:02 2005
(EE) Unable to locate/open config file
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on freebsd
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.8.1, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.8.1, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

(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,7180 card , rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7181 card , rev 03 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 8086,7110 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7111 card , rev 01 class 01,01,80 hdr 00
(II) PCI: 00:07:2: chip 8086,7112 card , rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 8086,7113 card , rev 02 class 06,80,00 hdr 00
(II) PCI: 00:0b:0: chip 1013,6003 card , rev 01 class 04,01,00 hdr 00
(II) PCI: 00:12:0: chip 1317,0985 card 1317,0574 rev 11 class 02,00,00 hdr 00
(II) PCI: 00:13:0: chip 1317,0985 card 1317,0570 rev 11 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4742 card 1002,4742 rev 5c 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 

Re: Where are the Xorg config files ?

2005-02-24 Thread Greg 'groggy' Lehey
On Thursday, 24 February 2005 at 22:59:54 +0100, Edward Lichtner wrote:
> Hi all,
> I installed FreeBSD 5.3 along with Xorg 6.7.0-9 and KDE 3.3.0-4. I started
> KDE by creating an .xinitrc file in my home directory containing the line :
> exec startkde
> I then run startx and KDE starts up and works fine.
> However, there is no xorg.conf file in /etc/X11 or in /usr/X11R6/etc/X11,
> and a ³find² search reveals no xorg.conf file anywhere. Since KDE seems to
> work out of the box, I assume there is a config file that has been generated
> for Xorg somewhere.
> Any idea where I can find it ?

Look in your /var/log/Xorg.0.log.  You should see something like:

  Release Date: 18 December 2003
  X Protocol Version 11, Revision 0, Release 6.7
  Build Operating System: FreeBSD 5.2 i386 [ELF] 
  Current Operating System: FreeBSD wantadilla.lemis.com 5.2-CURRENT FreeBSD 
5.2-CURRENT #1: Tue Jul 20 09:24:15 CST 2004 [EMAIL 
PROTECTED]:/usr/obj/src/FreeBSD/WANTADILLA/src/sys/WANTADILLA i386
  Build Date: 20 July 2004
Before reporting problems, check http://wiki.X.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/Xorg.0.log", Time: Fri Dec 24 18:25:30 2004
  (==) Using config file: "/etc/XF86Config"

(etc).  You'll note in this case that it fell back to the XF86Config.
This may be what's happening to you.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers.


pgpPOCDCiuOhC.pgp
Description: PGP signature


Re: Where are the Xorg config files ?

2005-02-24 Thread Pietro Cerutti
Hi there,
to run X you first have to run xorgconfig, to configure your X server.
After that, you'll find a file in /etc/X11/xorg.conf
Hope this helps,
Edward Lichtner wrote:
Hi all,
I installed FreeBSD 5.3 along with Xorg 6.7.0-9 and KDE 3.3.0-4. I started
KDE by creating an .xinitrc file in my home directory containing the line :
exec startkde
I then run startx and KDE starts up and works fine.
However, there is no xorg.conf file in /etc/X11 or in /usr/X11R6/etc/X11,
and a ³find² search reveals no xorg.conf file anywhere. Since KDE seems to
work out of the box, I assume there is a config file that has been generated
for Xorg somewhere.
Any idea where I can find it ?
Thanks,
Edward
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

--
Pietro Cerutti
-- Powered by FreeBSD --
SDF Public Access UNIX System
sdf.lonestar.org
--
Pietro Cerutti
-- Powered by FreeBSD --
SDF Public Access UNIX System
sdf.lonestar.org
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Where are the Xorg config files ?

2005-02-24 Thread Edward Lichtner
Hi all,
I installed FreeBSD 5.3 along with Xorg 6.7.0-9 and KDE 3.3.0-4. I started
KDE by creating an .xinitrc file in my home directory containing the line :
exec startkde
I then run startx and KDE starts up and works fine.
However, there is no xorg.conf file in /etc/X11 or in /usr/X11R6/etc/X11,
and a ³find² search reveals no xorg.conf file anywhere. Since KDE seems to
work out of the box, I assume there is a config file that has been generated
for Xorg somewhere.
Any idea where I can find it ?
Thanks,
Edward

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config failure - help requested

2005-01-29 Thread Alan E. Beard
On Sat, 29 Jan 2005, John wrote:
On Sat, Jan 29, 2005 at 10:47:08AM -0500, Alan E. Beard wrote:
> Folks:
> 
> Your kind help is solicited in the matter of an xorg config which fails
> to initialize on
>"(EE) Screen(s) found, but none have a usable configuration."
> 
> Hardware is Sony PCV-L640, which is packaged from the manufacturer with
> an LCD display, Sony part number PCVA-15XTAP2.  The maker's spec on the
> display calls out native resolution of 1024x768, and vidcontrol seems to
> confirm this.  Additionally, DDC seems to find the display and read a
> reasonable set of parms. This notwithstanding, xorg server
> initialization fails.
> 
> I've tried explicitly specifying DisplaySize, HorizSync, VertRefresh in 
> the Monitor block of the conf file, to no avail.
> 
> Log files, config files, and supporting data below.
> 
> Any ideas concerning some means of torturing this config into working
> will be welcome.

I had the same sorts of problems trying to use the x config scripts.
My advice is to ignore the config scripts and follow the simple
procedure in the FreeBSD handbook - "X -configure" and then test,
check the log file to see if the monitor information is in there,
or if not, search the web for an X11 entry for your monitor, or
dig up the monitor specs and build it by hand.  Other than the
monitor part, it is quick and easy.
The procedure you describe above was executed in this case; the conf file 
in the original message was generated by 'Xorg -configure', and the log 
file was generated by 'Xorg -conf /root/xorg.conf.new'.  Additionally, the 
same release of xorg is running successfully on three of my 12 machines - 
the others run x clients only (in the case of the headless boxes), or (in 
two cases) are still running 4.10 with XFree86. This problem appears to be 
specific to the particular hardware configuration described in my initial 
note. (By way of explanation, the machine in question had run W2K until 
last week, but I decided to upgrade it to FreeBSD 5.3 for better 
reliability and improved function.) I have searched the X.org archives 
(and even resorted to google) for config information specific to the 
display called out above - with null result.

Now I have X.org up and runnning on four different machines - and
I'm loving it!
See above. Perhaps a detailed look at the log file will reveal to you a 
clue which I have overlooked.  I've not yet tried an explcit 'modeline' 
config - but my interpretation of the log from a subsequent run with the 
explicit monitor parms generated by -configure (but commented out in the 
auto-generated config) uncommented seems to indicate that the 
initialization process is failing to read the "Monitor" block, or the 
values are being overridden.

Any substantive notions will be welcome.
Regards,
AEB
--
Alan E. Beard <[EMAIL PROTECTED]>
AEBeard Consulting; 4109 Chelsea Ln; Lakeland FL 33809
863.815.2529
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Xorg config failure - help requested

2005-01-29 Thread John
On Sat, Jan 29, 2005 at 10:47:08AM -0500, Alan E. Beard wrote:
> Folks:
> 
> Your kind help is solicited in the matter of an xorg config which fails
> to initialize on
>"(EE) Screen(s) found, but none have a usable configuration."
> 
> Hardware is Sony PCV-L640, which is packaged from the manufacturer with
> an LCD display, Sony part number PCVA-15XTAP2.  The maker's spec on the
> display calls out native resolution of 1024x768, and vidcontrol seems to
> confirm this.  Additionally, DDC seems to find the display and read a
> reasonable set of parms. This notwithstanding, xorg server
> initialization fails.
> 
> I've tried explicitly specifying DisplaySize, HorizSync, VertRefresh in 
> the Monitor block of the conf file, to no avail.
> 
> Log files, config files, and supporting data below.
> 
> Any ideas concerning some means of torturing this config into working
> will be welcome.

I had the same sorts of problems trying to use the x config scripts.

My advice is to ignore the config scripts and follow the simple
procedure in the FreeBSD handbook - "X -configure" and then test,
check the log file to see if the monitor information is in there,
or if not, search the web for an X11 entry for your monitor, or
dig up the monitor specs and build it by hand.  Other than the
monitor part, it is quick and easy.

Now I have X.org up and runnning on four different machines - and
I'm loving it!
-- 

John Lind
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Xorg config failure - help requested

2005-01-29 Thread Alan E. Beard
Folks:
Your kind help is solicited in the matter of an xorg config which fails
to initialize on
  "(EE) Screen(s) found, but none have a usable configuration."
Hardware is Sony PCV-L640, which is packaged from the manufacturer with
an LCD display, Sony part number PCVA-15XTAP2.  The maker's spec on the
display calls out native resolution of 1024x768, and vidcontrol seems to
confirm this.  Additionally, DDC seems to find the display and read a
reasonable set of parms. This notwithstanding, xorg server
initialization fails.
I've tried explicitly specifying DisplaySize, HorizSync, VertRefresh in 
the Monitor block of the conf file, to no avail.

Log files, config files, and supporting data below.
Any ideas concerning some means of torturing this config into working
will be welcome.
Thanks.
AEB
**
/var/log/Xorg.0.log
X Window System Version 6.8.1
Release Date: 17 September 2004
X Protocol Version 11, Revision 0, Release 6.8.1
Build Operating System: FreeBSD 5.3 i386 [ELF] 
Current Operating System: FreeBSD susanna.aebeard.net 5.3-RELEASE-p5 FreeBSD 5.3-RELEASE-p5 #0: Sat Jan 22 07:38:39 EST 2005 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC i386
Build Date: 22 January 2005
	Before reporting problems, check http://wiki.X.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/Xorg.0.log", Time: Wed Jan 26 09:56:29 2005
(++) Using config file: "/root/xorg.conf.new"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(WW) `fonts.dir' not found (or not valid) in "/usr/X11R6/lib/X11/fonts/CID/".
	Entry deleted from font path.
	(Run 'mkfontdir' on "/usr/X11R6/lib/X11/fonts/CID/").
(**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/TTF/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(**) ModulePath set to "/usr/X11R6/lib/modules"
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.2
	X.Org Video Driver: 0.7
	X.Org XInput driver : 0.4
	X.Org Server Extension : 0.2
	X.Org Font Renderer : 0.4
(II) Loader running on freebsd
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
	compiled for 6.8.1, module version = 1.0.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 6.8.1, module version = 1.0.0
	ABI class: X.Org Video Driver, version 0.7
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

(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,7190 card , rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card , rev 03 class 06,04,00 hdr 01
(II) PCI: 00:03:0: chip 104c,8009 card 104d,8032 rev 01 class 0c,00,10 hdr 00
(II) PCI: 00:05:0: chip 1180,0475 card fffc, rev 80 class 06,07,00 hdr 02
(II) PCI: 00:06:0: chip 12eb,0003 card 104d,807c rev 03 class 04,01,00 hdr 00
(II) PCI: 00:07:0: chip 8086,7110 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7111 card , rev 01 class 01,01,80 hdr 00
(II) PCI: 00:07:2: chip 8086,7112 card , rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 8086,7113 card , rev 02 class 06,80,00 hdr 00
(II) PCI: 00:08:0: chip 104d,808a card 104d,808c rev 01 class 05,01,00 hdr 00
(II) PCI: 00:0a:0: chip 11c1,044e card 13e0,0405 rev 00 class 07,80,00 hdr 00
(II) PCI: 00:0b:0: chip 10ec,8139 card 1186,1300 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5052 card 104d,808b 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,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0088 (VGA_EN is set)
(II) Bus 1 I/O range: