You've already forked Raspberry-Pi-Linux-Kernel
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
24 lines
511 B
Bash
24 lines
511 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
|
|
abort-upgrade)
|
|
exit 0
|
|
;;
|
|
install)
|
|
/usr/bin/install --directory "/lib/modules/${VERSION}" || \
|
|
/usr/bin/true
|
|
/usr/bin/touch "/lib/modules/${VERSION}/.fresh-install"
|
|
;;
|
|
esac
|
|
|
|
if [ -d '/etc/kernel/preinst.d' ]; then
|
|
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
|
|
--arg="${IMAGE_PATH}" '/etc/kernel/preinst.d'
|
|
fi
|