diff options
Diffstat (limited to 'abs/core/ceton/ceton.install')
-rw-r--r-- | abs/core/ceton/ceton.install | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/abs/core/ceton/ceton.install b/abs/core/ceton/ceton.install deleted file mode 100644 index 67403db..0000000 --- a/abs/core/ceton/ceton.install +++ /dev/null @@ -1,25 +0,0 @@ -# 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 - rmmod ctn91xx - modprobe ctn91xx - -} - -# 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 $* |