summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-modules
blob: 0460eaaff5c55149e9c2694124cdd1ec63c192c7 (plain)
1
2
3
4
5
6
7
8
if [ "$1" = "configure" ]; then
	if [ -x "`which update-modules 2>/dev/null`" ]; then
		update-modules >/dev/null || [ "$?" = 3 ]
	fi
	if [ -e /boot/System.map-#KVERS# ]; then
		depmod -a -F /boot/System.map-#KVERS# #KVERS# || true
	fi
fi