Initialize Git Repository: 'Raspberry-Pi-Proxmox-Image'
All checks were successful
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Linux Sources (push) Successful in 1h32m8s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 40s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 13s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Image (push) Successful in 42s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Headers (push) Successful in 22s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Linux Sources (push) Successful in 1h31m15s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 14s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 14s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Image (push) Successful in 47s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Headers (push) Successful in 33s

This commit is contained in:
Cantibra
2026-01-26 06:10:35 +01:00
commit 652f3ac5a4
17 changed files with 19908 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
Package: proxmox-headers-x.x.x+rpt-rpi-v8
Version: x.x.x
Architecture: arm64
Installed-Size:
Depends: linux-headers-x.x.x+rpt-common-rpi, proxmox-image-x.x.x+rpt-rpi-v8, linux-kbuild-x.x.x+rpt, gcc
Conflicts: linux-headers-x.x.x+rpt-rpi-v8
Priority: optional
Section: kernel
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Header files for Proxmox x.x.x+rpt-rpi-v8

View File

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