summarylogtreecommitdiffstats
path: root/darling-git.install
blob: 740110ad2ae34def842cb9fddbd6937aab0f21f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
_depmod() {
	depmod $(uname -r)
}

post_install() {
	_depmod
	echo -e "Before using darling, you must to load \033[1mdarling-mach\033[0m kernel module."
}

post_upgrade() {
	_depmod
	echo -e "You must to reload \033[1mdarling-mach\033[0m kernel module to use new version."
}

post_remove() {
	_depmod
}