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