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
+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__