From mboxrd@z Thu Jan 1 00:00:00 1970 From: jer Subject: Added resolution 1920x1080 to vga bios Date: Sun, 21 Feb 2010 14:21:07 +0100 Message-ID: <1266758467.6902.13.camel@Mac> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-CJRpmYxE9bELCcr155ti" To: kvm@vger.kernel.org Return-path: Received: from out3.laposte.net ([193.251.214.120]:11296 "EHLO out4.laposte.net" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751976Ab0BUNxl (ORCPT ); Sun, 21 Feb 2010 08:53:41 -0500 Received: from out3.laposte.net (lbao93aubmepnpf001-183-pip.meplus.info [10.98.50.10]) by mwinf8305.laposte.net (SMTP Server) with ESMTP id B69D21C001CD for ; Sun, 21 Feb 2010 14:21:32 +0100 (CET) Received: from meplus.info (localhost [127.0.0.1]) by mwinf8306.laposte.net (SMTP Server) with ESMTP id 463EB700008C for ; Sun, 21 Feb 2010 14:21:08 +0100 (CET) Received: from [192.168.0.18] (lns-bzn-59-82-252-138-20.adsl.proxad.net [82.252.138.20]) by mwinf8306.laposte.net (SMTP Server) with ESMTP id 01D937000087 for ; Sun, 21 Feb 2010 14:21:07 +0100 (CET) Sender: kvm-owner@vger.kernel.org List-ID: --=-CJRpmYxE9bELCcr155ti Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Hello, The 1920x1080 aka Full HD resolution has become standard on many displays so it was lacking for me and other kvm users so I have added it to the vbe table. Could you merge it so it can become available to everyone ? Regards, Jerome --=-CJRpmYxE9bELCcr155ti Content-Disposition: attachment; filename="patch" Content-Type: text/x-patch; name="patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit --- a/kvm/vgabios/vbetables-gen.c +++ b/kvm/vgabios/vbetables-gen.c @@ -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, }, }; --=-CJRpmYxE9bELCcr155ti--