xorg.conf: Howto ignore onboard card?

Roland Smith rsmith at xs4all.nl
Sun Nov 10 11:24:05 UTC 2013


On Sun, Nov 10, 2013 at 11:01:17AM +0100, Danny Winn wrote:
> Hello List,
> 
> I installed FreeBSD 9.2 a week ago and use my GeForce GT 610 card via
> HDMI-output and driver nvidia, which supports the card. It seems like
> somehow Xorg is trying to access the onboard card, even though it is not
> mentioned in /etc/X11/xorg.conf.
> startx does not start X. Same issue with the newest driver from Nvidia's
> hompage.

While Xorg _detects_ the intel chip on the motherboard, it tries to use the
Nvidia card.

What is missing from your logfile is your monitor telling the graphics card
what it is capable of via EDID. Maybe your monitor is too old to support EDID.
My suspicion is that this is the cause of the fatal error "no screens found".

In that case, you'll have to specify in your xorg.conf what your monitor is
capable of. You should at least add a “Modes” line to the “Display” subsection
of the “Screen section”. Look at the “DISPLAY SUBSECTION” section in
xorg.conf(5).

Here's an example for the screen section using a HD monitor:

Section "Screen"
        Identifier      "Screen0"
        Device          "Card0"
        Monitor         "Monitor0"
        DefaultDepth    24
        SubSection "Display"
            Depth   24
            Modes   "1920x1080"
        EndSubSection
EndSection

Consult the documentation of your monitor to see which modes it supports.

You may also have to add “ModeLine” entries to the “Monitor” section of your
Xorg.conf.


Roland
-- 
R.F.Smith                                   http://rsmith.home.xs4all.nl/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 196 bytes
Desc: not available
URL: <http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20131110/5add3ff7/attachment.sig>


More information about the freebsd-x11 mailing list