Skip to content

Commit

Permalink
emulationstation - don't allow launching if the experimental desktop …
Browse files Browse the repository at this point in the history
…GL driver is enabled.
  • Loading branch information
joolswills committed Nov 23, 2017
1 parent 5e091d2 commit 6406dd1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scriptmodules/supplementary/emulationstation.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,11 @@ if [[ \$(id -u) -eq 0 ]]; then
exit 1
fi
if [[ -d "/sys/module/vc4" ]]; then
echo -e "ERROR: You have the experimental desktop GL driver enabled. This is NOT compatible with RetroPie, and Emulation Station as well as emulators will fail to launch.\\n\\nPlease disable the experimental desktop GL driver from the raspi-config 'Advanced Options' menu."
exit 1
fi
if [[ "\$(uname --machine)" != *86* ]]; then
if [[ -n "\$(pidof X)" ]]; then
echo "X is running. Please shut down X in order to mitigate problems with losing keyboard input. For example, logout from LXDE."
Expand Down

0 comments on commit 6406dd1

Please sign in to comment.