18 lines
352 B
Bash
18 lines
352 B
Bash
#!/bin/sh -e
|
|
|
|
version=6.12.33+deb13progress8-rpi
|
|
image_path=/boot/vmlinuz-$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
|