Initialize Git Repository: 'Raspberry-Pi-Linux-Kernel'
Some checks failed
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Sources (push) Successful in 3m12s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi Linux Kernel (bcm2711) (push) Failing after 1h50m43s
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Kernel (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (Meta-Package) (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux Headers (push) Has been skipped
Raspberry Pi Linux Kernel (Proxmox) (Bookworm) / Raspberry Pi v8 Linux libc Development (push) Has been skipped

This commit is contained in:
Cantibra
2026-03-02 23:23:11 +01:00
commit 09339d141b
16 changed files with 3042 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
Package: linux-headers-x.x.x+rpt-rpi-v8
Version: x.x.x
Architecture: arm64
Installed-Size:
Depends: linux-image-x.x.x+rpt-rpi-v8, gcc
Provides: linux-headers-x.x.x+rpt-common-rpi, linux-kbuild-x.x.x+rpt
Priority: optional
Section: kernel
Homepage: http://www.privlab.it
Maintainer: PrivLab <repository@privlab.it>
Description: Raspberry Pi Proxmox v8 Linux kernel headers for 6.12.73+pve-rpi-v8+ on arm64
This package provides kernel header files for 6.12.73+pve-rpi-v8+ on arm64
.
This is useful for people who need to build external modules

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__