summaryrefslogtreecommitdiffstats
path: root/rules/igt-gpu-tools.in
blob: 24ba18c23621b061ad2b8796c8be0f105916933b (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
## SECTION=multimedia_tools

menuconfig IGT_GPU_TOOLS
	tristate
	select HOST_MESON
	select GLIB
	select CAIRO
	select LIBKMOD
	select LIBDRM
	select LIBPCIACCESS
	select LIBUNWIND
	select LIBELF
	select LIBELF_LIBDW
	select OPENSSL
	select PROCPS
	select UDEV
	select UDEV_LIBUDEV
	select ZLIB
	select JSON_C		if IGT_GPU_TOOLS_TEST_RUNNER
	select PERL		if IGT_GPU_TOOLS_TESTS && RUNTIME
	prompt "igt-gpu-tools                 "
	help
	  igt-gpu-tools is a package of tools for debugging the Intel
	  graphics driver, including a GPU hang dumping program,
	  performance monitor, and performance microbenchmarks for
	  regression testing the DRM.

if IGT_GPU_TOOLS

config IGT_GPU_TOOLS_INTEL
	bool
	default LIBDRM_INTEL

config IGT_GPU_TOOLS_AMDGPU
	bool
	default LIBDRM_AMDGPU

config IGT_GPU_TOOLS_NOUVEAU
	bool
	default LIBDRM_NOUVEAU

config IGT_GPU_TOOLS_FREEDRENO
	bool
	default LIBDRM_FREEDRENO

config IGT_GPU_TOOLS_TESTS
	bool
	prompt "build and install tests"

if IGT_GPU_TOOLS_TESTS

config IGT_GPU_TOOLS_TEST_RUNNER
	bool
	prompt "build and install igt test runner"

endif

endif