File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ function get_rpi_video() {
354
354
355
355
if [[ " $__has_kms " -eq 1 ]]; then
356
356
__platform_flags+=(mesa kms)
357
- if [[ -z " $__has_dispmanx " ]]; then
357
+ if ! isPlatform " aarm64 " && [[ -z " $__has_dispmanx " ]]; then
358
358
if [[ " $__chroot " -eq 1 ]]; then
359
359
# in a chroot default to fkms (supporting dispmanx) when debian is older than 11 (bullseye)
360
360
[[ " $__os_debian_ver " -lt 11 ]] && __has_dispmanx=1
@@ -365,7 +365,10 @@ function get_rpi_video() {
365
365
fi
366
366
[[ " $__has_dispmanx " -eq 1 ]] && __platform_flags+=(dispmanx)
367
367
else
368
- __platform_flags+=(videocore dispmanx)
368
+ __platform_flags+=(videocore)
369
+ if ! isPlatform " aarm64" ; then
370
+ __platform_flags+=(dispmanx)
371
+ fi
369
372
fi
370
373
371
374
# delete legacy pkgconfig that conflicts with Mesa (may be installed via rpi-update)
You can’t perform that action at this time.
0 commit comments