summarylogtreecommitdiffstats
path: root/linux-aarch64-rock64-bin.install
diff options
context:
space:
mode:
authorRaansu-auto2018-08-14 07:44:32 -0700
committerRaansu-auto2018-08-14 07:44:32 -0700
commitf7aca2f471fe721588018f358723ddafa00ad387 (patch)
treeb6cc6727255c395fde8bc6e3135fb863d175ddb1 /linux-aarch64-rock64-bin.install
downloadaur-f7aca2f471fe721588018f358723ddafa00ad387.tar.gz
Intital release
Diffstat (limited to 'linux-aarch64-rock64-bin.install')
-rw-r--r--linux-aarch64-rock64-bin.install27
1 files changed, 27 insertions, 0 deletions
diff --git a/linux-aarch64-rock64-bin.install b/linux-aarch64-rock64-bin.install
new file mode 100644
index 000000000000..6d68df29298a
--- /dev/null
+++ b/linux-aarch64-rock64-bin.install
@@ -0,0 +1,27 @@
+# arg 1: the new package version
+# arg 2: the old package version
+
+KERNEL_NAME=
+KERNEL_VERSION=4.4.138-1094-rockchip-ayufan-gf13a8a9a4eee
+
+post_install () {
+ # updating module dependencies
+ echo ">>> Updating module dependencies. Please wait ..."
+ depmod ${KERNEL_VERSION}
+}
+
+post_upgrade() {
+ if findmnt --fstab -uno SOURCE /boot &>/dev/null && ! mountpoint -q /boot; then
+ echo "WARNING: /boot appears to be a separate partition but is not mounted."
+ fi
+
+ # updating module dependencies
+ echo ">>> Updating module dependencies. Please wait ..."
+ depmod ${KERNEL_VERSION}
+}
+
+post_remove() {
+ # also remove the compat symlinks
+ rm -f boot/initramfs-linux.img
+ rm -f boot/initramfs-linux-fallback.img
+}