diff options
author | Nathan Harris <nharris@eoimaging.com> | 2010-01-15 21:38:19 (GMT) |
---|---|---|
committer | Nathan Harris <nharris@eoimaging.com> | 2010-01-15 21:38:19 (GMT) |
commit | e63c189835c9d9b4dffddf461e7f2bb5134cb1a3 (patch) | |
tree | 9f237aa3cd84ccc31ab976a2b82903b87f51e91b /abs/extra-testing/xbmc/FEH.sh | |
parent | bda57f4e83d8708bc7b4ac45e687a8c7d7ef2958 (diff) | |
download | linhes_pkgbuild-e63c189835c9d9b4dffddf461e7f2bb5134cb1a3.zip linhes_pkgbuild-e63c189835c9d9b4dffddf461e7f2bb5134cb1a3.tar.gz linhes_pkgbuild-e63c189835c9d9b4dffddf461e7f2bb5134cb1a3.tar.bz2 |
xbmc: bumped to 9.11-5 (plus /usr as prefix)
Diffstat (limited to 'abs/extra-testing/xbmc/FEH.sh')
-rw-r--r-- | abs/extra-testing/xbmc/FEH.sh | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/abs/extra-testing/xbmc/FEH.sh b/abs/extra-testing/xbmc/FEH.sh new file mode 100644 index 0000000..9cbec63 --- /dev/null +++ b/abs/extra-testing/xbmc/FEH.sh @@ -0,0 +1,47 @@ +#!/bin/bash +function directRendering() { +out=$(glxinfo | grep "direct rendering") +direct=${out#"direct rendering: "} +if [ "$direct" = "Yes" ]; then + return 0 +else + return 1 +fi +} + +function colorDepth() { +out=$(xdpyinfo | grep "depth of root") +color=${out:27:2} +if [ "$color" = "24" ]; then + return 0 +else + return 1 +fi +} + +directRendering +direct_ok=$? + +colorDepth +color_ok=$? + +exit_val=0 + +if [ $direct_ok -ne 0 ]; 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" + exit_val=1 +fi + +if [ $color_ok -ne 0 ]; then + echo "XBMC cannot run unless the" + echo "screen color depth is atleast 24 bit." + echo " " + echo "Please reconfigure your screen." + exit_val=1 +fi + +exit $exit_val |