diff options
author | Eric Anholt <[email protected]> | 2017-08-25 15:34:22 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-05-16 21:19:07 +0100 |
commit | c4c488a2aeb24c0f468664c0cacd0d01111a4e46 (patch) | |
tree | ad560d93a05e5eae1227775c9e1627e67256d1bd /src/broadcom | |
parent | 8a793d42f1ccef2c87053a1d9a130b49cfb2b84f (diff) |
v3d: Rename the vc5_dri.so driver to v3d_dri.so.
This allows the driver to load against the merged kernel DRM driver. In
the process, rename most of the build system variables and gallium
plumbing functions.
Diffstat (limited to 'src/broadcom')
-rw-r--r-- | src/broadcom/Makefile.vc5.am | 6 | ||||
-rw-r--r-- | src/broadcom/meson.build | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/broadcom/Makefile.vc5.am b/src/broadcom/Makefile.vc5.am index c56cf892287..97ef2d7455e 100644 --- a/src/broadcom/Makefile.vc5.am +++ b/src/broadcom/Makefile.vc5.am @@ -3,9 +3,9 @@ noinst_LTLIBRARIES += libbroadcom_v33.la noinst_LTLIBRARIES += libbroadcom_v41.la noinst_LTLIBRARIES += libbroadcom_v42.la -if USE_VC5_SIMULATOR -AM_CFLAGS += $(VC5_SIMULATOR_CFLAGS) -libbroadcom_la_LDFLAGS = $(VC5_SIMULATOR_LIBS) +if USE_V3D_SIMULATOR +AM_CFLAGS += $(V3D_SIMULATOR_CFLAGS) +libbroadcom_la_LDFLAGS = $(V3D_SIMULATOR_LIBS) endif libbroadcom_v33_la_SOURCES = $(BROADCOM_PER_VERSION_SOURCES) diff --git a/src/broadcom/meson.build b/src/broadcom/meson.build index 6c8ea613449..e4f57152613 100644 --- a/src/broadcom/meson.build +++ b/src/broadcom/meson.build @@ -22,14 +22,14 @@ inc_broadcom = include_directories('.', 'cle') subdir('cle') -vc5_versions = ['33', '41', '42'] +v3d_versions = ['33', '41', '42'] -if with_gallium_vc5 +if with_gallium_v3d subdir('compiler') subdir('qpu') per_version_libs = [] - foreach ver : vc5_versions + foreach ver : v3d_versions per_version_libs += static_library( 'libbroadcom-v' + ver, [ @@ -42,8 +42,8 @@ if with_gallium_vc5 ) endforeach - libbroadcom_vc5 = static_library( - 'libbroadcom_vc5', + libbroadcom_v3d = static_library( + 'libbroadcom_v3d', [ files('common/v3d_debug.c', 'clif/clif_dump.c'), v3d_xml_pack, |