diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 06:16:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-08 04:06:00 +0000 |
commit | df73ec60595b1eea3d927cb3cc55aa86d3305032 (patch) | |
tree | 785b793967ad1c4cac7f26afa81a88bf8c0cb877 /debian/linux-image-6.6.15-mips64r2el.postinst | |
parent | Building with gcc-12 instead of gcc-13. (diff) | |
download | linux-df73ec60595b1eea3d927cb3cc55aa86d3305032.tar.xz linux-df73ec60595b1eea3d927cb3cc55aa86d3305032.zip |
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.6.15-mips64r2el.postinst')
-rw-r--r-- | debian/linux-image-6.6.15-mips64r2el.postinst | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-6.6.15-mips64r2el.postinst b/debian/linux-image-6.6.15-mips64r2el.postinst deleted file mode 100644 index 60c02d0deb..0000000000 --- a/debian/linux-image-6.6.15-mips64r2el.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.6.15-mips64r2el -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 |