summaryrefslogtreecommitdiffstats
path: root/abs/extra/xbmc-svn/FEH.sh
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2011-01-04 01:19:36 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2011-01-04 01:19:36 (GMT)
commit2cae18b3f848454632c564386a2055d26373f42c (patch)
treef6022582e6cc03963ce8fbfe4de6f48ba911c6ad /abs/extra/xbmc-svn/FEH.sh
parent9dd56269ce4d6d2b4bb6785bb46a36476064b442 (diff)
parent1e9dea8744ac41a9ddd5356afa19ea453c6e4855 (diff)
downloadlinhes_pkgbuild-2cae18b3f848454632c564386a2055d26373f42c.zip
linhes_pkgbuild-2cae18b3f848454632c564386a2055d26373f42c.tar.gz
linhes_pkgbuild-2cae18b3f848454632c564386a2055d26373f42c.tar.bz2
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild 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}
-