diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-21 05:38:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-21 05:38:34 +0000 |
commit | c3dc50caa219cea1d94d77e19b1e9bb7e27bb2f8 (patch) | |
tree | 532254be2db2c8e43370425c3aab5aa0f46219de /debian/linux-image-6.10.4-progress7.99-powerpc-smp.postinst | |
parent | Merging upstream version 6.10.6. (diff) | |
download | linux-c3dc50caa219cea1d94d77e19b1e9bb7e27bb2f8.tar.xz linux-c3dc50caa219cea1d94d77e19b1e9bb7e27bb2f8.zip |
Merging debian version 6.10.6-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/linux-image-6.10.4-progress7.99-powerpc-smp.postinst')
-rw-r--r-- | debian/linux-image-6.10.4-progress7.99-powerpc-smp.postinst | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/linux-image-6.10.4-progress7.99-powerpc-smp.postinst b/debian/linux-image-6.10.4-progress7.99-powerpc-smp.postinst deleted file mode 100644 index 877a06b38e..0000000000 --- a/debian/linux-image-6.10.4-progress7.99-powerpc-smp.postinst +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh -e - -version=6.10.4-progress7.99-powerpc-smp -image_path=/boot/vmlinux-$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 |