X - no screens found - error

Hi, I'm new to FreeBSD.

I have been searching the forum, and googled, but haven't found an answer to this question.

I have a HP EliteBook 850, 14" screen.

Installing Xorg seems a bit tricky.

I have installed Xorg, dbus (and enabled it in /etc/rc.conf), a windowmanager (dwm) and edited my .xinitrc to execute dwm.

When I run startx I get:
Fatal server error:
(EE) no screens found

After installation /etc/X11 is empty, that is, there is no xorg.conf-file

Generating it with Xorg -configure gives me this config-file:
Code:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

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

Section "Module"
    Load  "glx"
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 "Monitor"
    Identifier   "Monitor0"
    VendorName   "Vendor Name"
    ModelName    "Monitor Model"
EndSection

Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "Vendor Name"
    ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"               # [<bool>]
        #Option     "DefaultRefresh"         # [<bool>]
        #Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Card0"
    Driver      "vesa"
    BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"               # [<bool>]
        #Option     "DefaultRefresh"         # [<bool>]
        #Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Card1"
    Driver      "vesa"
    BusID       "PCI:4:0:0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Section "Screen"
    Identifier "Screen1"
    Device     "Card1"
    Monitor    "Monitor1"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection
Copying this file to /etc/X11/xorg.conf doesn't solve the problem.

In the "Monitor section" it lists the two monitors, but says: VendorName = "Vendor Name" and ModelName = "Model Name"

Changing these to:
Code:
VendorName = "unknown"
ModelName = "unknown"
or
Code:
VendorName = "generic"
ModelName = "generic"
yields the same result when running startx.

Any clues to where the fault is?

Should I use /etx/X11/xorg.conf or /usr/local/etc/X11/xorg.conf?

On my linux-boxes there is no xorg.conf in /etc/X11

I installed debian and LinuxMint on the HP EliteBook, and there X worked right out of the box!

Thanks
Severino
 
Hi,

After running an upgrade (yesterday, 20190713) on my 64-bit FreeBSD 12.0-RELEASE-p7 box, startx gives a

Code:
vesa: Ignoring device with a bound kernel driver
(EE)
Fatal server error:
(EE) no screens found(EE)
(EE)

Before the box just ran fine on X.
The /var/log/Xorg.0.log as attached doesn't reveal anymore than the error code above.

The box has a Nvidia card but ran well with just VESA

I checked all necessary bits of config, but can't find the cause of this problem.
  • files driver-vesa.conf and screen-resolution in /usr/local/etc/X11/xorg.conf.d/ as described in the Handbook 5.4;
  • main user is in the wheel and video group;
  • vesa_load="YES" in /boot/loader.conf
[edit] Installing xf86-video-nv instead, removing the VESA settings, and setting driver-nv.conf with `Driver "nv"' just gives the same error that no screens are found.

[edit2] I could run an installation of xorg with # pkg install xorg. This is a bit strange because it was already installed on my system and pkg normally reports so. The new installation didn't resiolve the problem.

Bug report filed on FreeBSD Bugzilla, nr 239200

What could cause this 'sudden death of GUI' and what can I do to make it work again?

TIA,
 

Attachments

  • 20190714_Xorg.0.log.txt
    3.3 KB · Views: 267
Hi,

After running an upgrade (yesterday, 20190713) on my 64-bit FreeBSD 12.0-RELEASE-p7 box, startx gives a

Code:
vesa: Ignoring device with a bound kernel driver
(EE)
Fatal server error:
(EE) no screens found(EE)
(EE)

Before the box just ran fine on X.
The /var/log/Xorg.0.log as attached doesn't reveal anymore than the error code above.

The box has a Nvidia card but ran well with just VESA

I checked all necessary bits of config, but can't find the cause of this problem.
  • files driver-vesa.conf and screen-resolution in /usr/local/etc/X11/xorg.conf.d/ as described in the Handbook 5.4;
  • main user is in the wheel and video group;
  • vesa_load="YES" in /boot/loader.conf
What could cause this 'sudden death of GUI' and what can I do to make it work again?

TIA,


woow


there is a big issue with Xorg, especially vesa and scfb ;)
Furthermore there a big entropy + efi + legacy boot thing on FreeBSD.

I investigated and it seems that the following:
DragonFly BSD works and has graphics because it starts with EFI.
If you start without EFI, you will end up with FreeBSD. Otherwise, OPENBSD and NETBSD can support legacy.
Openbsd and netbsd can boot well with their entropy.

Dear Sirdice,
It would be extremely, very helpful if you would have little of time to help us. Would it be possible to take a notebook with Intel,... modern CPU architecture, wipe the complete HDD with zero,
take the memdisk stick with 12.0 install media, F12 or F8, ... to boot, install the base.
Restart, and then pkg install -y Xorg icewm xinit xterm.
Screen found or screen not found?

This would help at least now 2 users.

If you cannot run X11, you can give a try to older Xorg with 2018 compilation. Otherwise, run NetBSD or DragonFly, it has graphics ;)
 
you can give a try to older Xorg with 2018 compilation. Otherwise, run NetBSD or DragonFly, it has graphics ;)

THX foor looking at my post!

I looked for rolling back the update for Xorg, but found that pkg has no possibility to downgrade the lot.

As NetBSD and DragonFly are a bit too much work to install and my expectation that Xorg on FreeBSD will be fine after some time, the other BSD's are not my option for now...
 
THX foor looking at my post!

I looked for rolling back the update for Xorg, but found that pkg has no possibility to downgrade the lot.

As NetBSD and DragonFly are a bit too much work to install and my expectation that Xorg on FreeBSD will be fine after some time, the other BSD's are not my option for now...
we have the same issue houston.

I have tried to compile xproto 2018 and to run it , but it is not that easy.

The only way I could find was to run now NetBSD, anyhow NetBSD is a good choice.
 
The same problem ("no screens found") just started occurring on a Dell Inspiron 8100 laptop (NVidia GeForce4 440 Go) that's been running FreeBSD 12 RELEASE (with latest Xorg & Xfce) without any problems for the past several months. I've even wiped and reinstalled BSD (demoing BSD for a friend) two times a couple of months ago without any problem....until a few days ago.

I wiped and reinstalled BSD for another demo, but, now, I'm unable to run X: startx returns the "no screens found" error. I spent the entire weekend googling and troubleshooting with dozens of SOLVED threads, but nothing worked.

Only because so many suddenly appear to be experiencing the same error, so I'll hold off on posting additional files (unless requested).
 
Change of mind. Here're some of the configuration files that may be relevant just in case the fault is mine...
Note: Currently, running Nvidia 340 (legacy) driver for GeForce4 440 Go video. I also tried the "NVIDIA 96.43.xx Legacy driver" (96.43.23) (from their website), but "make install" error's out.
Also, I ONLY tried "Xorg -configure" AFTER the auto-configuration failed (repeatedly).


Xorg.1.log
Code:
[  2272.277]
X.Org X Server 1.18.4
Release Date: 2016-07-19
[  2272.277] X Protocol Version 11, Revision 0
[  2272.277] Build Operating System: FreeBSD 12.0-RELEASE-p7 i386
[  2272.277] Current Operating System: FreeBSD inspiron 12.0-RELEASE-p7 FreeBSD 12.0-RELEASE-p7 GENERIC i386
[  2272.278] Build Date: 06 July 2019  08:16:31AM
[  2272.278]
[  2272.278] Current version of pixman: 0.34.0
[  2272.278]     Before reporting problems, check [URL]http://wiki.x.org[/URL]
    to make sure that you have the latest version.
[  2272.278] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  2272.278] (==) Log file: "/var/log/Xorg.1.log", Time: Mon Jul 15 15:48:30 2019
[  2272.286] (==) Using config directory: "/usr/local/etc/X11/xorg.conf.d"
[  2272.286] (==) No Layout section.  Using the first Screen section.
[  2272.286] (==) No screen section available. Using defaults.
[  2272.286] (**) |-->Screen "Default Screen Section" (0)
[  2272.286] (**) |   |-->Monitor "<default monitor>"
[  2272.286] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
[  2272.286] (**) |   |-->Device "NVIDIA Card"
[  2272.286] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[  2272.287] (==) Automatically adding devices
[  2272.287] (==) Automatically enabling devices
[  2272.287] (==) Not automatically adding GPU devices
[  2272.287] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  2272.288] (==) FontPath set to:
    /usr/local/share/fonts/misc/,
    /usr/local/share/fonts/TTF/,
    /usr/local/share/fonts/OTF/,
    /usr/local/share/fonts/Type1/,
    /usr/local/share/fonts/100dpi/,
    /usr/local/share/fonts/75dpi/
[  2272.288] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[  2272.288] (II) The server relies on devd to provide the list of input devices.
    If no devices become available, reconfigure devd or disable AutoAddDevices.
[  2272.288] (II) Loader magic: 0x8249000
[  2272.288] (II) Module ABI versions:
[  2272.288]     X.Org ANSI C Emulation: 0.4
[  2272.288]     X.Org Video Driver: 20.0
[  2272.288]     X.Org XInput driver : 22.1
[  2272.288]     X.Org Server Extension : 9.0
[  2272.289] (--) PCI:*(0:1:0:0) 10de:0174:1028:00d4 rev 163, Mem @ 0xfc000000/16777216, 0xe0000000/134217728, 0xdff80000/524288, BIOS @ 0x????????/65536
[  2272.289] (II) LoadModule: "glx"
[  2272.290] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[  2272.539] (II) Module glx: vendor="NVIDIA Corporation"
[  2272.540]     compiled for 4.0.2, module version = 1.0.0
[  2272.540]     Module class: X.Org Server Extension
[  2272.540] (II) NVIDIA GLX Module  340.107  Thu May 24 17:12:39 PDT 2018
[  2272.540] (II) LoadModule: "nvidia"
[  2272.540] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so
[  2272.543] (II) Module nvidia: vendor="NVIDIA Corporation"
[  2272.543]     compiled for 4.0.2, module version = 1.0.0
[  2272.543]     Module class: X.Org Video Driver
[  2272.543] (II) NVIDIA dlloader X Driver  340.107  Thu May 24 16:52:39 PDT 2018
[  2272.543] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  2272.544] (--) Using syscons driver with X support (version 2.0)
[  2272.544] (--) using VT number 9

[  2272.635] (II) Loading sub module "fb"
[  2272.635] (II) LoadModule: "fb"
[  2272.635] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[  2272.636] (II) Module fb: vendor="X.Org Foundation"
[  2272.636]     compiled for 1.18.4, module version = 1.0.0
[  2272.636]     ABI class: X.Org ANSI C Emulation, version 0.4
[  2272.636] (WW) Unresolved symbol: fbGetGCPrivateKey
[  2272.637] (II) Loading sub module "wfb"
[  2272.637] (II) LoadModule: "wfb"
[  2272.637] (II) Loading /usr/local/lib/xorg/modules/libwfb.so
[  2272.638] (II) Module wfb: vendor="X.Org Foundation"
[  2272.638]     compiled for 1.18.4, module version = 1.0.0
[  2272.638]     ABI class: X.Org ANSI C Emulation, version 0.4
[  2272.638] (II) Loading sub module "ramdac"
[  2272.638] (II) LoadModule: "ramdac"
[  2272.639] (II) Module "ramdac" already built-in
[  2272.639] (WW) NVIDIA(0): The NVIDIA GeForce4 440 Go GPU installed in this system is
[  2272.639] (WW) NVIDIA(0):     supported through the NVIDIA 96.43.xx Legacy drivers.
[  2272.639] (WW) NVIDIA(0):     Please visit [URL]http://www.nvidia.com/object/unix.html[/URL] for
[  2272.639] (WW) NVIDIA(0):     more information.  The 340.107 NVIDIA driver will ignore
[  2272.639] (WW) NVIDIA(0):     this GPU.  Continuing probe...
[B][COLOR=rgb(209, 72, 65)][  2272.639] (EE) No devices detected.[/COLOR][/B]
[  2272.639] (EE)
Fatal server error:
[B][COLOR=rgb(209, 72, 65)][  2272.639] (EE) no screens found(EE)[/COLOR][/B]
[  2272.639] (EE)
Please consult the The X.Org Foundation support
     at [URL]http://wiki.x.org[/URL]
for help.
[  2272.639] (EE) Please also check the log file at "/var/log/Xorg.1.log" for additional information.
[  2272.640] (EE)
[  2272.656] (EE) Server terminated with error (1). Closing log file.

Xorg.0.log
Code:
[  1163.474]
X.Org X Server 1.18.4
Release Date: 2016-07-19
[  1163.475] X Protocol Version 11, Revision 0
[  1163.475] Build Operating System: FreeBSD 12.0-RELEASE-p7 i386
[  1163.475] Current Operating System: FreeBSD inspiron 12.0-RELEASE-p7 FreeBSD 12.0-RELEASE-p7 GENERIC i386
[  1163.475] Build Date: 06 July 2019  08:16:31AM
[  1163.475]
[  1163.475] Current version of pixman: 0.34.0
[  1163.475]     Before reporting problems, check [URL]http://wiki.x.org[/URL]
    to make sure that you have the latest version.
[  1163.475] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1163.476] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul 15 15:30:01 2019
[  1163.477] (==) Using config directory: "/usr/local/etc/X11/xorg.conf.d"
[  1163.483] (==) No Layout section.  Using the first Screen section.
[  1163.483] (==) No screen section available. Using defaults.
[  1163.484] (**) |-->Screen "Default Screen Section" (0)
[  1163.484] (**) |   |-->Monitor "<default monitor>"
[  1163.484] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
[  1163.484] (**) |   |-->Device "NVIDIA Card"
[  1163.484] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
[  1163.484] (==) Automatically adding devices
[  1163.484] (==) Automatically enabling devices
[  1163.484] (==) Not automatically adding GPU devices
[  1163.484] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  1163.485] (==) FontPath set to:
    /usr/local/share/fonts/misc/,
    /usr/local/share/fonts/TTF/,
    /usr/local/share/fonts/OTF/,
    /usr/local/share/fonts/Type1/,
    /usr/local/share/fonts/100dpi/,
    /usr/local/share/fonts/75dpi/
[  1163.485] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[  1163.485] (II) The server relies on devd to provide the list of input devices.
    If no devices become available, reconfigure devd or disable AutoAddDevices.
[  1163.485] (II) Loader magic: 0x8249000
[  1163.485] (II) Module ABI versions:
[  1163.485]     X.Org ANSI C Emulation: 0.4
[  1163.485]     X.Org Video Driver: 20.0
[  1163.485]     X.Org XInput driver : 22.1
[  1163.485]     X.Org Server Extension : 9.0
[  1163.486] (--) PCI:*(0:1:0:0) 10de:0174:1028:00d4 rev 163, Mem @ 0xfc000000/16777216, 0xe0000000/134217728, 0xdff80000/524288, BIOS @ 0x????????/65536
[  1163.486] (II) LoadModule: "glx"
[  1163.487] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[  1163.730] (II) Module glx: vendor="NVIDIA Corporation"
[  1163.730]     compiled for 4.0.2, module version = 1.0.0
[  1163.730]     Module class: X.Org Server Extension
[  1163.730] (II) NVIDIA GLX Module  340.107  Thu May 24 17:12:39 PDT 2018
[  1163.730] (II) LoadModule: "nvidia"
[  1163.731] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so
[  1163.733] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1163.734]     compiled for 4.0.2, module version = 1.0.0
[  1163.734]     Module class: X.Org Video Driver
[  1163.734] (II) NVIDIA dlloader X Driver  340.107  Thu May 24 16:52:39 PDT 2018
[  1163.734] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1163.734] (--) Using syscons driver with X support (version 2.0)
[  1163.734] (--) using VT number 9

[  1163.875] (II) Loading sub module "fb"
[  1163.875] (II) LoadModule: "fb"
[  1163.876] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[  1163.877] (II) Module fb: vendor="X.Org Foundation"
[  1163.877]     compiled for 1.18.4, module version = 1.0.0
[  1163.877]     ABI class: X.Org ANSI C Emulation, version 0.4
[  1163.877] (WW) Unresolved symbol: fbGetGCPrivateKey
[  1163.877] (II) Loading sub module "wfb"
[  1163.877] (II) LoadModule: "wfb"
[  1163.878] (II) Loading /usr/local/lib/xorg/modules/libwfb.so
[  1163.879] (II) Module wfb: vendor="X.Org Foundation"
[  1163.879]     compiled for 1.18.4, module version = 1.0.0
[  1163.879]     ABI class: X.Org ANSI C Emulation, version 0.4
[  1163.879] (II) Loading sub module "ramdac"
[  1163.879] (II) LoadModule: "ramdac"
[  1163.880] (II) Module "ramdac" already built-in
[  1163.880] (WW) NVIDIA(0): The NVIDIA GeForce4 440 Go GPU installed in this system is
[  1163.880] (WW) NVIDIA(0):     supported through the NVIDIA 96.43.xx Legacy drivers.
[  1163.880] (WW) NVIDIA(0):     Please visit [URL]http://www.nvidia.com/object/unix.html[/URL] for
[  1163.880] (WW) NVIDIA(0):     more information.  The 340.107 NVIDIA driver will ignore
[  1163.880] (WW) NVIDIA(0):     this GPU.  Continuing probe...
[  1163.880] (EE) No devices detected.
[  1163.880] (EE)
Fatal server error:
[  1163.880] (EE) no screens found(EE)
[  1163.880] (EE)
Please consult the The X.Org Foundation support
     at [URL]http://wiki.x.org[/URL]
for help.
[  1163.880] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[  1163.880] (EE)
[  1163.967] (EE) Server terminated with error (1). Closing log file.
xorg.conf.new
Code:
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

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

Section "Module"
    Load  "glx"
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 "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"               # [<bool>]
        #Option     "DefaultRefresh"         # [<bool>]
        #Option     "ModeSetClearScreen"     # [<bool>]
    Identifier  "Device0"
    Driver      "nvidia" <--I think this was originally "vesa", so I changed it, but it didn't help
    BusID       "PCI:3:0:0"  <--I added this per another "SOLVED" thread...it didn't help
    VendorName  "NVIDIA Corporation"  <--I added this as well, but it didn't help
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection
 

Attachments

  • rc.conf
    345 bytes · Views: 272
  • driver-nvidia.conf
    104 bytes · Views: 276
  • kldstat.txt
    303 bytes · Views: 243
  • loader.conf
    41 bytes · Views: 236
Change of mind. Here're some of the configuration files that may be relevant just in case the fault is mine...
Note: I also tried the "NVIDIA 96.43.xx Legacy driver" (96.43.23) (from their website), but "make install" error's out.
Also, I ONLY tried "Xorg -configure" AFTER the auto-configuration failed (repeatedly).


Xorg.1.log
[ 2272.277]
X.Org X Server 1.18.4
Release Date: 2016-07-19
[ 2272.277] X Protocol Version 11, Revision 0
[ 2272.277] Build Operating System: FreeBSD 12.0-RELEASE-p7 i386
[ 2272.277] Current Operating System: FreeBSD inspiron 12.0-RELEASE-p7 FreeBSD 12.0-RELEASE-p7 GENERIC i386
[ 2272.278] Build Date: 06 July 2019 08:16:31AM
[ 2272.278]
[ 2272.278] Current version of pixman: 0.34.0
[ 2272.278] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 2272.278] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 2272.278] (==) Log file: "/var/log/Xorg.1.log", Time: Mon Jul 15 15:48:30 2019
[ 2272.286] (==) Using config directory: "/usr/local/etc/X11/xorg.conf.d"
[ 2272.286] (==) No Layout section. Using the first Screen section.
[ 2272.286] (==) No screen section available. Using defaults.
[ 2272.286] (**) |-->Screen "Default Screen Section" (0)
[ 2272.286] (**) | |-->Monitor "<default monitor>"
[ 2272.286] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[ 2272.286] (**) | |-->Device "NVIDIA Card"
[ 2272.286] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 2272.287] (==) Automatically adding devices
[ 2272.287] (==) Automatically enabling devices
[ 2272.287] (==) Not automatically adding GPU devices
[ 2272.287] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 2272.288] (==) FontPath set to:
/usr/local/share/fonts/misc/,
/usr/local/share/fonts/TTF/,
/usr/local/share/fonts/OTF/,
/usr/local/share/fonts/Type1/,
/usr/local/share/fonts/100dpi/,
/usr/local/share/fonts/75dpi/
[ 2272.288] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[ 2272.288] (II) The server relies on devd to provide the list of input devices.
If no devices become available, reconfigure devd or disable AutoAddDevices.
[ 2272.288] (II) Loader magic: 0x8249000
[ 2272.288] (II) Module ABI versions:
[ 2272.288] X.Org ANSI C Emulation: 0.4
[ 2272.288] X.Org Video Driver: 20.0
[ 2272.288] X.Org XInput driver : 22.1
[ 2272.288] X.Org Server Extension : 9.0
[ 2272.289] (--) PCI:*(0:1:0:0) 10de:0174:1028:00d4 rev 163, Mem @ 0xfc000000/16777216, 0xe0000000/134217728, 0xdff80000/524288, BIOS @ 0x????????/65536
[ 2272.289] (II) LoadModule: "glx"
[ 2272.290] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[ 2272.539] (II) Module glx: vendor="NVIDIA Corporation"
[ 2272.540] compiled for 4.0.2, module version = 1.0.0
[ 2272.540] Module class: X.Org Server Extension
[ 2272.540] (II) NVIDIA GLX Module 340.107 Thu May 24 17:12:39 PDT 2018
[ 2272.540] (II) LoadModule: "nvidia"
[ 2272.540] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so
[ 2272.543] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 2272.543] compiled for 4.0.2, module version = 1.0.0
[ 2272.543] Module class: X.Org Video Driver
[ 2272.543] (II) NVIDIA dlloader X Driver 340.107 Thu May 24 16:52:39 PDT 2018
[ 2272.543] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 2272.544] (--) Using syscons driver with X support (version 2.0)
[ 2272.544] (--) using VT number 9

[ 2272.635] (II) Loading sub module "fb"
[ 2272.635] (II) LoadModule: "fb"
[ 2272.635] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[ 2272.636] (II) Module fb: vendor="X.Org Foundation"
[ 2272.636] compiled for 1.18.4, module version = 1.0.0
[ 2272.636] ABI class: X.Org ANSI C Emulation, version 0.4
[ 2272.636] (WW) Unresolved symbol: fbGetGCPrivateKey
[ 2272.637] (II) Loading sub module "wfb"
[ 2272.637] (II) LoadModule: "wfb"
[ 2272.637] (II) Loading /usr/local/lib/xorg/modules/libwfb.so
[ 2272.638] (II) Module wfb: vendor="X.Org Foundation"
[ 2272.638] compiled for 1.18.4, module version = 1.0.0
[ 2272.638] ABI class: X.Org ANSI C Emulation, version 0.4
[ 2272.638] (II) Loading sub module "ramdac"
[ 2272.638] (II) LoadModule: "ramdac"
[ 2272.639] (II) Module "ramdac" already built-in
[ 2272.639] (WW) NVIDIA(0): The NVIDIA GeForce4 440 Go GPU installed in this system is
[ 2272.639] (WW) NVIDIA(0): supported through the NVIDIA 96.43.xx Legacy drivers.
[ 2272.639] (WW) NVIDIA(0): Please visit http://www.nvidia.com/object/unix.html for
[ 2272.639] (WW) NVIDIA(0): more information. The 340.107 NVIDIA driver will ignore
[ 2272.639] (WW) NVIDIA(0): this GPU. Continuing probe...
[ 2272.639] (EE) No devices detected.
[ 2272.639] (EE)
Fatal server error:
[ 2272.639] (EE) no screens found(EE)
[ 2272.639] (EE)
Please consult the The X.Org Foundation support
at http://wiki.x.org
for help.
[ 2272.639] (EE) Please also check the log file at "/var/log/Xorg.1.log" for additional information.
[ 2272.640] (EE)
[ 2272.656] (EE) Server terminated with error (1). Closing log file.


Xorg.0.log
[ 1163.474]
X.Org X Server 1.18.4
Release Date: 2016-07-19
[ 1163.475] X Protocol Version 11, Revision 0
[ 1163.475] Build Operating System: FreeBSD 12.0-RELEASE-p7 i386
[ 1163.475] Current Operating System: FreeBSD inspiron 12.0-RELEASE-p7 FreeBSD 12.0-RELEASE-p7 GENERIC i386
[ 1163.475] Build Date: 06 July 2019 08:16:31AM
[ 1163.475]
[ 1163.475] Current version of pixman: 0.34.0
[ 1163.475] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 1163.475] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 1163.476] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul 15 15:30:01 2019
[ 1163.477] (==) Using config directory: "/usr/local/etc/X11/xorg.conf.d"
[ 1163.483] (==) No Layout section. Using the first Screen section.
[ 1163.483] (==) No screen section available. Using defaults.
[ 1163.484] (**) |-->Screen "Default Screen Section" (0)
[ 1163.484] (**) | |-->Monitor "<default monitor>"
[ 1163.484] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[ 1163.484] (**) | |-->Device "NVIDIA Card"
[ 1163.484] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 1163.484] (==) Automatically adding devices
[ 1163.484] (==) Automatically enabling devices
[ 1163.484] (==) Not automatically adding GPU devices
[ 1163.484] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 1163.485] (==) FontPath set to:
/usr/local/share/fonts/misc/,
/usr/local/share/fonts/TTF/,
/usr/local/share/fonts/OTF/,
/usr/local/share/fonts/Type1/,
/usr/local/share/fonts/100dpi/,
/usr/local/share/fonts/75dpi/
[ 1163.485] (==) ModulePath set to "/usr/local/lib/xorg/modules"
[ 1163.485] (II) The server relies on devd to provide the list of input devices.
If no devices become available, reconfigure devd or disable AutoAddDevices.
[ 1163.485] (II) Loader magic: 0x8249000
[ 1163.485] (II) Module ABI versions:
[ 1163.485] X.Org ANSI C Emulation: 0.4
[ 1163.485] X.Org Video Driver: 20.0
[ 1163.485] X.Org XInput driver : 22.1
[ 1163.485] X.Org Server Extension : 9.0
[ 1163.486] (--) PCI:*(0:1:0:0) 10de:0174:1028:00d4 rev 163, Mem @ 0xfc000000/16777216, 0xe0000000/134217728, 0xdff80000/524288, BIOS @ 0x????????/65536
[ 1163.486] (II) LoadModule: "glx"
[ 1163.487] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[ 1163.730] (II) Module glx: vendor="NVIDIA Corporation"
[ 1163.730] compiled for 4.0.2, module version = 1.0.0
[ 1163.730] Module class: X.Org Server Extension
[ 1163.730] (II) NVIDIA GLX Module 340.107 Thu May 24 17:12:39 PDT 2018
[ 1163.730] (II) LoadModule: "nvidia"
[ 1163.731] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so
[ 1163.733] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 1163.734] compiled for 4.0.2, module version = 1.0.0
[ 1163.734] Module class: X.Org Video Driver
[ 1163.734] (II) NVIDIA dlloader X Driver 340.107 Thu May 24 16:52:39 PDT 2018
[ 1163.734] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 1163.734] (--) Using syscons driver with X support (version 2.0)
[ 1163.734] (--) using VT number 9

[ 1163.875] (II) Loading sub module "fb"
[ 1163.875] (II) LoadModule: "fb"
[ 1163.876] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[ 1163.877] (II) Module fb: vendor="X.Org Foundation"
[ 1163.877] compiled for 1.18.4, module version = 1.0.0
[ 1163.877] ABI class: X.Org ANSI C Emulation, version 0.4
[ 1163.877] (WW) Unresolved symbol: fbGetGCPrivateKey
[ 1163.877] (II) Loading sub module "wfb"
[ 1163.877] (II) LoadModule: "wfb"
[ 1163.878] (II) Loading /usr/local/lib/xorg/modules/libwfb.so
[ 1163.879] (II) Module wfb: vendor="X.Org Foundation"
[ 1163.879] compiled for 1.18.4, module version = 1.0.0
[ 1163.879] ABI class: X.Org ANSI C Emulation, version 0.4
[ 1163.879] (II) Loading sub module "ramdac"
[ 1163.879] (II) LoadModule: "ramdac"
[ 1163.880] (II) Module "ramdac" already built-in
[ 1163.880] (WW) NVIDIA(0): The NVIDIA GeForce4 440 Go GPU installed in this system is
[ 1163.880] (WW) NVIDIA(0): supported through the NVIDIA 96.43.xx Legacy drivers.
[ 1163.880] (WW) NVIDIA(0): Please visit http://www.nvidia.com/object/unix.html for
[ 1163.880] (WW) NVIDIA(0): more information. The 340.107 NVIDIA driver will ignore
[ 1163.880] (WW) NVIDIA(0): this GPU. Continuing probe...
[ 1163.880] (EE) No devices detected.
[ 1163.880] (EE)
Fatal server error:
[ 1163.880] (EE) no screens found(EE)
[ 1163.880] (EE)
Please consult the The X.Org Foundation support
at http://wiki.x.org
for help.
[ 1163.880] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[ 1163.880] (EE)
[ 1163.967] (EE) Server terminated with error (1). Closing log file.

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

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

Section "Module"
Load "glx"
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 "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection

Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
### <percent>: "<f>%"
### [arg]: arg optional
#Option "ShadowFB" # [<bool>]
#Option "DefaultRefresh" # [<bool>]
#Option "ModeSetClearScreen" # [<bool>]
Identifier "Device0"
Driver "nvidia" <--I think this was originally "vesa", so I changed it, but it didn't help
BusID "PCI:3:0:0" <--I added this per another "SOLVED" thread...it didn't help
VendorName "NVIDIA Corporation" <--I added this as well, but it didn't help
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Would you it possible to post your files which are installed, using pkg info command?
 
You may have had x11/nvidia-driver-96 installed. However, this port was removed long before 12.0 existed.

I don't think you can install it in any case, it's not compatible any more with recent xserver versions.
 
You may have had x11/nvidia-driver-96 installed. However, this port was removed long before 12.0 existed.

No, the 96 Nvidia driver was NEVER actually installed on the laptop. I downloaded and ATTEMPTED to install it.....but ONLY because it was referenced as the recommended driver in Xorg.0.org. The driver I DID use was Nvidia's legacy 340 driver. I also tried the 304 legacy driver, but it had no effect on the "no screens found" error.

I don't think you can install it in any case, it's not compatible any more with recent xserver versions.

Yes.
 
No, the 96 Nvidia driver was NEVER actually installed on the laptop. I downloaded and ATTEMPTED to install it.....but ONLY because it was referenced as the recommended driver in Xorg.0.org. The driver I DID use was Nvidia's legacy 340 driver. I also tried the 304 legacy driver, but it had no effect on the "no screens found" error.



Yes.
thanks for your efforts in giving more information. we try to help you.

Have you tried with 13.0 snapshot FreeBSD? Maybe it would have better support.

What about the xorg xproto that you have ?

Does the 13.0 boots?
Today when I look into the FreeBSD 13.0 Memstick, it has
partition hd1,msdos1 filesystem type fat lablel efiszs, uuiod a886 1d02, with efi
with the hd1, msdos2 with no know fileystem detected, and it might be an issue.
It can likely not start, but if you have EFI enable, that has more chances to work out.

With bright workaround, with grub installed and with command line,
set root hd1 msdos2
chainloader +1
boot

then it tells us, loading kernel /boot/kernel/kernel text 0x134e3d8... cant find /boot/entropy.,


Would you like to try the 13.0 Snapshopt FreeBSD maybe it would have better results? what do you think?
 
Would you it possible to post your files which are installed, using pkg info command?

Sorry, but I just wiped 12 and I'm in process of installing 11.2 to see if X works. If I get the same "no screens found" error, I'll reinstall 12 and post pkg info.
 
Sorry, but I just wiped 12 and I'm in process of installing 11.2 to see if X works. If I get the same "no screens found" error, I'll reinstall 12 and post pkg info.
I just did make a test. I found out an old backup on an WD USB disk. I moved all new bsd 12.0 to a directory oldstuff, I did then cp -a /media/wddisk/ /target
and once I start it it back again with Xorg working. That's cool to have backups.

The thing is that I would like to give you this working Xorg 12.0 FreeBSD. I would bet that it would save your X and that it would work.
Maybe I can find the packages that are in my disk to that you can replicate my working installation to get X.

I am working on it.

SirDice: you see that they are numerous users in such a matter.
Therefore, the stable concept would make sense. Old Xorg protocol and drivers, but working.

here it goes, it works with this configuration:
6704


I will give you soon the necessary installation files...
I called it AIP almost as your pseudo.

https://sourceforge.net/projects/freebsd-12-0-aip-xorg-packages/

I will copy the xorg files for installation...

It is still copying.

With those packages, you are maybe ready to go.
The txz files go to /var/cache/pkg/ directory.
 
Definitely not. It was either xf86-video-nv or xf86-video-vesa driver.

Aren't those drivers for an older (e.g., v6 or v7) BSD?
The FreeBSD manual cites:

2.1 Determining the correct driver to use
There are various versions of the nVidia drivers in the Ports Collection. The correct one to use depends on the actual model (and age) of your graphics card:
  • The latest versions of nVidia cards are supported by the x11/nvidia-driver port.
  • nVidia cards like the GeForce 2MX/3/4 series are supported by the 96XX series of drivers, available in the x11/nvidia-driver-96xx port.
  • Even older cards, like GeForce and RIVA TNT are supported by the 71XX series of drivers, available in the x11/nvidia-driver-71xx port.
In fact, nVidia provides detailed information on which card is supported by which driver. This information is available directly on their web site: http://www.nvidia.com/object/IO_32667.html.


Further, there's this from:

HOWTO: Setup Xorg with NVIDIA's driver
Install x11/nvidia-driver: pkg install nvidia-driver
For some older cards [e.g., GeForce4 440 Go] you need to use x11/nvidia-driver-340 or x11/nvidia-driver-304 instead. Consult NVIDIA's download page (http://www.nvidia.com/Download/index.aspx?lang=en-us) to see which driver version you need. Note that there is no need (and it's even counterproductive) to download the driver from that page.
 
I just did make a test. I found out an old backup on an WD USB disk. I moved all new bsd 12.0 to a directory oldstuff, I did then cp -a /media/wddisk/ /target
and once I start it it back again with Xorg working. That's cool to have backups.
The thing is that I would like to give you this working Xorg 12.0 FreeBSD. I would bet that it would save your X and that it would work.
Maybe I can find the packages that are in my disk to that you can replicate my working installation to get X.

I am working on it.

here it goes, it works with this configuration:
I will give you soon the necessary installation files...
I called it AIP almost as your pseudo.
https://sourceforge.net/projects/freebsd-12-0-aip-xorg-packages/
I will copy the xorg files for installation...
It is still copying.
With those packages, you are maybe ready to go.
The txz files go to /var/cache/pkg/ directory.

Spartrekus, I will give that a try. Many thanks for this!

As an aside....I wiped 12 from the Inspiron laptop and did a new (all defaults) install of 11.2.
Oddly, for the first time with this setup, there's no network connectivity. All pings, whether IP or domain (except localhost, which works) return "no route to host"....even though the NIC's activity lights appear to be passing packets. Odd.
Because the Inspiron laptop has USB 1.0 inputs (the laptop is nearly 20 years old), which are VERY slow, I always bypass them by plugging a Linksys USB 2.0 Gigabit ethernet NIC into a PCMCIA USB 2.0 card in the laptop for network connections. Until just now, it has always worked perfectly. If it isn't one thing, it's another. Weird day!!

So I'll try your 12 AIP and report back..
 
Aren't those drivers for an older (e.g., v6 or v7) BSD?

No, of course not.

nVidia cards like the GeForce 2MX/3/4 series are supported by the 96XX series of drivers, available in the x11/nvidia-driver-96xx port. … For some older cards [e.g., GeForce4 440 Go] you need to use x11/nvidia-driver-340 or x11/nvidia-driver-304 instead.

I don't have reading comprehension issues, but thank you for your concern. Supported GPUs are listed on the "Supported products" tab on the driver download pages. Those are linked here: https://www.nvidia.com/object/unix.html. Not to mention the message from the 340 driver itself (in Xorg.0.log), which is pretty clear.
 
Dear Guys,

I am pleased to give you the txz files, working for X.

If you give me a apache / nginx whatever http space, I can give you my txz files so that pkg fetch them to install those.

SirDice:
This would be maybe what we can call FreeBSD Stable, including the kernel Entropy fix for non EFI (legacy) + stable Xorg (old working 2018 stuffs) for intel and nvidia cards.

@AIP:
https://sourceforge.net/projects/freebsd-12-0-aip-xorg-packages/files/

I hope that I can help.

Yours sincerely.
 
Just fyi....

pciconf -lv
hostb0@pci0:0:0:0: class=0x060000 card=0x00000000 chip=0x11308086 rev=0x04 hdr=0x00
vendor = 'Intel Corporation'
device = '82815 815 Chipset Host Bridge and Memory Controller Hub'
class = bridge
subclass = HOST-PCI
pcib1@pci0:0:1:0: class=0x060400 card=0x00000000 chip=0x11318086 rev=0x04 hdr=0x01
vendor = 'Intel Corporation'
device = '82815 815 Chipset AGP Bridge'
class = bridge
subclass = PCI-PCI
pcib2@pci0:0:30:0: class=0x060400 card=0x00000000 chip=0x24488086 rev=0x03 hdr=0x01
vendor = 'Intel Corporation'
device = '82801 Mobile PCI Bridge'
class = bridge
subclass = PCI-PCI
isab0@pci0:0:31:0: class=0x060100 card=0x00000000 chip=0x244c8086 rev=0x03 hdr=0x00
vendor = 'Intel Corporation'
device = '82801BAM ISA Bridge (LPC)'
class = bridge
subclass = PCI-ISA
atapci0@pci0:0:31:1: class=0x010180 card=0x45418086 chip=0x244a8086 rev=0x03 hdr=0x00
vendor = 'Intel Corporation'
device = '82801BAM IDE U100 Controller'
class = mass storage
subclass = ATA
uhci0@pci0:0:31:2: class=0x0c0300 card=0x45418086 chip=0x24428086 rev=0x03 hdr=0x00
vendor = 'Intel Corporation'
device = '82801BA/BAM UHCI USB 1.1 Controller'
class = serial bus
subclass = USB
vgapci0@pci0:1:0:0: class=0x030000 card=0x00d41028 chip=0x017410de rev=0xa3 hdr=0x00
vendor = 'NVIDIA Corporation'
device = 'NV17M [GeForce4 440 Go]'
class = display
subclass = VGA

none0@pci0:2:3:0: class=0x040100 card=0x00e61028 chip=0x1998125d rev=0x10 hdr=0x00
vendor = 'ESS Technology'
device = 'ES1983S Maestro-3i PCI Audio Accelerator'
class = multimedia
subclass = audio
cbb0@pci0:2:15:0: class=0x060700 card=0x00e61028 chip=0xac42104c rev=0x00 hdr=0x02
vendor = 'Texas Instruments'
device = 'PCI4451 PC card Cardbus Controller'
class = bridge
subclass = PCI-CardBus
cbb1@pci0:2:15:1: class=0x060700 card=0x00e61028 chip=0xac42104c rev=0x00 hdr=0x02
vendor = 'Texas Instruments'
device = 'PCI4451 PC card Cardbus Controller'
class = bridge
subclass = PCI-CardBus
none1@pci0:2:15:2: class=0x0c0010 card=0x00e61028 chip=0x8027104c rev=0x00 hdr=0x00
vendor = 'Texas Instruments'
device = 'PCI4451 IEEE-1394 Controller'
class = serial bus
subclass = FireWire
ohci0@pci0:4:0:0: class=0x0c0310 card=0x00351033 chip=0x00351033 rev=0x44 hdr=0x00
vendor = 'NEC Corporation'
device = 'OHCI USB Controller'
class = serial bus
subclass = USB
ehci0@pci0:4:0:1: class=0x0c0320 card=0x00e01033 chip=0x00e01033 rev=0x05 hdr=0x00
vendor = 'NEC Corporation'
device = 'uPD72010x USB 2.0 Controller'
class = serial bus
subclass = USB
 
Back
Top