From owner-freebsd-x11@FreeBSD.ORG Sun Nov 10 17:15:57 2013 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 678B478C for ; Sun, 10 Nov 2013 17:15:57 +0000 (UTC) (envelope-from danny.gabriel.winn@gmail.com) Received: from mail-ea0-x231.google.com (mail-ea0-x231.google.com [IPv6:2a00:1450:4013:c01::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 95A3325E7 for ; Sun, 10 Nov 2013 17:15:56 +0000 (UTC) Received: by mail-ea0-f177.google.com with SMTP id f15so2197707eak.36 for ; Sun, 10 Nov 2013 09:15:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=jD4fgLxh4O3e1jvjgtMIbYsjTl3T3JGhT3LCOy+ovNM=; b=BOMptY26yEuCJ/eNYy1yuEEP+bznQ2Fa1eMFt2zSKNWLO3Eo8ttsl3FigQwCBV5iKM 6Mm3YhLY8YBORfQG1Gw5lyEu0ShhcCndF2es1aWtUc22kmmvZ2jm+Ep1SiRFqfizXopW gQ0KtUQS0OycingQQXGdQg1KhUo+9gyMs2UbxjJ5DUHdcGUhCRfZwOjPj3QnXvh+Lde7 KK3qo+ziLsjjGmKvgw0O7amUu5xaopZlgrA4+CIpgBaer4uBx5B7WBY4v34uguFiqnPy WMLUc6bH/L5TkMnFjOkJoQxhGpXT1e6xVmAAf/RiWaeypFbqwZUpiaPxKypFLAT3PawP tPaQ== X-Received: by 10.14.203.70 with SMTP id e46mr30272945eeo.33.1384103754916; Sun, 10 Nov 2013 09:15:54 -0800 (PST) Received: from [192.168.1.33] (ip-95-223-12-173.unitymediagroup.de. [95.223.12.173]) by mx.google.com with ESMTPSA id m54sm43330323eex.2.2013.11.10.09.15.54 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 10 Nov 2013 09:15:54 -0800 (PST) Message-ID: <527FBF49.1030907@gmail.com> Date: Sun, 10 Nov 2013 18:15:53 +0100 From: Danny Winn User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: Roland Smith , freebsd-x11@freebsd.org Subject: Re: xorg.conf: Howto ignore onboard card? References: <20131110112355.GC84743@slackbox.erewhon.net> In-Reply-To: <20131110112355.GC84743@slackbox.erewhon.net> Content-Type: multipart/mixed; boundary="------------010005000105080705030201" X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Nov 2013 17:15:57 -0000 This is a multi-part message in MIME format. --------------010005000105080705030201 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Hello Roland, thank you for your reply. The monitor is a Samsung SyncMaster P2770. As you recommended I added Modeline-settings to "xorg.conf" as specified in the monitor's documentation, which I found here: http://www.samsung.com/de/support/model/LS27EFHKUF/EN-downloads?downloadName=UM# However, the result is still the same. The weird thing is: Right now I'm writing this email from the same desktop PC on my Linux partition and it works out of the box in Full-HD without creating a "xorg.conf" file, so I think/hope it should be possible to get this running on FreeBSD, too. Attachments: - Improved xorg.conf (nvidia, FreeBSD) - New Xorg.0.log (nvidia, FreeBSD) - Xorg.0.linux.working.log (nvidia, working on Linux) Regards Danny On 10.11.2013 12:23, Roland Smith wrote: > 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 --------------010005000105080705030201 Content-Type: text/plain; charset=UTF-8; name="xorg.conf" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="xorg.conf" IyBudmlkaWEteGNvbmZpZzogWCBjb25maWd1cmF0aW9uIGZpbGUgZ2VuZXJhdGVkIGJ5IG52 aWRpYS14Y29uZmlnCiMgbnZpZGlhLXhjb25maWc6ICB2ZXJzaW9uIDMzMS4yMCAgKGJ1aWxk bWVpc3RlckBzd2lvLWRpc3BsYXkteDY0LXJoZWwwNC0xNykgIFdlZCBPY3QgMzAgMTc6MjQ6 MDIgUERUIDIwMTMKClNlY3Rpb24gIlNlcnZlckxheW91dCIKICAgIElkZW50aWZpZXIgICAg ICJMYXlvdXQwIgogICAgU2NyZWVuICAgICAgMCAgIlNjcmVlbjAiCiAgICBJbnB1dERldmlj ZSAgICAiS2V5Ym9hcmQwIiAiQ29yZUtleWJvYXJkIgogICAgSW5wdXREZXZpY2UgICAgIk1v dXNlMCIgIkNvcmVQb2ludGVyIgpFbmRTZWN0aW9uCgpTZWN0aW9uICJGaWxlcyIKICAgIEZv bnRQYXRoICAgICAgICAiL3Vzci9sb2NhbC9saWIvWDExL2ZvbnRzL21pc2MvOnVuc2NhbGVk IgogICAgRm9udFBhdGggICAgICAgICIvdXNyL2xvY2FsL2xpYi9YMTEvZm9udHMvMTAwZHBp Lzp1bnNjYWxlZCIKICAgIEZvbnRQYXRoICAgICAgICAiL3Vzci9sb2NhbC9saWIvWDExL2Zv bnRzLzc1ZHBpLzp1bnNjYWxlZCIKICAgIEZvbnRQYXRoICAgICAgICAiL3Vzci9sb2NhbC9s aWIvWDExL2ZvbnRzL21pc2MvIgogICAgRm9udFBhdGggICAgICAgICIvdXNyL2xvY2FsL2xp Yi9YMTEvZm9udHMvVHlwZTEvIgogICAgRm9udFBhdGggICAgICAgICIvdXNyL2xvY2FsL2xp Yi9YMTEvZm9udHMvMTAwZHBpLyIKICAgIEZvbnRQYXRoICAgICAgICAiL3Vzci9sb2NhbC9s aWIvWDExL2ZvbnRzLzc1ZHBpLyIKICAgIEZvbnRQYXRoICAgICAgICAiL3Vzci9sb2NhbC9s aWIvWDExL2ZvbnRzL2N5cmlsbGljLyIKICAgIEZvbnRQYXRoICAgICAgICAiL3Vzci9sb2Nh bC9saWIvWDExL2ZvbnRzL1RURi8iCkVuZFNlY3Rpb24KClNlY3Rpb24gIklucHV0RGV2aWNl IgogICAgIyBnZW5lcmF0ZWQgZnJvbSBkZWZhdWx0CiAgICBJZGVudGlmaWVyICAgICAiTW91 c2UwIgogICAgRHJpdmVyICAgICAgICAgIm1vdXNlIgogICAgT3B0aW9uICAgICAgICAgIlBy b3RvY29sIiAiYXV0byIKICAgIE9wdGlvbiAgICAgICAgICJEZXZpY2UiICIvZGV2L3N5c21v dXNlIgogICAgT3B0aW9uICAgICAgICAgIkVtdWxhdGUzQnV0dG9ucyIgIm5vIgogICAgT3B0 aW9uICAgICAgICAgIlpBeGlzTWFwcGluZyIgIjQgNSIKRW5kU2VjdGlvbgoKU2VjdGlvbiAi SW5wdXREZXZpY2UiCiAgICAjIGdlbmVyYXRlZCBmcm9tIGRlZmF1bHQKICAgIElkZW50aWZp ZXIgICAgICJLZXlib2FyZDAiCiAgICBEcml2ZXIgICAgICAgICAia2V5Ym9hcmQiCkVuZFNl Y3Rpb24KClNlY3Rpb24gIk1vbml0b3IiCiAgICBJZGVudGlmaWVyICAgICAiTW9uaXRvcjAi CiAgICBWZW5kb3JOYW1lICAgICAiU2Ftc3VuZyIKICAgIE1vZGVsTmFtZSAgICAgICJTeW5j TWFzdGVyIFAyNzcwIgogICAgRGlzcGxheVNpemUgICAgMTYwIDkwCiAgICBIb3JpelN5bmMg ICAgICAyOC4wIC0gMzMuMAogICAgVmVydFJlZnJlc2ggICAgNDMuMCAtIDcyLjAKICAgIE1v ZGVsaW5lICAgICAgIjE5MjB4MTA4MF82MC4wMCIgIDE3My4wMCAgMTkyMCAyMDQ4IDIyNDgg MjU3NiAgMTA4MCAxMDgzIDEwODggMTEyMCAtaHN5bmMgK3ZzeW5jCiAgICBPcHRpb24gICAg ICAgICAiRFBNUyIKRW5kU2VjdGlvbgoKU2VjdGlvbiAiRGV2aWNlIgogICAgSWRlbnRpZmll ciAgICAgIkRldmljZTAiCiAgICBEcml2ZXIgICAgICAgICAibnZpZGlhIgogICAgVmVuZG9y TmFtZSAgICAgIk5WSURJQSBDb3Jwb3JhdGlvbiIKICAgIEJ1c0lEICAgICAgICAgICJQQ0k6 MTowOjAiCkVuZFNlY3Rpb24KClNlY3Rpb24gIlNjcmVlbiIKICAgIElkZW50aWZpZXIgICAg ICJTY3JlZW4wIgogICAgRGV2aWNlICAgICAgICAgIkRldmljZTAiCiAgICBNb25pdG9yICAg ICAgICAiTW9uaXRvcjAiCiAgICBEZWZhdWx0RGVwdGggICAgMjQKICAgIFN1YlNlY3Rpb24g ICAgICJEaXNwbGF5IgogICAgICAgIERlcHRoICAgICAgIDI0CiAgICAgICAgTW9kZXMgICAi MTkyMHgxMDgwIgogICAgRW5kU3ViU2VjdGlvbgpFbmRTZWN0aW9uCg== --------------010005000105080705030201--