]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - debian/control-scripts/extra-post
clocksource/drivers/arm_arch_timer: Avoid infinite recursion when ftrace is enabled
[mirror_ubuntu-zesty-kernel.git] / debian / control-scripts / extra-post
1 #!/bin/sh
2 set -e
3
4 case "$0::$1" in
5 *.postinst::configure|*.postrm::remove)
6 depmod -a -F /boot/System.map-=V =V || true
7 for dir in "/etc/kernel/postinst.d" "/etc/kernel/postinst.d/=V"
8 do
9 if [ -d "$dir" ]; then
10 run-parts --verbose --exit-on-error --arg="=V" --arg="/boot/=K-=V" "$dir"
11 fi
12 done
13 ;;
14 esac