forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drm/vkms: Create separate Kconfig file for VKMS
This aligns with most other DRM drivers and will allow us to add new VKMS config options without polluting the DRM Kconfig. v3: - Change SPDX to GPL-2.0-only to match DRM KConfig SPDX (Simon) Signed-off-by: Harry Wentland <[email protected]> Reviewed-by: Simon Ser <[email protected]> Signed-off-by: Melissa Wen <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
- Loading branch information
1 parent
cf8837d
commit ffcc67c
Showing
2 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
config DRM_VKMS | ||
tristate "Virtual KMS (EXPERIMENTAL)" | ||
depends on DRM && MMU | ||
select DRM_KMS_HELPER | ||
select DRM_GEM_SHMEM_HELPER | ||
select CRC32 | ||
default n | ||
help | ||
Virtual Kernel Mode-Setting (VKMS) is used for testing or for | ||
running GPU in a headless machines. Choose this option to get | ||
a VKMS. | ||
|
||
If M is selected the module will be called vkms. |