summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-4.19.0-22-powerpc64.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 03:29:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 03:29:40 +0000
commit94fb06e2ad482660a71d520401951ed4a26a9df0 (patch)
tree59628c498cdc61dc5437759d1c5ce882347c541a /debian/linux-image-4.19.0-22-powerpc64.postinst
parentSetting abiname to 22progress5u1. (diff)
downloadlinux-94fb06e2ad482660a71d520401951ed4a26a9df0.tar.xz
linux-94fb06e2ad482660a71d520401951ed4a26a9df0.zip
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--debian/linux-image-4.19.0-22-powerpc64.postinst25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-4.19.0-22-powerpc64.postinst b/debian/linux-image-4.19.0-22-powerpc64.postinst
deleted file mode 100644
index 6b16c13ac..000000000
--- a/debian/linux-image-4.19.0-22-powerpc64.postinst
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh -e
-
-version=4.19.0-22-powerpc64
-image_path=/boot/vmlinux-$version
-
-if [ "$1" != configure ]; then
- exit 0
-fi
-
-depmod $version
-
-if [ -f /lib/modules/$version/.fresh-install ]; then
- change=install
-else
- change=upgrade
-fi
-linux-update-symlinks $change $version $image_path
-rm -f /lib/modules/$version/.fresh-install
-
-if [ -d /etc/kernel/postinst.d ]; then
- DEB_MAINT_PARAMS="$*" run-parts --report --exit-on-error --arg=$version \
- --arg=$image_path /etc/kernel/postinst.d
-fi
-
-exit 0