[igt-dev] [PATCH i-g-t] igt: Drop Intel from the name in docs and paths
Arkadiusz Hiler
arkadiusz.hiler at intel.com
Fri Apr 13 22:35:48 UTC 2018
This is just a simple change to reflect the actual state. No rewording
yet, just a simple substitution in most visible places - docs, README
and paths.
There are probably some leftovers here and there, but we can let them be
for now, this is already well overdue.
Cc: Petri Latvala <petri.latvala at intel.com>
Cc: Daniel Vetter <daniel.vetter at intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler at intel.com>
---
README | 28 +++++++++++-----------
docs/reference/Makefile.am | 2 +-
.../{intel-gpu-tools => igt-gpu-tools}/.gitignore | 0
.../{intel-gpu-tools => igt-gpu-tools}/Makefile.am | 2 +-
.../generate_description_xml.sh | 0
.../generate_programs_xml.sh | 0
.../igt-gpu-tools-docs.xml} | 4 ++--
.../igt_test_programs.xml | 0
.../{intel-gpu-tools => igt-gpu-tools}/meson.build | 4 ++--
.../version.xml.in | 0
docs/reference/meson.build | 2 +-
meson.build | 6 ++---
12 files changed, 24 insertions(+), 24 deletions(-)
rename docs/reference/{intel-gpu-tools => igt-gpu-tools}/.gitignore (100%)
rename docs/reference/{intel-gpu-tools => igt-gpu-tools}/Makefile.am (99%)
rename docs/reference/{intel-gpu-tools => igt-gpu-tools}/generate_description_xml.sh (100%)
rename docs/reference/{intel-gpu-tools => igt-gpu-tools}/generate_programs_xml.sh (100%)
rename docs/reference/{intel-gpu-tools/intel-gpu-tools-docs.xml => igt-gpu-tools/igt-gpu-tools-docs.xml} (96%)
rename docs/reference/{intel-gpu-tools => igt-gpu-tools}/igt_test_programs.xml (100%)
rename docs/reference/{intel-gpu-tools => igt-gpu-tools}/meson.build (95%)
rename docs/reference/{intel-gpu-tools => igt-gpu-tools}/version.xml.in (100%)
diff --git a/README b/README
index 82c1cad5..c71ecedd 100644
--- a/README
+++ b/README
@@ -1,18 +1,18 @@
-Intel GPU Tools
-===============
+IGT GPU Tools
+=============
Description
-----------
-Intel GPU Tools is a collection of tools for development and testing of the
-Intel DRM driver. There are many macro-level test suites that get used against
-the driver, including xtest, rendercheck, piglit, and oglconform, but failures
-from those can be difficult to track down to kernel changes, and many require
+IGT GPU Tools is a collection of tools for development and testing of the DRM
+drivers. There are many macro-level test suites that get used against the
+drivers, including xtest, rendercheck, piglit, and oglconform, but failures from
+those can be difficult to track down to kernel changes, and many require
complicated build procedures or specific testing environments to get useful
-results. Therefore, Intel GPU Tools includes low-level tools and tests
-specifically for development and testing of the Intel DRM Driver.
+results. Therefore, IGT GPU Tools includes low-level tools and tests
+specifically for development and testing of the DRM Drivers.
-Intel GPU Tools is split into several sections:
+IGT GPU Tools is split into several sections:
benchmarks/
This is a collection of useful microbenchmarks that can be used to tune
@@ -63,7 +63,7 @@ tests/
Set the IGT_TEST_ROOT environment variable to point to the tests
directory, or set the path key in the "igt" section of piglit.conf to
- the intel-gpu-tools root directory.
+ the igt-gpu-tools root directory.
The tests in the i-g-t sources need to have been built already. Then we
can run the testcases with (as usual as root, no other drm clients
@@ -112,7 +112,7 @@ debugger/
The debugger must be run as root: "sudo debugger/eudb"
docs/
- Contains the automatically generated intel-gpu-tools libraries
+ Contains the automatically generated igt-gpu-tools libraries
reference documentation in docs/reference/. You need to have the
gtk-doc tools installed and use the "--enable-gtk-doc" configure flag
to generate this API documentation.
@@ -123,8 +123,8 @@ docs/
If you've added/changed/removed a symbol or anything else that changes
the overall structure or indexes, this needs to be reflected in
- intel-gpu-tools-sections.txt. Entirely new sections will also need to be
- added to intel-gpu-tools-docs.xml in the appropriate place.
+ igt-gpu-tools-sections.txt. Entirely new sections will also need to be
+ added to igt-gpu-tools-docs.xml in the appropriate place.
include/drm-uapi
Imported DRM uapi headers from airlied's drm-next branch.
@@ -186,7 +186,7 @@ should continue to be used for that.
Documentation is built using
-$ cd build && ninja && ninja intel-gpu-tools-doc
+$ cd build && ninja && ninja igt-gpu-tools-doc
Note that there's a setup script similar to ./autogen.sh which creates a
compatibility Makefile with a few useful default targets:
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index 4f579b58..13a1954e 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -1 +1 @@
-SUBDIRS = intel-gpu-tools
+SUBDIRS = igt-gpu-tools
diff --git a/docs/reference/intel-gpu-tools/.gitignore b/docs/reference/igt-gpu-tools/.gitignore
similarity index 100%
rename from docs/reference/intel-gpu-tools/.gitignore
rename to docs/reference/igt-gpu-tools/.gitignore
diff --git a/docs/reference/intel-gpu-tools/Makefile.am b/docs/reference/igt-gpu-tools/Makefile.am
similarity index 99%
rename from docs/reference/intel-gpu-tools/Makefile.am
rename to docs/reference/igt-gpu-tools/Makefile.am
index ee1e900f..11ada326 100644
--- a/docs/reference/intel-gpu-tools/Makefile.am
+++ b/docs/reference/igt-gpu-tools/Makefile.am
@@ -75,7 +75,7 @@ AUTOMAKE_OPTIONS = 1.6
# of using the various options.
# The name of the module, e.g. 'glib'.
-DOC_MODULE=intel-gpu-tools
+DOC_MODULE=igt-gpu-tools
# Uncomment for versioned docs and specify the version of the module, e.g. '2'.
#DOC_MODULE_VERSION=2
diff --git a/docs/reference/intel-gpu-tools/generate_description_xml.sh b/docs/reference/igt-gpu-tools/generate_description_xml.sh
similarity index 100%
rename from docs/reference/intel-gpu-tools/generate_description_xml.sh
rename to docs/reference/igt-gpu-tools/generate_description_xml.sh
diff --git a/docs/reference/intel-gpu-tools/generate_programs_xml.sh b/docs/reference/igt-gpu-tools/generate_programs_xml.sh
similarity index 100%
rename from docs/reference/intel-gpu-tools/generate_programs_xml.sh
rename to docs/reference/igt-gpu-tools/generate_programs_xml.sh
diff --git a/docs/reference/intel-gpu-tools/intel-gpu-tools-docs.xml b/docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml
similarity index 96%
rename from docs/reference/intel-gpu-tools/intel-gpu-tools-docs.xml
rename to docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml
index 7d9efd77..ac83272f 100644
--- a/docs/reference/intel-gpu-tools/intel-gpu-tools-docs.xml
+++ b/docs/reference/igt-gpu-tools/igt-gpu-tools-docs.xml
@@ -7,9 +7,9 @@
]>
<book id="index">
<bookinfo>
- <title>intel-gpu-tools Reference Manual</title>
+ <title>igt-gpu-tools Reference Manual</title>
<releaseinfo>
- for intel-gpu-tools &version;.
+ for igt-gpu-tools &version;.
</releaseinfo>
</bookinfo>
diff --git a/docs/reference/intel-gpu-tools/igt_test_programs.xml b/docs/reference/igt-gpu-tools/igt_test_programs.xml
similarity index 100%
rename from docs/reference/intel-gpu-tools/igt_test_programs.xml
rename to docs/reference/igt-gpu-tools/igt_test_programs.xml
diff --git a/docs/reference/intel-gpu-tools/meson.build b/docs/reference/igt-gpu-tools/meson.build
similarity index 95%
rename from docs/reference/intel-gpu-tools/meson.build
rename to docs/reference/igt-gpu-tools/meson.build
index 1c009229..aadb9af5 100644
--- a/docs/reference/intel-gpu-tools/meson.build
+++ b/docs/reference/igt-gpu-tools/meson.build
@@ -69,11 +69,11 @@ configure_file(input: 'version.xml.in',
output: 'version.xml',
install: false, configuration: config)
-gnome.gtkdoc('intel-gpu-tools',
+gnome.gtkdoc('igt-gpu-tools',
content_files : ['igt_test_programs.xml'],
dependencies : lib_igt,
install : true,
- main_xml : 'intel-gpu-tools-docs.xml',
+ main_xml : 'igt-gpu-tools-docs.xml',
scan_args : '--rebuild-sections',
mkdb_args : '--output-format=xml',
ignore_headers : ignore_headers,
diff --git a/docs/reference/intel-gpu-tools/version.xml.in b/docs/reference/igt-gpu-tools/version.xml.in
similarity index 100%
rename from docs/reference/intel-gpu-tools/version.xml.in
rename to docs/reference/igt-gpu-tools/version.xml.in
diff --git a/docs/reference/meson.build b/docs/reference/meson.build
index 944f28a5..85a8aa47 100644
--- a/docs/reference/meson.build
+++ b/docs/reference/meson.build
@@ -1 +1 @@
-subdir('intel-gpu-tools')
+subdir('igt-gpu-tools')
diff --git a/meson.build b/meson.build
index 5b783e5d..cd736d8e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('intel-gpu-tools', 'c',
+project('igt-gpu-tools', 'c',
version : '1.22',
default_options: [
'warning_level=2',
@@ -125,10 +125,10 @@ configure_file(output: 'config.h', install: false, configuration: config)
prefix = get_option('prefix')
bindir = get_option('bindir')
-datadir = join_paths(get_option('datadir'), 'intel-gpu-tools')
+datadir = join_paths(get_option('datadir'), 'igt-gpu-tools')
includedir = get_option('includedir')
libdir = get_option('libdir')
-libexecdir = join_paths(get_option('libexecdir'), 'intel-gpu-tools')
+libexecdir = join_paths(get_option('libexecdir'), 'igt-gpu-tools')
mandir = get_option('mandir')
pkgconfigdir = join_paths(libdir, 'pkgconfig')
--
2.14.3
More information about the igt-dev
mailing list