Initialize Git Repository: 'Raspberry-Pi-Linux-Kernel'
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

This commit is contained in:
Cantibra
2026-05-27 07:22:54 +02:00
commit f31012cfcd
19 changed files with 5623 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
#!/usr/bin/sh
set -e
set -u
VERSION='CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION'
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
skip_initramfs_gen () {
if [ -r '/etc/default/raspi-firmware' ]; then
. /etc/default/raspi-firmware
fi
if [ "$(/usr/bin/echo "${SKIP_INITRAMFS_GEN}" | /usr/bin/tr '[:upper:]' '[:lower:]' | /usr/bin/sed 's/true\|1/yes/')" = 'yes' ]; then
return 0
fi
return 1
}
case "${1}" in
configure)
depmod "${VERSION}"
if [ -f "/lib/modules/${VERSION}/.fresh-install" ]; then
CHANGE='install'
else
CHANGE='upgrade'
fi
/usr/bin/linux-update-symlinks "${CHANGE}" "${VERSION}" "${IMAGE_PATH}"
/usr/bin/rm --force "/lib/modules/${VERSION}/.fresh-install"
;;
*)
exit 0
;;
esac
if [ -d '/etc/kernel/postinst.d' ]; then
if skip_initramfs_gen; then
export INITRD='No'
fi
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
--arg="${IMAGE_PATH}" '/etc/kernel/postinst.d'
fi