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
+4 -1
View File
@@ -1,2 +1,5 @@
# Borgbackup Schedule # Raspberry Pi Linux Kernel
# Raspberry Pi Linux Proxmox Kernel
[Forked: Github (raspberrypi/linux)](https://github.com/raspberrypi/linux)
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+12
View File
@@ -0,0 +1,12 @@
Package: linux-headers-CICD_IMAGE-rpi-CICD_REVISION
Version: 1:CICD_VERSION~CICD_CODENAME
Architecture: arm64
Installed-Size:
Depends: linux-headers-CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION (= 1:CICD_VERSION~CICD_CODENAME)
Priority: optional
Section: kernel
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Header files for Linux CICD_IMAGE-rpi-CICD_REVISION configuration (meta-package)
This package depends on the architecture-specific header files for the
latest Linux kernel CICD_IMAGE-rpi-CICD_REVISION configuration.
+17
View File
@@ -0,0 +1,17 @@
Package: linux-headers-CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION
Version: 1:CICD_VERSION~CICD_CODENAME
Architecture: arm64
Installed-Size:
Depends: linux-image-CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION (= 1:CICD_VERSION~CICD_CODENAME), gcc-12
Provides: linux-headers-CICD_VERSION+CICD_IMAGE-common-rpi, linux-kbuild-CICD_VERSION+CICD_IMAGE
Priority: optional
Section: kernel
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Header files for Linux CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION
This package provides the architecture-specific kernel header files for
Linux kernel CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION, generally used for building out-of-tree
kernel modules. These files are going to be installed into
/usr/src/linux-headers-CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION, and can be used for building
modules that load into the kernel provided by the
linux-image-CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION package.
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/perl
$|=1;
my $version = "CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION";
if (-d "/etc/kernel/header_postinst.d") {
system ("run-parts --report --exit-on-error --arg=$version " .
"/etc/kernel/header_postinst.d") &&
die "Failed to process /etc/kernel/header_postinst.d";
}
exit 0;
__END__
+13
View File
@@ -0,0 +1,13 @@
Package: linux-image-CICD_IMAGE-rpi-CICD_REVISION
Version: 1:CICD_VERSION~CICD_CODENAME
Architecture: arm64
Installed-Size:
Depends: linux-image-CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION (= 1:CICD_VERSION~CICD_CODENAME)
Priority: optional
Provides: linux-latest-modules-CICD_VERSION+CICD_REVISION-rpi-CICD_REVISION, wireguard-modules (= 1.0.0)
Section: kernel
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Linux for Raspberry Pi CICD_REVISION (meta-package)
This package depends on the latest Linux kernel and modules for use on
Raspberry Pi CICD_REVISION kernel.
+16
View File
@@ -0,0 +1,16 @@
Package: linux-image-CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION
Version: 1:CICD_VERSION~CICD_CODENAME
Architecture: arm64
Installed-Size:
Depends: kmod, linux-base (>= 4.3~), initramfs-tools (>= 0.120+deb8u2) | linux-initramfs-tool
Recommends: apparmor
Suggests: debian-kernel-handbook, firmware-brcm80211, firmware-linux-free, firmware-realtek, linux-doc-6.12, raspi-firmware
Breaks: fwupdate (<< 12-7), initramfs-tools (<< 0.120+deb8u2), wireless-regdb (<< 2019.06.03-1~)
Priority: optional
Section: kernel
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Linux 6.12 for Raspberry Pi CICD_REVISION, Raspberry Pi
The Linux kernel 6.12 and modules for use on Raspberry Pi CICD_REVISION kernel.
.
This kernel includes the patches for Raspberry Pi platforms.
+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
+49
View File
@@ -0,0 +1,49 @@
#!/usr/bin/sh
set -e
set -u
VERSION='CICD_VERSION+CICD_IMAGE-rpi-CICD_REVISION'
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
/usr/bin/rm --force "/lib/modules/${VERSION}/.fresh-install"
case "${1}" in
remove)
if command -v linux-update-symlinks > '/dev/null'; then
/usr/bin/linux-update-symlinks remove "${VERSION}" "${IMAGE_PATH}"
fi
;;
purge)
if command -v linux-update-symlinks > '/dev/null'; then
/usr/bin/linux-update-symlinks remove "${VERSION}" "${IMAGE_PATH}"
fi
for EXTRA_FILE in modules.\*.bin \
modules.alias \
modules.ccwmap \
modules.dep \
modules.devname \
modules.generic_string \
modules.ieee1394map \
modules.ieee1394map \
modules.inputmap \
modules.isapnpmap \
modules.ofmap \
modules.parportmap \
modules.pcimap \
modules.pnpbiosmap \
modules.seriomap \
modules.softdep \
modules.symbols \
modules.usbmap \
modules.weakdep; do
eval /usr/bin/rm --force "/lib/modules/${VERSION}/${EXTRA_FILE}"
done
/usr/bin/rm --force --recursive "/lib/modules/${VERSION}"
;;
esac
if [ -d '/etc/kernel/postrm.d' ]; then
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
--arg="${IMAGE_PATH}" '/etc/kernel/postrm.d'
fi
+23
View File
@@ -0,0 +1,23 @@
#!/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
+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
+12
View File
@@ -0,0 +1,12 @@
Package: linux-libc-dev
Version: 1:CICD_VERSION~CICD_CODENAME
Architecture: arm64
Installed-Size:
Priority: optional
Section: devel
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Linux support headers for userspace development
This package provides userspaces headers from the Linux kernel. These
files are going to be installed into /usr/include, and are used by the
installed headers for GNU libc and other system libraries.