summarylogtreecommitdiffstats
path: root/akari.install
blob: d3c1c8df6ee036616e80473af2aa72eeb9da1d8f (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/ccs-init\" to the kernel boot options"
    echo "   and reboot in order to activate AKARI."
    echo
}

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

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