summaryrefslogtreecommitdiffstats
path: root/rules/libdrm.in
blob: 3889c334bd3af8d282f4715be2dd4f1ed3bbe883 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
## SECTION=multimedia_libs

menuconfig LIBDRM
	tristate
	prompt "libdrm                        "
	select LIBC_RT
	select UDEV
	select UDEV_LIBUDEV
	select LIBPTHREAD_STUBS
	select LIBPCIACCESS	if LIBDRM_INTEL
	help
	  This library provides an user-level interface to the DRM
	  device. It is needed for x.org.

if LIBDRM

config LIBDRM_LIBKMS
	bool
	prompt "build libkms"

config LIBDRM_INTEL
	bool
	prompt "intel KMS support"

config LIBDRM_RADEON
	bool
	prompt "radeon KMS support"

config LIBDRM_AMDGPU
	bool
	prompt "amdgpu KMS support"

config LIBDRM_NOUVEAU
	bool
	prompt "nouveau KMS support"

config LIBDRM_VMWGFX
	bool
	prompt "vmwgfx KMS support"

config LIBDRM_OMAP
	bool
	prompt "omap KMS support"

config LIBDRM_EXYNOS
	bool
	prompt "exynos KMS support"

config LIBDRM_FREEDRENO
	bool
	prompt "freedreno KMS support"

config LIBDRM_TEGRA
	bool
	prompt "tegra KMS support"

config LIBDRM_VC4
	bool
	prompt "vc4 KMS support"

config LIBDRM_TESTS
	bool
	prompt "install test programs"

endif