Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions scriptmodules/admin/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,6 @@ function depends_setup() {
printMsgs "dialog" "WARNING: You have the experimental desktop GL driver enabled. This is NOT supported by RetroPie, and Emulation Station as well as emulators may fail to launch.\n\nPlease disable the experimental desktop GL driver from the raspi-config 'Advanced Options' menu."
fi

if isPlatform "rpi" && isPlatform "64bit"; then
printMsgs "dialog" "WARNING: 64bit support on the Raspberry Pi is not yet officially supported, although the main emulator package selection should work ok."
fi

if [[ "$__os_debian_ver" -eq 8 ]]; then
printMsgs "dialog" "Raspbian/Debian Jessie and versions of Ubuntu below 18.04 are no longer supported.\n\nPlease install RetroPie from a fresh image (or if running Ubuntu, upgrade your OS)."
fi
Expand Down
13 changes: 7 additions & 6 deletions scriptmodules/system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,13 @@ function get_os_version() {
__platform_flags+=(xbian)
fi

# we provide binaries for RPI on Raspberry Pi OS 10/11
if isPlatform "rpi" && \
isPlatform "32bit" && \
[[ "$__os_debian_ver" -ge 10 && "$__os_debian_ver" -le 11 ]]; then
# only set __has_binaries if not already set
[[ -z "$__has_binaries" ]] && __has_binaries=1
# if __has_binaries is not set, and we are on the Raspberry Pi, check if we support binaries
if [[ -z "$__has_binaries" ]] && isPlatform "rpi"; then
# we currently support 32bit binaries on Raspberry Pi OS 10 & 11 and both 32/64bit binaries on Raspberry Pi OS 12
if ([[ "$__os_debian_ver" -ge 10 && "$__os_debian_ver" -le 11 ]] && isPlatform "32bit") \
|| [[ "$__os_debian_ver" -eq 12 ]]; then
__has_binaries=1
fi
fi
;;
Devuan)
Expand Down