diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-02-27 21:02:06 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-02-27 21:02:06 (GMT) |
commit | 28edc1561e098362b1900617988a8c530eec385b (patch) | |
tree | 166adc7a5dd0cded37d026125f10141ba060e2b7 | |
parent | 8bcf600c40a55beb37de0d7e4d781eb54466dec4 (diff) | |
download | linhes_pkgbuild-28edc1561e098362b1900617988a8c530eec385b.zip linhes_pkgbuild-28edc1561e098362b1900617988a8c530eec385b.tar.gz linhes_pkgbuild-28edc1561e098362b1900617988a8c530eec385b.tar.bz2 |
linhes-scripts:updated upgrade_to_0.22.sh so it removes legacy vdpinfo in proper order.
-rw-r--r-- | abs/core-testing/linhes-scripts/PKGBUILD | 2 | ||||
-rw-r--r-- | abs/core-testing/linhes-scripts/upgrade_to_0.22.sh | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/abs/core-testing/linhes-scripts/PKGBUILD b/abs/core-testing/linhes-scripts/PKGBUILD index 2424064..8d4e879 100644 --- a/abs/core-testing/linhes-scripts/PKGBUILD +++ b/abs/core-testing/linhes-scripts/PKGBUILD @@ -3,7 +3,7 @@ pkgname=linhes-scripts pkgver=1 -pkgrel=47 +pkgrel=48 pkgdesc="Various scripts that help to make LinHES, LinHES." arch=('i686' 'x86_64') license=('GPL2') diff --git a/abs/core-testing/linhes-scripts/upgrade_to_0.22.sh b/abs/core-testing/linhes-scripts/upgrade_to_0.22.sh index bedb509..a90b04e 100644 --- a/abs/core-testing/linhes-scripts/upgrade_to_0.22.sh +++ b/abs/core-testing/linhes-scripts/upgrade_to_0.22.sh @@ -42,6 +42,14 @@ if pacman -Qs v4l-dvb &>/dev/null pacman -S kernel26 --noconfirm &>/dev/null fi echo "Checking for VDPAU packages and upgrading if needed." +if pacman -Qs vdpinfo-71xx &>/dev/null + then + pacman -Rd vdpinfo-71xx &>/dev/null +fi +if pacman -Qs vdpinfo-96xx &>/dev/null + then + pacman -Rd vdpinfo-96xx &>/dev/null +fi if pacman -Qs vdpinfo &>/dev/null then pacman -Rd vdpinfo &>/dev/null && pacman -S --noconfirm nvidia &>/dev/null && pacman -S --noconfirm vdpauinfo &>/dev/null |