blob: 3662e7f343fa1ddf470a2881b2a9263ffdb2cfda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
extramodules=/usr/lib/modules/extramodules-3.6-ARCH
post_install() {
depmod -v $(< "$extramodules/version") &>/dev/null
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
|