Inital Commit
All checks were successful
Raspberry Pi Proxmox Image / Raspberry Pi Linux Sources (push) Successful in 1h35m49s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 12s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Image (push) Successful in 39s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 11s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Headers (push) Successful in 21s

This commit is contained in:
Cantibra
2025-10-26 21:11:05 +01:00
commit cc3af780b3
14 changed files with 10279 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#!/usr/bin/sh
set -e
set -u
VERSION='6.12.47+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