From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35109) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGKAa-0001FC-TA for guix-patches@gnu.org; Sat, 27 Oct 2018 04:42:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGKAV-0000QV-6S for guix-patches@gnu.org; Sat, 27 Oct 2018 04:42:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40270) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gGKAU-0000Q7-OT for guix-patches@gnu.org; Sat, 27 Oct 2018 04:42:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gGKAU-0004ZI-L4 for guix-patches@gnu.org; Sat, 27 Oct 2018 04:42:02 -0400 Subject: [bug#33172] [PATCH] gnu: linux-libre: Enable BOCHS DRM support. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35036) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGKA4-0001Cw-Tv for guix-patches@gnu.org; Sat, 27 Oct 2018 04:41:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGK9w-0008SU-Sq for guix-patches@gnu.org; Sat, 27 Oct 2018 04:41:34 -0400 Received: from mail-pg1-x541.google.com ([2607:f8b0:4864:20::541]:42273) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gGK9t-0008P9-J3 for guix-patches@gnu.org; Sat, 27 Oct 2018 04:41:27 -0400 Received: by mail-pg1-x541.google.com with SMTP id i4-v6so1596038pgq.9 for ; Sat, 27 Oct 2018 01:41:23 -0700 (PDT) References: <20181027083051.7817-1-m.othacehe@gmail.com> From: Mathieu Othacehe In-reply-to: <20181027083051.7817-1-m.othacehe@gmail.com> Date: Sat, 27 Oct 2018 17:41:12 +0900 Message-ID: <871s8bye6v.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33172@debbugs.gnu.org Hi, This article might help to understand what's new in QEMU 3.0 with VGA emulation. https://www.kraxel.org/blog/2018/10/qemu-vga-emulation-and-bochs-display/ Thanks, Mathieu Mathieu Othacehe writes: > * gnu/packages/aux-files/linux-libre/4.19-x86_64.conf: Build DRM BOCHS support > as a module. It adds DRM support for BOCHS dispi vga interface used by > qemu (-vga std option). It will also be useful for QEMU 3.0 to enable the new > "bochs-display" display device. > * gnu/packages/aux-files/linux-libre/4.19-i686.conf: Ditto. > --- > gnu/packages/aux-files/linux-libre/4.19-i686.conf | 2 +- > gnu/packages/aux-files/linux-libre/4.19-x86_64.conf | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/aux-files/linux-libre/4.19-i686.conf b/gnu/packages/aux-files/linux-libre/4.19-i686.conf > index 07a035be9..c1df3f0f4 100644 > --- a/gnu/packages/aux-files/linux-libre/4.19-i686.conf > +++ b/gnu/packages/aux-files/linux-libre/4.19-i686.conf > @@ -5949,7 +5949,7 @@ CONFIG_DRM_AST=m > # CONFIG_DRM_MGAG200 is not set > CONFIG_DRM_CIRRUS_QEMU=m > CONFIG_DRM_QXL=m > -# CONFIG_DRM_BOCHS is not set > +CONFIG_DRM_BOCHS=m > CONFIG_DRM_VIRTIO_GPU=m > CONFIG_DRM_PANEL=y > > diff --git a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf > index 0e102c87d..a8f8c8164 100644 > --- a/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf > +++ b/gnu/packages/aux-files/linux-libre/4.19-x86_64.conf > @@ -5853,7 +5853,7 @@ CONFIG_DRM_AST=m > # CONFIG_DRM_MGAG200 is not set > CONFIG_DRM_CIRRUS_QEMU=m > CONFIG_DRM_QXL=m > -# CONFIG_DRM_BOCHS is not set > +CONFIG_DRM_BOCHS=m > CONFIG_DRM_VIRTIO_GPU=m > CONFIG_DRM_PANEL=y