summaryrefslogtreecommitdiffstats
path: root/debian/linux-image-6.1.0-18-marvell.postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 07:42:21 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 07:42:26 +0000
commitf435c72e96774fa86d2aef7907cef811ac3ef1e9 (patch)
tree622909c0d6bc55a791938a84c7a72a32b90df704 /debian/linux-image-6.1.0-18-marvell.postinst
parentAdding patch to fix FTBFS in drivers/media/pci/cx18 with gcc-10 (Closes: #102... (diff)
downloadlinux-f435c72e96774fa86d2aef7907cef811ac3ef1e9.tar.xz
linux-f435c72e96774fa86d2aef7907cef811ac3ef1e9.zip
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.1.0-18-marvell.postinst')
-rwxr-xr-xdebian/linux-image-6.1.0-18-marvell.postinst25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-6.1.0-18-marvell.postinst b/debian/linux-image-6.1.0-18-marvell.postinst
deleted file mode 100755
index 323284d24..000000000
--- a/debian/linux-image-6.1.0-18-marvell.postinst
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh -e
-
-version=6.1.0-18-marvell
-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