Skip to content

Instantly share code, notes, and snippets.

@ginkage
Created October 26, 2023 14:04
Show Gist options
  • Save ginkage/75d06917a0c0f3f46ddabd8e9c9baaa0 to your computer and use it in GitHub Desktop.
Save ginkage/75d06917a0c0f3f46ddabd8e9c9baaa0 to your computer and use it in GitHub Desktop.
RetroPie setup fix
diff --git a/scriptmodules/emulators/retroarch.sh b/scriptmodules/emulators/retroarch.sh
index 7359a0d8..fe17bde3 100644
--- a/scriptmodules/emulators/retroarch.sh
+++ b/scriptmodules/emulators/retroarch.sh
@@ -53,6 +53,7 @@ function build_retroarch() {
isPlatform "gles32" && params+=(--enable-opengles3_2)
fi
isPlatform "rpi" && isPlatform "mesa" && params+=(--disable-videocore)
+ isPlatform "rk3588" && params+=(--disable-videocore)
# Temporarily block dispmanx support for fkms until upstream support is fixed
isPlatform "dispmanx" && ! isPlatform "kms" && params+=(--enable-dispmanx --disable-opengl1)
isPlatform "mali" && params+=(--enable-mali_fbdev)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment