From patchwork Tue Feb 22 16:56:08 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Bader X-Patchwork-Id: 1596268 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: bilbo.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=canonical.com header.i=@canonical.com header.a=rsa-sha256 header.s=20210705 header.b=LbD0s5TD; dkim-atps=neutral Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4K350k4Fgqz9sGC for ; Wed, 23 Feb 2022 03:56:22 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1nMYSU-0000im-04; Tue, 22 Feb 2022 16:56:14 +0000 Received: from smtp-relay-canonical-1.internal ([10.131.114.174] helo=smtp-relay-canonical-1.canonical.com) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1nMYSQ-0000h3-0X for kernel-team@lists.ubuntu.com; Tue, 22 Feb 2022 16:56:10 +0000 Received: from canonical.com (1.general.smb.uk.vpn [10.172.193.28]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id AA9173FCA5 for ; Tue, 22 Feb 2022 16:56:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1645548969; bh=CXI44uk1sTnGTeSQ0aNsT2foeQnemsvaNREQd1ANgdc=; h=From:To:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=LbD0s5TDxYSc4xcfQI5vm15EFf2NX/kYpBBhMPoDGot3Pds3zQ+VHSTROHkszvPC8 YRXxpt2K10tIGrynaYKdKDgAfz/x37H44cDJHQewC3RGQUJQ0sot5lDo9f/MS1zm1P trswbDnofK9XIutvse2IapUufjOiqKkfi/HvXOFaf2yGAO5XaCuMFYIYUgUJcJQqwt KobEdDU95yeQ3Br7mRBWglcKzWfYKio/YiETqULUb/pzeZylMEmUVeCesvznn2kK7c PXflv+eemQB/JcN89n8lLApClUve+RWR22fJh9oLNm+NQIx2qxd1SQDixjZgs8S6I1 B9CZLEloaHiwg== From: Stefan Bader To: kernel-team@lists.ubuntu.com Subject: [PATCH SRU Focal] UBUNTU: [Packaging] Move VM DRM drivers into modules Date: Tue, 22 Feb 2022 17:56:08 +0100 Message-Id: <20220222165608.75057-3-stefan.bader@canonical.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220222165608.75057-1-stefan.bader@canonical.com> References: <20220222165608.75057-1-stefan.bader@canonical.com> MIME-Version: 1.0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" BugLink: https://bugs.launchpad.net/bugs/1960633 We already have vboxvideo included in the linux-modules package for newer releases. This is also included when using the linux-virtual meta. But there is a couple of other DRM drivers which could be used by various VM installations which run a desktop: - bochs-drm (? Qemu) - cirrus (old standard when it comes to emulated graphics) - drm_xen_front (Xen) - virtio-gpu (KVM) - vboxvideo (VirtualBox) - vmwgfx (VMWare) All of those drivers direct dependencies are already part of linux-modules. For Focal this also adds vboxvideo which until now was part of linux-modules-extra. Signed-off-by: Stefan Bader --- debian.master/control.d/generic.inclusion-list | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian.master/control.d/generic.inclusion-list b/debian.master/control.d/generic.inclusion-list index d0aec38b30a3..56043df2f41c 100644 --- a/debian.master/control.d/generic.inclusion-list +++ b/debian.master/control.d/generic.inclusion-list @@ -38,9 +38,15 @@ drivers/crypto/vmx/vmx-crypto.ko drivers/firmware/efi/* drivers/firmware/iscsi_ibft.ko drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/bochs/bochs-drm.ko +drivers/gpu/drm/cirrus/cirrus.ko drivers/gpu/drm/drm_kms_helper.ko drivers/gpu/drm/drm.ko drivers/gpu/drm/ttm/ttm.ko +drivers/gpu/drm/vboxvideo/vboxvideo.ko +drivers/gpu/drm/virtio/virtio-gpu.ko +drivers/gpu/drm/vmwgfx/vmwgfx.ko +drivers/gpu/drm/xen/drm_xen_front.ko drivers/hid/hid-generic.ko drivers/hid/hid-hyperv.ko drivers/hid/hid.ko