summarylogtreecommitdiffstats
path: root/rr264x-lts.install
diff options
context:
space:
mode:
Diffstat (limited to 'rr264x-lts.install')
-rw-r--r--rr264x-lts.install27
1 files changed, 27 insertions, 0 deletions
diff --git a/rr264x-lts.install b/rr264x-lts.install
new file mode 100644
index 000000000000..84473e4ccade
--- /dev/null
+++ b/rr264x-lts.install
@@ -0,0 +1,27 @@
+# This is a default template for a post-install scriptlet. You can
+# remove any functions you don't need (and this header).
+
+KERNEL_VERSION=`cat /lib/modules/extramodules-3.0-lts/version`
+
+# arg 1: the new package version
+pre_install() {
+ /bin/true
+}
+
+# arg 1: the new package version
+post_install() {
+ depmod -v $KERNEL_VERSION > /dev/null 2>&1
+ mkinitcpio -p linux-lts
+}
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ post_install
+}
+
+# arg 1: the old package version
+post_remove() {
+ depmod -v $KERNEL_VERSION > /dev/null 2>&1
+ mkinitcpio -p linux-lts
+}