diff options
author | Cecil <knoppmyth@gmail.com> | 2011-08-13 08:05:41 (GMT) |
---|---|---|
committer | Cecil <knoppmyth@gmail.com> | 2011-08-13 08:05:41 (GMT) |
commit | e11fce5276ea7ca11a8cfb36beab0d10bd5d2047 (patch) | |
tree | b0b5c572253610c66f9182960a40ac959e207437 /abs/core/ceton/ceton.install | |
parent | e5627410d6b14e648b1773256849f29d75ed6f39 (diff) | |
download | linhes_pkgbuild-e11fce5276ea7ca11a8cfb36beab0d10bd5d2047.zip linhes_pkgbuild-e11fce5276ea7ca11a8cfb36beab0d10bd5d2047.tar.gz linhes_pkgbuild-e11fce5276ea7ca11a8cfb36beab0d10bd5d2047.tar.bz2 |
ceton:Initial inclusion. Drivers for InfinTV 4.
Diffstat (limited to 'abs/core/ceton/ceton.install')
-rw-r--r-- | abs/core/ceton/ceton.install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core/ceton/ceton.install b/abs/core/ceton/ceton.install new file mode 100644 index 0000000..912a323 --- /dev/null +++ b/abs/core/ceton/ceton.install @@ -0,0 +1,23 @@ +# arg 1: the new package version +post_install() { + KERNEL_VERSION='2.6.39-LinHES' + 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.39-LinHES' + depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 + +} + +# arg 1: the old package version +post_remove() { + KERNEL_VERSION='2.6.28-LinHES' + depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 +} + +op=$1 +shift +$op $* |