From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGKKF-0005gK-GQ for guix-patches@gnu.org; Sat, 27 Oct 2018 04:52:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGKKA-0006i7-IB for guix-patches@gnu.org; Sat, 27 Oct 2018 04:52:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40275) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gGKKA-0006i0-DX for guix-patches@gnu.org; Sat, 27 Oct 2018 04:52:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gGKKA-0004nr-7f for guix-patches@gnu.org; Sat, 27 Oct 2018 04:52:02 -0400 Subject: [bug#33173] [PATCH] gnu: linux-libre: Enable BOCHS DRM support. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36843) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gGKJB-0005dR-OA for guix-patches@gnu.org; Sat, 27 Oct 2018 04:51:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gGKJ6-00063n-Ps for guix-patches@gnu.org; Sat, 27 Oct 2018 04:51:01 -0400 Received: from mail-pf1-x443.google.com ([2607:f8b0:4864:20::443]:36742) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gGJzy-0006O7-IO for guix-patches@gnu.org; Sat, 27 Oct 2018 04:31:10 -0400 Received: by mail-pf1-x443.google.com with SMTP id l81-v6so1661652pfg.3 for ; Sat, 27 Oct 2018 01:31:10 -0700 (PDT) From: Mathieu Othacehe Date: Sat, 27 Oct 2018 17:30:51 +0900 Message-Id: <20181027083051.7817-1-m.othacehe@gmail.com> 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: 33173@debbugs.gnu.org * 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 -- 2.17.1