diff options
author | lcapriotti <lcapriotti@svn> | 2010-09-14 08:00:18 +0000 |
---|---|---|
committer | lcapriotti <lcapriotti@svn> | 2010-09-14 08:00:18 +0000 |
commit | dfec85f48e627f1005a3f126af73a8147a702a5c (patch) | |
tree | f10aa2fb4c33b477a11aaf33e2f5a724d5cb08fd /tools/XBMCLive | |
parent | 4e083846663893bd288e071e224b72954961629a (diff) |
merge from trunk: r33785
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@33786 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/XBMCLive')
-rw-r--r-- | tools/XBMCLive/SDK/buildLive/Files/binary_local-includes/Hooks/hwSetup_NVIDIA.sh | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/tools/XBMCLive/SDK/buildLive/Files/binary_local-includes/Hooks/hwSetup_NVIDIA.sh b/tools/XBMCLive/SDK/buildLive/Files/binary_local-includes/Hooks/hwSetup_NVIDIA.sh index c6343b8f80..64e3069635 100644 --- a/tools/XBMCLive/SDK/buildLive/Files/binary_local-includes/Hooks/hwSetup_NVIDIA.sh +++ b/tools/XBMCLive/SDK/buildLive/Files/binary_local-includes/Hooks/hwSetup_NVIDIA.sh @@ -1,8 +1,25 @@ #!/bin/bash +# Copyright (C) 2005-2008 Team XBMC +# http://www.xbmc.org +# +# This Program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This Program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with XBMC; see the file COPYING. If not, write to +# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html #check Nvidia GPU -nvidiaGpuType=$(lspci -nn | grep 'VGA' | grep 'nVidia Corporation') +nvidiaGpuType=$(lspci -nn | grep '0300' | grep '10de') if [ ! -n "$nvidiaGpuType" ] ; then exit 0 fi |