summaryrefslogtreecommitdiffstats
path: root/rules/igt-gpu-tools.in
diff options
context:
space:
mode:
authorPhilipp Zabel <p.zabel@pengutronix.de>2019-01-23 17:22:32 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-01-27 11:23:43 +0100
commit4cd9409a9691797b97d26e455be9c1786df1e8f2 (patch)
tree848a5cb4fa70f26b9cf489e79905fa6915ce8a93 /rules/igt-gpu-tools.in
parentea776fbfd2189bad48a0503cbf5b81725378c1f0 (diff)
downloadptxdist-4cd9409a9691797b97d26e455be9c1786df1e8f2.tar.gz
ptxdist-4cd9409a9691797b97d26e455be9c1786df1e8f2.tar.xz
igt-gpu-tools: rename from intel-gpu-tools 1.22 -> 1.23
Make the libdrm_intel dependency configurable and add an option to build and install the tests. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/igt-gpu-tools.in')
-rw-r--r--rules/igt-gpu-tools.in41
1 files changed, 41 insertions, 0 deletions
diff --git a/rules/igt-gpu-tools.in b/rules/igt-gpu-tools.in
new file mode 100644
index 000000000..35f18cd64
--- /dev/null
+++ b/rules/igt-gpu-tools.in
@@ -0,0 +1,41 @@
+## SECTION=multimedia_tools
+
+menuconfig IGT_GPU_TOOLS
+ tristate
+ select GLIB
+ select CAIRO
+ select LIBKMOD
+ select LIBDRM
+ select LIBPCIACCESS
+ select LIBUNWIND
+ select OPENSSL
+ select PROCPS
+ select UDEV
+ select UDEV_LIBUDEV
+ select ZLIB
+ 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_TESTS
+ bool
+ prompt "build and install tests"
+
+endif