diff options
author | James Meyer <james.meyer@operamail.com> | 2011-08-07 03:27:15 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2011-08-07 03:27:15 (GMT) |
commit | bb28351257e0c04a78fc266564f78376f8ea6310 (patch) | |
tree | daa9714df592cc4afcb51f997a42cf5ab27cafb6 /abs/core/LinHES-config/xconfig.sh | |
parent | 9709ca528ca5dfbdb6ec6ea283ac6670e8f33b9d (diff) | |
download | linhes_pkgbuild-bb28351257e0c04a78fc266564f78376f8ea6310.zip linhes_pkgbuild-bb28351257e0c04a78fc266564f78376f8ea6310.tar.gz linhes_pkgbuild-bb28351257e0c04a78fc266564f78376f8ea6310.tar.bz2 |
linhes-config xconfig.sh: quick fix so nvidia works for new installs.
Plan to clean this up, if not outright rewrite
Diffstat (limited to 'abs/core/LinHES-config/xconfig.sh')
-rwxr-xr-x | abs/core/LinHES-config/xconfig.sh | 54 |
1 files changed, 40 insertions, 14 deletions
diff --git a/abs/core/LinHES-config/xconfig.sh b/abs/core/LinHES-config/xconfig.sh index fff7f44..d684c21 100755 --- a/abs/core/LinHES-config/xconfig.sh +++ b/abs/core/LinHES-config/xconfig.sh @@ -4,7 +4,15 @@ #SET DISPLAYRES to force Xres, ENV takes precendent over cmdline #displayres=cmdline #NVPKGS="ati-dri xf86-video-ati xf86-video-radeonhd intel-dri xf86-video-intel unichrome-dri xf86-video-unichrome xf86-video-mga xf86-video-savage xf86-video-trident" -NVPKGS="ati-dri xf86-video-ati xf86-video-radeonhd intel-dri xf86-video-intel xf86-video-mga xf86-video-savage xf86-video-trident unichrome-dri xf86-video-openchrome" +#NVPKGS="ati-dri xf86-video-ati xf86-video-radeonhd intel-dri xf86-video-intel xf86-video-mga xf86-video-savage xf86-video-trident unichrome-dri xf86-video-openchrome " +#NVPKGS="unichrome-dri" +for i in ati intel mga savage sis unichrome +do + #templist="$i-dri xf86-video-$i" + templist=`echo $i-dri xf86-video-$i` + NVPKGS=`echo $NVPKGS $templist` + +done BASE="" . /etc/profile NVIDIA_96XX="$TEMPLATES/xorg/96xx_supported.txt" @@ -187,28 +195,37 @@ function setupAdvancedX { esac } +function nvidia_prepare { + pacman --noconfirm -Rdd libgl > /dev/null 2>&1 + for i in `echo ${NVPKGS}` + do + echo $i + pacman --noconfirm -Rc $i + # echo pacman -R $NVPKGS + #pacman -R $NVPKGS + done + + +} + function nvidia_driver_install { cp "$TEMPLATES/xorg/xorg.conf.nvidia" $BASE/etc/X11/xorg.conf.d/20-automv.conf - if [ ${Xres} = Auto ] - then - nvidia-xconfig -c /etc/X11/xorg.conf.d/20-automv.conf --mode-list="nvidia-auto-select" - else - nvidia-xconfig -c /etc/X11/xorg.conf.d/20-automv.conf --mode-list=${Xres} - fi + if [ "$TESTMODE" != "test" ] then - + grep -qi "$CARDID" "$NVIDIA_SUPPORTED" if [ $? = 0 ] then #install latest drivers echo "installing current nvidia drivers" - pacman --noconfirm -Rd libgl > /dev/null 2>&1 - pacman --noconfirm -R $NVPKGS > /dev/null 2>&1 + # pacman --noconfirm -Rd libgl > /dev/null 2>&1 + # pacman --noconfirm -R $NVPKGS > /dev/null 2>&1 + nvidia_prepare pacman --noconfirm -S nvidia nvidia-utils > /dev/null 2>&1 fi @@ -219,8 +236,9 @@ function nvidia_driver_install { then #install 96xx drivers echo "installing nvidia 96xx drivers" - pacman --noconfirm -Rd libgl > /dev/null 2>&1 - pacman --noconfirm -R $NVPKGS > /dev/null 2>&1 +# # pacman --noconfirm -Rd libgl > /dev/null 2>&1 +# # pacman --noconfirm -R $NVPKGS > /dev/null 2>&1 + nvidia_prepare pacman --noconfirm -S nvidia-96xx nvidia-96xx-utils > /dev/null 2>&1 fi @@ -229,11 +247,19 @@ function nvidia_driver_install { then #install latest drivers echo "installing 173 nvidia drivers" - pacman --noconfirm -Rd libgl > /dev/null 2>&1 - pacman --noconfirm -R $NVPKGS > /dev/null 2>&1 +# pacman --noconfirm -Rd libgl > /dev/null 2>&1 +# pacman --noconfirm -R $NVPKGS > /dev/null 2>&1 + nvidia_prepare pacman --noconfirm -S nvidia-173xx nvidia-173xx-utils > /dev/null 2>&1 fi fi + if [ ${Xres} = Auto ] + then + nvidia-xconfig -c /etc/X11/xorg.conf.d/20-automv.conf --mode-list="nvidia-auto-select" + else + nvidia-xconfig -c /etc/X11/xorg.conf.d/20-automv.conf --mode-list=${Xres} + fi + echo "/usr/lib/libXvMCNVIDIA_dynamic.so.1" > "$XVMC_CONFIG" rm $BASE/etc/X11/xorg.conf.d/20-nvidia.conf } |