summaryrefslogtreecommitdiff
path: root/libre-testing/linux-libre-kmod-alx/linux-libre-kmod-alx.install
blob: 0693481925048151cdf87565505aa36c95ec19eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
generic() {
    echo " > Running depmod now..."
    depmod -a
}

unload() {
    lsmod | grep alx > /dev/null
    if [ "$?" = "0" ]; then
        rmmod alx
    fi
}

post_install() {
    generic
    echo " > Reloading alx module..."
    echo "   Please note that you may REBOOT your system to get it works!"
    unload
    sleep 0.5
    modprobe alx
}

post_upgrade() {
    post_install
}

post_remove() {
    generic
    echo " > Unloading memory resident module..."
    unload
    rmmod compat
    echo "  Module unloaded!."
}