summarylogtreecommitdiffstats
path: root/linux-gpib.install
blob: a28d39424b35640a062fbbcb8dc238f6e02b9aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
post_install() {
/bin/cat << EOF
===> You must load gpib modules manually before starting gpib_config
===> For example:
===> # modprobe ni_usb_gpib
EOF
    depmod $(uname -r)
}

post_upgrade() {
    depmod $(uname -r)
    echo 'In order to use the new version, reload all gpib modules manually.'
}

post_remove() {
    depmod $(uname -r)
}