summaryrefslogtreecommitdiffstats
path: root/abs/extra/xbmc-svn/FEH.sh
diff options
context:
space:
mode:
authorJames Meyer <jams@linhes.org>2011-01-02 23:03:14 (GMT)
committerJames Meyer <jams@linhes.org>2011-01-02 23:03:14 (GMT)
commit808989e601b8c15612fcf0997c02bc02c3101d85 (patch)
tree54fffdbc01d4ffb826da06506a5a7371587dd98f /abs/extra/xbmc-svn/FEH.sh
parentaa74f2cfb3f029d18d4d97da4796d8a7cf4c16ab (diff)
parent2882a54f6f4c17462d6f4321083cba124a0667d5 (diff)
downloadlinhes_pkgbuild-808989e601b8c15612fcf0997c02bc02c3101d85.zip
linhes_pkgbuild-808989e601b8c15612fcf0997c02bc02c3101d85.tar.gz
linhes_pkgbuild-808989e601b8c15612fcf0997c02bc02c3101d85.tar.bz2
Merge remote branch 'origin/testing' into testing
Diffstat (limited to 'abs/extra/xbmc-svn/FEH.sh')
-rw-r--r--abs/extra/xbmc-svn/FEH.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/abs/extra/xbmc-svn/FEH.sh b/abs/extra/xbmc-svn/FEH.sh
deleted file mode 100644
index e040a78..0000000
--- a/abs/extra/xbmc-svn/FEH.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/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}
-