summaryrefslogtreecommitdiffstats
path: root/rules/libdrm.in
blob: 1b43551f7c701c9424e9d6b4bc1983abf716f605 (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 HOST_MESON
	select LIBC_RT
	select LIBPTHREAD_STUBS
	select HOST_XORG_UTIL_MACROS
	select LIBPCIACCESS	if LIBDRM_INTEL
	help
	  This library provides a user-level interface to the DRM
	  device. It is needed for x.org.

if LIBDRM

config LIBDRM_INTEL
	bool
	prompt "intel support"

config LIBDRM_RADEON
	bool
	prompt "radeon support"

config LIBDRM_AMDGPU
	bool
	prompt "amdgpu support"

config LIBDRM_NOUVEAU
	bool
	prompt "nouveau support"

config LIBDRM_VMWGFX
	bool
	prompt "vmwgfx support"

config LIBDRM_OMAP
	bool
	prompt "omap support"

config LIBDRM_EXYNOS
	bool
	prompt "exynos support"

config LIBDRM_FREEDRENO
	bool
	prompt "freedreno support"

config LIBDRM_TEGRA
	bool
	prompt "tegra support"

config LIBDRM_VC4
	bool
	prompt "vc4 support"

config LIBDRM_ETNAVIV
	bool
	prompt "etnaviv support"

config LIBDRM_TESTS
	bool
	prompt "install test programs"

endif