diff options
author | Alyssa Rosenzweig <[email protected]> | 2019-02-05 02:00:12 +0000 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2019-02-06 02:59:00 +0000 |
commit | a81d5587d6ad20506c13199a1f4573fdf6350709 (patch) | |
tree | f10001f016014915f8e28a2d6e59ec9f49511a82 /meson.build | |
parent | 3c08ecf147e39003139c0772c4e5606acc58d097 (diff) |
meson: Remove panfrost from default driver list
Until the kernel side matures and the full driver is upstreamed, to
avoid end-user surprises, Panfrost should only be built for the
adventurous.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index b83cc21a328..8c24ef268f3 100644 --- a/meson.build +++ b/meson.build @@ -132,7 +132,7 @@ if _drivers.contains('auto') elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) _drivers = [ 'kmsro', 'v3d', 'vc4', 'freedreno', 'etnaviv', 'nouveau', - 'tegra', 'virgl', 'swrast', 'panfrost' + 'tegra', 'virgl', 'swrast' ] else error('Unknown architecture @0@. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.'.format( |