diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 04:17:45 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 04:17:45 +0000 |
commit | 656493a7e5f26f40c85e9a184945dcc1857cb3a9 (patch) | |
tree | c0f472bc5c6179c632dc6a8ec4b44d8f2cddc7dd /debian/linux-image-4.19.0-25-marvell.postinst | |
parent | Merging upstream version 4.19.289. (diff) | |
download | linux-656493a7e5f26f40c85e9a184945dcc1857cb3a9.tar.xz linux-656493a7e5f26f40c85e9a184945dcc1857cb3a9.zip |
Adding debian version 4.19.289-1.debian/4.19.289-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-4.19.0-25-marvell.postinst')
-rw-r--r-- | debian/linux-image-4.19.0-25-marvell.postinst | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/linux-image-4.19.0-25-marvell.postinst b/debian/linux-image-4.19.0-25-marvell.postinst new file mode 100644 index 000000000..e9e2d9706 --- /dev/null +++ b/debian/linux-image-4.19.0-25-marvell.postinst @@ -0,0 +1,25 @@ +#!/bin/sh -e + +version=4.19.0-25-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 |