summarylogtreecommitdiffstats
path: root/tn40xx.install
blob: 24ca4ca6088b04a60c51f8e0f513ead597d620fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
post_install() {
    # get latest installed kernel version. not the running one.
    _kernver="$(basename `ls -dlt /usr/lib/modules/[2-4]* | head -n 1 | cut -d '/' -f 2-`)"
    depmod ${_kernver}
}

post_upgrade() {
    post_install
}

post_remove() {
    post_install
}