diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-04-29 04:00:54 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-04-29 04:00:54 (GMT) |
commit | e07a9c2c807c3ede7f4270a16ce1d59d42853d83 (patch) | |
tree | c1f5868972bed75c160f04fb055dc08a235157db /abs/core-testing/atl1e/atl1e.install | |
parent | e0cd389eaae0c38ec0a27bebf7437debca62fc0e (diff) | |
download | linhes_pkgbuild-e07a9c2c807c3ede7f4270a16ce1d59d42853d83.zip linhes_pkgbuild-e07a9c2c807c3ede7f4270a16ce1d59d42853d83.tar.gz linhes_pkgbuild-e07a9c2c807c3ede7f4270a16ce1d59d42853d83.tar.bz2 |
atl1e:Initial inclusion. Module for Atheros based NICs.
Diffstat (limited to 'abs/core-testing/atl1e/atl1e.install')
-rw-r--r-- | abs/core-testing/atl1e/atl1e.install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core-testing/atl1e/atl1e.install b/abs/core-testing/atl1e/atl1e.install new file mode 100644 index 0000000..7ae7ed0 --- /dev/null +++ b/abs/core-testing/atl1e/atl1e.install @@ -0,0 +1,23 @@ +# arg 1: the new package version +post_install() { + KERNEL_VERSION='2.6.28-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.28-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 $* |