core/ndiswrapper/ndiswrapper.install

24 lines
458 B
Plaintext
Raw Normal View History

2010-03-13 23:25:19 +08:00
# arg 1: the new package version
post_install()
{
ndiswrapper -m
2011-08-08 17:00:07 +08:00
KERNEL_VERSION='3.0-CHAKRA'
2010-03-13 23:25:19 +08:00
depmod -ae $KERNEL_VERSION > /dev/null 2>&1
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade()
{
ndiswrapper -m
2011-08-08 17:00:07 +08:00
KERNEL_VERSION='3.0-CHAKRA'
2010-03-13 23:25:19 +08:00
depmod -ae $KERNEL_VERSION > /dev/null 2>&1
}
# arg 1: the old package version
post_remove()
{
2011-08-08 17:00:07 +08:00
KERNEL_VERSION='3.0-CHAKRA'
2010-03-13 23:25:19 +08:00
depmod -ae $KERNEL_VERSION > /dev/null 2>&1
}