summarylogtreecommitdiffstats
path: root/akari.install
diff options
context:
space:
mode:
authorJorge Barroso2015-06-15 21:30:54 +0200
committerJorge Barroso2015-06-15 21:30:54 +0200
commit2ff6e26d15ef8c10e27b59b4bf4df89d6b48eee0 (patch)
treeb664768f51e76ecfd3606533175935620da5bb78 /akari.install
downloadaur-2ff6e26d15ef8c10e27b59b4bf4df89d6b48eee0.tar.gz
Initial import
Diffstat (limited to 'akari.install')
-rw-r--r--akari.install20
1 files changed, 20 insertions, 0 deletions
diff --git a/akari.install b/akari.install
new file mode 100644
index 000000000000..d3c1c8df6ee0
--- /dev/null
+++ b/akari.install
@@ -0,0 +1,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
+}