Files
Raspberry-Pi-Linux-Kernel/linux-image/DEBIAN/prerm
T
Cantibra f31012cfcd
Raspberry Pi Linux Kernel 6.12.y / Linux Sources (push) Successful in 3m12s
Raspberry Pi Linux Kernel 6.18.y / Linux Sources (push) Successful in 3m55s
Raspberry Pi Linux Kernel 6.12.y / Linux Kernel (bcm2711_defconfig, rpt, v8) (push) Successful in 3h43m17s
Raspberry Pi Linux Kernel 6.18.y / Linux Kernel (bcm2711_defconfig, rpt, v8) (push) Successful in 4h7m31s
Raspberry Pi Linux Kernel 6.12.y / Linux Kernel (bcm2711_pve_defconfig, pve, v8) (push) Successful in 4h22m5s
Raspberry Pi Linux Kernel 6.18.y / Linux Kernel (bcm2711_pve_defconfig, pve, v8) (push) Successful in 5h1m12s
Raspberry Pi Linux Kernel 6.12.y / Linux Kernel (bcm2712_defconfig, rpt, 2712) (push) Successful in 3h42m45s
Raspberry Pi Linux Kernel 6.12.y / Linux Headers [Debian Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 1m29s
Raspberry Pi Linux Kernel 6.12.y / Linux Headers [Debian Package] (bcm2711_pve_defconfig, pve, pve8, v8) (push) Successful in 1m27s
Raspberry Pi Linux Kernel 6.12.y / Linux Headers [Debian Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 1m31s
Raspberry Pi Linux Kernel 6.12.y / Linux Image [Debian Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 58s
Raspberry Pi Linux Kernel 6.12.y / Linux Image [Debian Package] (bcm2711_pve_defconfig, pve, pve8, v8) (push) Successful in 1m0s
Raspberry Pi Linux Kernel 6.12.y / Linux Image [Debian Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 59s
Raspberry Pi Linux Kernel 6.12.y / Linux libc Development [Debian Package] (bcm2711_defconfig, main pve8) (push) Successful in 25s
Raspberry Pi Linux Kernel 6.12.y / Linux Headers [Debian Meta Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 11s
Raspberry Pi Linux Kernel 6.12.y / Linux Headers [Debian Meta Package] (bcm2711_pve_defconfig, pve, pve8, v8) (push) Successful in 13s
Raspberry Pi Linux Kernel 6.12.y / Linux Headers [Debian Meta Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 11s
Raspberry Pi Linux Kernel 6.12.y / Linux Image [Debian Meta Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 11s
Raspberry Pi Linux Kernel 6.12.y / Linux Image [Debian Meta Package] (bcm2711_pve_defconfig, pve, pve8, v8) (push) Successful in 11s
Raspberry Pi Linux Kernel 6.12.y / Linux Image [Debian Meta Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 11s
Raspberry Pi Linux Kernel 6.18.y / Linux Kernel (bcm2712_defconfig, rpt, 2712) (push) Successful in 3h22m36s
Raspberry Pi Linux Kernel 6.18.y / Linux Headers [Debian Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 58s
Raspberry Pi Linux Kernel 6.18.y / Linux Headers [Debian Package] (bcm2711_pve_defconfig, pve, pve9, v8) (push) Successful in 57s
Raspberry Pi Linux Kernel 6.18.y / Linux Headers [Debian Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 58s
Raspberry Pi Linux Kernel 6.18.y / Linux Image [Debian Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 34s
Raspberry Pi Linux Kernel 6.18.y / Linux Image [Debian Package] (bcm2711_pve_defconfig, pve, pve9, v8) (push) Successful in 35s
Raspberry Pi Linux Kernel 6.18.y / Linux Image [Debian Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 34s
Raspberry Pi Linux Kernel 6.18.y / Linux libc Development [Debian Package] (bcm2711_defconfig, main pve9) (push) Successful in 16s
Raspberry Pi Linux Kernel 6.18.y / Linux Headers [Debian Meta Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 9s
Raspberry Pi Linux Kernel 6.18.y / Linux Headers [Debian Meta Package] (bcm2711_pve_defconfig, pve, pve9, v8) (push) Successful in 8s
Raspberry Pi Linux Kernel 6.18.y / Linux Headers [Debian Meta Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 8s
Raspberry Pi Linux Kernel 6.18.y / Linux Image [Debian Meta Package] (bcm2711_defconfig, rpt, main, v8) (push) Successful in 8s
Raspberry Pi Linux Kernel 6.18.y / Linux Image [Debian Meta Package] (bcm2711_pve_defconfig, pve, pve9, v8) (push) Successful in 8s
Raspberry Pi Linux Kernel 6.18.y / Linux Image [Debian Meta Package] (bcm2712_defconfig, rpt, main, 2712) (push) Successful in 9s
Initialize Git Repository: 'Raspberry-Pi-Linux-Kernel'
2026-05-27 07:22:54 +02:00

22 lines
395 B
Bash

#!/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