mesa: Enable imx gallium driver on ARM
And lighten the aarch64 build by disabling drivers for hardware that doesn't run on aarch64 processors.
This commit is contained in:
parent
49f1abec15
commit
adb460b30f
@ -32,8 +32,10 @@ else
|
||||
|
||||
let
|
||||
defaultGalliumDrivers =
|
||||
if (stdenv.isArm || stdenv.isAarch64)
|
||||
then ["nouveau" "freedreno" "vc4" "etnaviv"]
|
||||
if stdenv.isArm
|
||||
then ["nouveau" "freedreno" "vc4" "etnaviv" "imx"]
|
||||
else if stdenv.isAarch64
|
||||
then ["nouveau" "vc4" ]
|
||||
else ["i915" "ilo" "r300" "r600" "radeonsi" "nouveau"];
|
||||
defaultDriDrivers =
|
||||
if (stdenv.isArm || stdenv.isAarch64)
|
||||
|
Loading…
Reference in New Issue
Block a user