mirror of
https://src.fedoraproject.org/rpms/mesa.git
synced 2024-11-24 17:35:18 +00:00
Enable v3d driver
This commit is contained in:
parent
4bc185a554
commit
0187833124
1 changed files with 9 additions and 2 deletions
11
mesa.spec
11
mesa.spec
|
@ -25,6 +25,7 @@
|
||||||
%global with_kmsro 1
|
%global with_kmsro 1
|
||||||
%global with_tegra 1
|
%global with_tegra 1
|
||||||
%global with_vc4 1
|
%global with_vc4 1
|
||||||
|
%global with_v3d 1
|
||||||
%global with_xa 1
|
%global with_xa 1
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
@ -48,7 +49,7 @@ Name: mesa
|
||||||
Summary: Mesa graphics libraries
|
Summary: Mesa graphics libraries
|
||||||
%global ver 19.0.6
|
%global ver 19.0.6
|
||||||
Version: %{lua:ver = string.gsub(rpm.expand("%{ver}"), "-", "~"); print(ver)}
|
Version: %{lua:ver = string.gsub(rpm.expand("%{ver}"), "-", "~"); print(ver)}
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.mesa3d.org
|
URL: http://www.mesa3d.org
|
||||||
|
|
||||||
|
@ -357,7 +358,7 @@ cp %{SOURCE1} docs/
|
||||||
-Ddri3=true \
|
-Ddri3=true \
|
||||||
-Ddri-drivers=%{?dri_drivers} \
|
-Ddri-drivers=%{?dri_drivers} \
|
||||||
%if 0%{?with_hardware}
|
%if 0%{?with_hardware}
|
||||||
-Dgallium-drivers=swrast,virgl,r300,nouveau%{?with_vmware:,svga}%{?with_radeonsi:,radeonsi,r600}%{?with_freedreno:,freedreno}%{?with_etnaviv:,etnaviv}%{?with_tegra:,tegra}%{?with_vc4:,vc4}%{?with_kmsro:,kmsro} \
|
-Dgallium-drivers=swrast,virgl,r300,nouveau%{?with_vmware:,svga}%{?with_radeonsi:,radeonsi,r600}%{?with_freedreno:,freedreno}%{?with_etnaviv:,etnaviv}%{?with_tegra:,tegra}%{?with_vc4:,vc4}%{?with_v3d:,v3d}%{?with_kmsro:,kmsro} \
|
||||||
%else
|
%else
|
||||||
-Dgallium-drivers=swrast,virgl \
|
-Dgallium-drivers=swrast,virgl \
|
||||||
%endif
|
%endif
|
||||||
|
@ -546,6 +547,9 @@ popd
|
||||||
%if 0%{?with_vc4}
|
%if 0%{?with_vc4}
|
||||||
%{_libdir}/dri/vc4_dri.so
|
%{_libdir}/dri/vc4_dri.so
|
||||||
%endif
|
%endif
|
||||||
|
%if 0%{?with_v3d}
|
||||||
|
%{_libdir}/dri/v3d_dri.so
|
||||||
|
%endif
|
||||||
%if 0%{?with_freedreno}
|
%if 0%{?with_freedreno}
|
||||||
%{_libdir}/dri/kgsl_dri.so
|
%{_libdir}/dri/kgsl_dri.so
|
||||||
%{_libdir}/dri/msm_dri.so
|
%{_libdir}/dri/msm_dri.so
|
||||||
|
@ -613,6 +617,9 @@ popd
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jun 24 2019 Peter Robinson <pbrobinson@fedoraproject.org> 19.0.6-2
|
||||||
|
- Enable v3d driver
|
||||||
|
|
||||||
* Fri Jun 07 2019 Pete Walter <pwalter@fedoraproject.org> - 19.0.6-1
|
* Fri Jun 07 2019 Pete Walter <pwalter@fedoraproject.org> - 19.0.6-1
|
||||||
- Update to 19.0.6
|
- Update to 19.0.6
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue