diff options
author | Tom Culliton <culliton@x2.(none)> | 2009-01-11 06:39:13 (GMT) |
---|---|---|
committer | Tom Culliton <culliton@x2.(none)> | 2009-01-11 06:39:13 (GMT) |
commit | be39c7ab3a0d4665f5e0ed4bb2571e006dc759b3 (patch) | |
tree | 246cd99370e2d7482d0049b3b71962486925890a /abs/extra-testing/v4l-dvb-hdpvr/v4l-dvb-hdpvr.install | |
parent | eb00fec42b6ccd143a145c89fff284969aa738be (diff) | |
parent | c18b7a805648a5920424454ec5237d699ce4eecc (diff) | |
download | linhes_pkgbuild-be39c7ab3a0d4665f5e0ed4bb2571e006dc759b3.zip linhes_pkgbuild-be39c7ab3a0d4665f5e0ed4bb2571e006dc759b3.tar.gz linhes_pkgbuild-be39c7ab3a0d4665f5e0ed4bb2571e006dc759b3.tar.bz2 |
Merge branch 'master' of tjc@linhes.org:LinHES-PKGBUILD
Diffstat (limited to 'abs/extra-testing/v4l-dvb-hdpvr/v4l-dvb-hdpvr.install')
-rw-r--r-- | abs/extra-testing/v4l-dvb-hdpvr/v4l-dvb-hdpvr.install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/extra-testing/v4l-dvb-hdpvr/v4l-dvb-hdpvr.install b/abs/extra-testing/v4l-dvb-hdpvr/v4l-dvb-hdpvr.install new file mode 100644 index 0000000..c87bb82 --- /dev/null +++ b/abs/extra-testing/v4l-dvb-hdpvr/v4l-dvb-hdpvr.install @@ -0,0 +1,23 @@ +# arg 1: the new package version +post_install() { + KERNEL_VERSION='2.6.26-ARCH' + depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + KERNEL_VERSION='2.6.26-ARCH' + depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 + +} + +# arg 1: the old package version +post_remove() { + KERNEL_VERSION='2.6.26-ARCH' + depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 +} + +op=$1 +shift +$op $* |