summaryrefslogtreecommitdiffstats
path: root/abs/extra/xbmc-svn/FEH.sh
diff options
context:
space:
mode:
Diffstat (limited to 'abs/extra/xbmc-svn/FEH.sh')
-rw-r--r--abs/extra/xbmc-svn/FEH.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/abs/extra/xbmc-svn/FEH.sh b/abs/extra/xbmc-svn/FEH.sh
new file mode 100644
index 0000000..e040a78
--- /dev/null
+++ b/abs/extra/xbmc-svn/FEH.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+RETVAL=0
+
+if [[ -z $(glxinfo | grep "direct rendering.*Yes" | uniq) ]]; then
+ echo "XBMC needs hardware accelerated OpenGL rendering."
+ echo "Install an appropriate graphics driver."
+ echo
+ echo "Please consult XBMC Wiki for supported hardware"
+ echo "http://xbmc.org/wiki/?title=Supported_hardware"
+ echo
+ RETVAL=1
+fi
+
+if [[ -z $(xdpyinfo | grep "depth of root.*24" | uniq) ]]; then
+ echo "XBMC cannot run unless the"
+ echo "screen color depth is atleast 24 bit."
+ echo
+ echo "Please reconfigure your screen."
+ RETVAL=1
+fi
+
+exit ${RETVAL}
+