summarylogtreecommitdiffstats
path: root/caitsith-lkm.install
blob: 5084e483b6bb5c10b11d204dcbafeb06a0e68d18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#! /bin/bash

post_install() {
	KERNEL_VERSION=$(uname -r)
	depmod $KERNEL_VERSION
    echo
    echo " * Append \"init=/sbin/caitsith-init\" to the kernel boot options"
    echo "   and reboot in order to activate CaitSith."
    echo
}

post_upgrade() {
	KERNEL_VERSION=$(uname -r)
	depmod $KERNEL_VERSION
}

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