summarylogtreecommitdiffstats
path: root/input-wacom-dkms.install
blob: 98b17bc9b44594d89b15972834ce81bd6cb00891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
	local version=${1%%-*}
	dkms=$(which dkms)
	$dkms install -m input-wacom -v $version
	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
}