diff options
author | James Meyer <james.meyer@operamail.com> | 2008-12-04 23:53:04 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-12-04 23:53:04 (GMT) |
commit | 2a27ce5cb2650c001e276a7c44efb445d00fc2c6 (patch) | |
tree | f24435565fb85b338f5891f16912f6736b307d06 /abs/core-testing/nvidia-beta/nvidia.install | |
parent | 79ddaba300b4887c9610732c1e2aac7361cbcee5 (diff) | |
download | linhes_pkgbuild-2a27ce5cb2650c001e276a7c44efb445d00fc2c6.zip linhes_pkgbuild-2a27ce5cb2650c001e276a7c44efb445d00fc2c6.tar.gz linhes_pkgbuild-2a27ce5cb2650c001e276a7c44efb445d00fc2c6.tar.bz2 |
nvidia beta drivers
Diffstat (limited to 'abs/core-testing/nvidia-beta/nvidia.install')
-rw-r--r-- | abs/core-testing/nvidia-beta/nvidia.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/abs/core-testing/nvidia-beta/nvidia.install b/abs/core-testing/nvidia-beta/nvidia.install new file mode 100644 index 0000000..dbbec39 --- /dev/null +++ b/abs/core-testing/nvidia-beta/nvidia.install @@ -0,0 +1,22 @@ +# arg 1: the new package version +post_install() { + KERNEL_VERSION='2.6.26-ARCH' + depmod -v $KERNEL_VERSION > /dev/null 2>&1 +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + post_install $1 + rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.' +} + +# arg 1: the old package version +post_remove() { + KERNEL_VERSION='2.6.26-ARCH' + depmod -v $KERNEL_VERSION > /dev/null 2>&1 +} + +op=$1 +shift +$op $* |