From owner-freebsd-questions@FreeBSD.ORG Tue Jan 6 02:10:33 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3306569F for ; Tue, 6 Jan 2015 02:10:33 +0000 (UTC) Received: from pandora.au.calorieking.net (mail.au.calorieking.net [115.70.179.114]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 68E0B64BA9 for ; Tue, 6 Jan 2015 02:10:32 +0000 (UTC) Received: from pandora.au.calorieking.net (localhost [127.0.0.1]) by pandora.au.calorieking.net (Postfix) with ESMTP id 8F5456 for ; Tue, 6 Jan 2015 10:10:20 +0800 (WST) X-Virus-Scanned: amavisd-new at calorieking.com Received: from pandora.au.calorieking.net ([127.0.0.1]) by pandora.au.calorieking.net (mail.au.calorieking.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id w1ztEH64yQ4e for ; Tue, 6 Jan 2015 10:10:20 +0800 (WST) Received: from egeria.internal (egeria.internal [192.168.2.111]) by pandora.au.calorieking.net (Postfix) with ESMTPSA id 34BA54 for ; Tue, 6 Jan 2015 10:10:20 +0800 (WST) Message-ID: <54AB440B.2030201@calorieking.com> Date: Tue, 06 Jan 2015 10:10:19 +0800 From: Gregory Orange User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: Re: emulate a Xorg configuration of GNU/Linux (Fedora 21) on FreeBSD References: <8D1F6AC53C2F2F0-4F4-BD1DB@webmail-va133.sysops.aol.com> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jan 2015 02:10:33 -0000 On 05/01/15 23:48, Warren Block wrote: > On Sun, 4 Jan 2015, Xavier Freebsd Questio via freebsd-questions wrote: >>>> I have a laptop with an Intel graphics card, >>> Which one, specifically? What is the laptop model number, and >> exactly >>> which Intel graphics does it have? >> My 'pciconf -vl' output: http://pastebin.com/qr4aGyS5 > > As Polytropon pointed out, it is a "Valley View Gen7" GPU, apparently a > successor to Bay Trail. Whether the FreeBSD version of the X intel > driver supports that yet, I don't know. I had good response on Freenode IRC at #intel-gfx when asking about my details. Here's how I got the relevant info (device is "Haswell-ULT Integrated Graphics Controller" in a new Core i3): # pciconf -l pci0:0:2:0 | grep vgapci0 vgapci0@pci0:0:2:0: class=0x030000 card=0x20548086 chip=0x0a168086 rev=0x09 hdr=0x00 bwidawks on #intel-gfx gave me http://sprunge.us/DNbF From chip=... I extracted 0a16 $ curl http://sprunge.us/DNbF | grep -i 0a16 CHIPSET(0x0A16, hsw_gt2, "Intel(R) Haswell Mobile") Riastradh and bwidawks said that meant the required driver support is for GT2, which is not listed at intel(4x) right now, implying there is not yet support for it. I'm therefore using the vesa driver. HTH, Greg.