mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-26 18:33:10 +00:00

Call drm_client_setup() to run the kernel's default client setup for DRM. Set fbdev_probe in struct drm_driver, so that the client setup can start the common fbdev client. The vboxvideo driver specifies a preferred color mode of 32. As this is the default if no format has been given, leave it out entirely. v5: - select DRM_CLIENT_SELECTION Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Cc: Hans de Goede <hdegoede@redhat.com> Acked-by: Javier Martinez Canillas <javierm@redhat.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-71-tzimmermann@suse.de
20 lines
645 B
Plaintext
20 lines
645 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
config DRM_VBOXVIDEO
|
|
tristate "Virtual Box Graphics Card"
|
|
depends on DRM && X86 && PCI
|
|
select DRM_CLIENT_SELECTION
|
|
select DRM_KMS_HELPER
|
|
select DRM_VRAM_HELPER
|
|
select DRM_TTM
|
|
select DRM_TTM_HELPER
|
|
select GENERIC_ALLOCATOR
|
|
help
|
|
This is a KMS driver for the virtual Graphics Card used in
|
|
Virtual Box virtual machines.
|
|
|
|
Although it is possible to build this driver built-in to the
|
|
kernel, it is advised to build it as a module, so that it can
|
|
be updated independently of the kernel. Select M to build this
|
|
driver as a module and add support for these devices via drm/kms
|
|
interfaces.
|