40
Raspberry Pi Linux Kernel 6.12.y / sources (push) Successful in 2m54s
Raspberry Pi Linux Kernel 6.12.y / build (push) Failing after 15m28s

This commit is contained in:
Cantibra
2026-05-06 14:14:52 +02:00
parent c790626a49
commit c4938f77f8
13 changed files with 4381 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/sh
set -e
set -u
VERSION='CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION'
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