diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 03:45:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 03:45:19 +0000 |
commit | fc29d8e7adf8ca263f0f58d0b28ddaf9721577a7 (patch) | |
tree | 658d53d9edd1baa7c4c0a6cdd1611d8bd9f4a607 /debian/linux-image-4.19.0-23progress5u1-marvell.postinst | |
parent | Setting abiname to 23progress5u1. (diff) | |
download | linux-fc29d8e7adf8ca263f0f58d0b28ddaf9721577a7.tar.xz linux-fc29d8e7adf8ca263f0f58d0b28ddaf9721577a7.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-23progress5u1-marvell.postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/linux-image-4.19.0-23progress5u1-marvell.postinst b/debian/linux-image-4.19.0-23progress5u1-marvell.postinst new file mode 100644 index 000000000..adcffb8c9 --- /dev/null +++ b/debian/linux-image-4.19.0-23progress5u1-marvell.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=4.19.0-23progress5u1-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 |