From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: Re: [PATCH] VGA Bios allow 1920x1080 Date: Sat, 17 Apr 2010 23:28:58 +0300 Message-ID: <4BCA1A0A.4040703@redhat.com> References: <201004130607.47867.oyvinds@everdot.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: "kvm@vger.kernel.org" To: oyvinds@everdot.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:37079 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754735Ab0DQU3h (ORCPT ); Sat, 17 Apr 2010 16:29:37 -0400 In-Reply-To: <201004130607.47867.oyvinds@everdot.org> Sender: kvm-owner@vger.kernel.org List-ID: On 04/13/2010 07:07 AM, =C3=98yvind S=C3=A6ther wrote: > The patch lets me run 1920x1080 resolution, some displays are only th= at and > not 1920x1200 these days. Gentoos ebuild doesn't seem to make the vga= bios and > only uses /pc-bios/vgabios.bin, making kvm/vgabios and replace vgabio= s.bin > with the VGABIOS-lgpl-latest.bin it makes works (for me). > > > =20 Missing signoff. > --- vbetables-gen.c 2010-04-13 06:04:09.874359455 +0200 > +++ vbetables-gen.c.new 2010-04-13 06:04:03.955480621 +0200 > @@ -73,12 +73,15 @@ > { 1680, 1050, 16 , 0x184}, > { 1680, 1050, 24 , 0x185}, > { 1680, 1050, 32 , 0x186}, > -{ 1920, 1200, 16 , 0x187}, > -{ 1920, 1200, 24 , 0x188}, > -{ 1920, 1200, 32 , 0x189}, > -{ 2560, 1600, 16 , 0x18a}, > -{ 2560, 1600, 24 , 0x18b}, > -{ 2560, 1600, 32 , 0x18c}, > +{ 1920, 1080, 16 , 0x187}, > +{ 1920, 1080, 24 , 0x188}, > +{ 1920, 1080, 32 , 0x189}, > +{ 1920, 1200, 16 , 0x18a}, > +{ 1920, 1200, 24 , 0x18b}, > +{ 1920, 1200, 32 , 0x18c}, > +{ 2560, 1600, 16 , 0x18d}, > +{ 2560, 1600, 24 , 0x18e}, > +{ 2560, 1600, 32 , 0x18f}, > { 0, }, > }; > =20 Please don't modify the existing mode numbers. --=20 Do not meddle in the internals of kernels, for they are subtle and quic= k to panic.