blob: 07bee5e206c072e2e8d22e5cfd68b87a17d25759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo -e "\n"
echo "#####################################"
echo -e "\n"
echo "To avoid conflict with the original modules provided by the kernel, the dkms modules were renamed to 'wacom_dkms' and 'wacom_w8001_dkms'."
echo "Should you need to manually load the module, use 'modprobe wacom_dkms' or 'modprobe wacom_w8001_dkms'."
echo "To remove the modules, use 'rmmod wacom' or 'rmmod wacom_w8001' instead."
echo -e "\n"
}
post_upgrade() {
post_install $1
}
|