diff options
author | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 00:05:04 (GMT) |
---|---|---|
committer | Cecil Hugh Watson <knoppmyth@gmail.com> | 2010-09-05 00:05:04 (GMT) |
commit | 1388847518943a2ab9f779ce75e4aaeca2e507c3 (patch) | |
tree | 30cba0394735de085890dee1243ff3e230a0596a /abs/core-testing/madwifi/madwifi-ng.install | |
parent | 97a671ec90e83af036869180b2b65e4e10fafa2b (diff) | |
download | linhes_pkgbuild-1388847518943a2ab9f779ce75e4aaeca2e507c3.zip linhes_pkgbuild-1388847518943a2ab9f779ce75e4aaeca2e507c3.tar.gz linhes_pkgbuild-1388847518943a2ab9f779ce75e4aaeca2e507c3.tar.bz2 |
madwifi:Bumped/Updated for LinHES 7.
Diffstat (limited to 'abs/core-testing/madwifi/madwifi-ng.install')
-rw-r--r-- | abs/core-testing/madwifi/madwifi-ng.install | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/abs/core-testing/madwifi/madwifi-ng.install b/abs/core-testing/madwifi/madwifi-ng.install index 800cb98..3711208 100644 --- a/abs/core-testing/madwifi/madwifi-ng.install +++ b/abs/core-testing/madwifi/madwifi-ng.install @@ -1,23 +1,14 @@ -# arg 1: the new package version post_install() { - KERNEL_VERSION='2.6.28-LinHES' - depmod -ae -v $KERNEL_VERSION > /dev/null 2>&1 + KERNEL_VERSION='2.6.34-LinHES' + depmod -ae $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 - + KERNEL_VERSION='2.6.34-LinHES' + depmod -ae $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 + KERNEL_VERSION='2.6.34-LinHES' + depmod -ae $KERNEL_VERSION > /dev/null 2>&1 } - -op=$1 -shift -$op $* |