mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
33 lines
934 B
Text
33 lines
934 B
Text
# arg 1: the new package version
|
|
post_install() {
|
|
cat << EOF
|
|
==> Add 'capiinit' to rc.conf daemons list.
|
|
==> WARNING:
|
|
==> Do not try to reinsert card after modules have been loaded it will crash kernel!
|
|
==> Unload fcpcmcia_cs and fcpmcia first, after eject!
|
|
EOF
|
|
sed -i -e 's/#fcpcmcia - - - - - -/fcpcmcia - - - - - -/g' /etc/capi.conf
|
|
# updating module dependencies
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
KERNEL_VERSION=2.6.30-ARCH
|
|
depmod -v $KERNEL_VERSION > /dev/null 2>&1
|
|
}
|
|
|
|
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
post_upgrade() {
|
|
post_install $1
|
|
}
|
|
|
|
# arg 1: the old package version
|
|
post_remove() {
|
|
sed -i -e 's/fcpcmcia - - - - - -/#fcpcmcia - - - - - -/g' /etc/capi.conf
|
|
# updating module dependencies
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
KERNEL_VERSION=2.6.30-ARCH
|
|
depmod -v $KERNEL_VERSION > /dev/null 2>&1
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
$op $*
|