blob: 9cbec63de79a5dea8509a404f5ee414a5c767122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
|