Inital Commit
All checks were successful
Raspberry Pi Proxmox Image / Raspberry Pi Linux Sources (push) Successful in 1h35m49s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 12s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Image (push) Successful in 39s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 11s
Raspberry Pi Proxmox Image / Raspberry Pi Proxmox Headers (push) Successful in 21s

This commit is contained in:
Cantibra
2025-10-26 21:11:05 +01:00
commit cc3af780b3
14 changed files with 10279 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/perl
$|=1;
my $version = "6.12.47+rpt-rpi-v8";
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__