You've already forked Raspberry-Pi-Linux-Kernel
Initialize Git Repository: 'Raspberry-Pi-Linux-Kernel'
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
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
This commit is contained in:
21
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/prerm
Normal file
21
linux-image-x.x.x+rpt-rpi-v8/DEBIAN/prerm
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user