1
0
Fork 0
linux/debian/linux-image-6.12.33+deb13progress8-powerpc-smp.postinst
Daniel Baumann 9f7322797e
Regenerating debian files.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:55:35 +02:00

22 lines
417 B
Bash

#!/bin/sh -e
version=6.12.33+deb13progress8-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
linux-run-hooks image postinst $version $image_path -- "$@"
exit 0