summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-5.10.0-28-alpha-smp.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 17:45:36 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-08 17:45:36 +0000
commit429d3efd5669e129a6168d62edb6832e36b7a2a0 (patch)
tree14b99403f823ded018ba76aa450e8687247796b8 /debian/linux-image-5.10.0-28-alpha-smp.postinst
parentMerging upstream version 5.10.216. (diff)
downloadlinux-429d3efd5669e129a6168d62edb6832e36b7a2a0.tar.xz
linux-429d3efd5669e129a6168d62edb6832e36b7a2a0.zip
Adding debian version 5.10.216-1.debian/5.10.216-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-5.10.0-28-alpha-smp.postinst')
-rwxr-xr-xdebian/linux-image-5.10.0-28-alpha-smp.postinst25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-5.10.0-28-alpha-smp.postinst b/debian/linux-image-5.10.0-28-alpha-smp.postinst
deleted file mode 100755
index ca3fdf12a..000000000
--- a/debian/linux-image-5.10.0-28-alpha-smp.postinst
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh -e
-
-version=5.10.0-28-alpha-smp
-image_path=/boot/vmlinuz-$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