Files
Raspberry-Pi-Linux-Kernel/linux-image-x.x.x+rpt-rpi-v8/DEBIAN/prerm
Cantibra 09339d141b
Some checks failed
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Sources (push) Successful in 3m12s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Kernel (bcm2711) (push) Failing after 1h50m43s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux libc Development (push) Has been skipped
Initialize Git Repository: 'Raspberry-Pi-Linux-Kernel'
2026-03-02 23:23:11 +01:00

22 lines
370 B
Bash

#!/usr/bin/sh
set -e
set -u
VERSION='x.x.x+rpt-rpi-v8'
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
case "${1}" in
remove)
exit 0
;;
*)
/usr/bin/linux-check-removal "${VERSION}"
;;
esac
if [ -d '/etc/kernel/prerm.d' ]; then
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
--arg="${IMAGE_PATH}" '/etc/kernel/prerm.d'
fi