forked from NVIDIA/open-gpu-kernel-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
37 lines (27 loc) · 774 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-License-Identifier: GPL-2.0-only
menuconfig DRM_NVIDIA
tristate "NVIDIA Linux GPU driver"
depends on DRM
select BACKLIGHT_CLASS_DEVICE
select DRM_KMS_HELPER
select FW_LOADER
select ZLIB_INFLATE
# This must have way more depends and selects, but Nvidia doesn't
# provide any Kconfig to rely on. For now, rely on that usual distro
# configs already have all that is needed.
help
NVIDIA open-source GPU driver ported from their official repo.
https://github.com/NVIDIA/open-gpu-kernel-modules
if DRM_NVIDIA
choice
prompt "Driver build type"
default DRM_NVIDIA_RELEASE
config DRM_NVIDIA_DEBUG
bool "Debug"
config DRM_NVIDIA_DEVELOP
bool "Develop"
config DRM_NVIDIA_RELEASE
bool "Release"
endchoice
# Something will happen here later.
endif