We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 30853a2 + dc85e9a commit 460f018Copy full SHA for 460f018
scriptmodules/system.sh
@@ -322,6 +322,10 @@ function get_os_version() {
322
323
function get_retropie_depends() {
324
local depends=(git subversion dialog curl gcc g++ build-essential unzip xmlstarlet python3-pyudev ca-certificates dirmngr)
325
+ # on RaspiOS, install an extra package for X11 support on Pi5
326
+ if isPlatform "rpi5" && [[ "$__os_id" == "Raspbian" ]]; then
327
+ depends+=(gldriver-test)
328
+ fi
329
330
[[ -n "$DISTCC_HOSTS" ]] && depends+=(distcc)
331
0 commit comments