14 lines
228 B
Bash
14 lines
228 B
Bash
#!/bin/sh -e
|
|
|
|
version=6.12.33+deb13progress8-arm64-16k
|
|
image_path=/boot/vmlinuz-$version
|
|
|
|
if [ "$1" != remove ]; then
|
|
exit 0
|
|
fi
|
|
|
|
linux-check-removal $version
|
|
|
|
linux-run-hooks image prerm $version $image_path -- "$@"
|
|
|
|
exit 0
|