#!/bin/sh -e version=6.12.33+deb13progress8-octeon image_path=/boot/vmlinux-$version if [ "$1" = abort-upgrade ]; then exit 0 fi if [ "$1" = install ]; then # Create a flag file for postinst mkdir -p /lib/modules/$version touch /lib/modules/$version/.fresh-install fi linux-run-hooks image preinst $version $image_path -- "$@" exit 0