From d5272d3bec6d57fcf1629901e27d1274e2fd6644 Mon Sep 17 00:00:00 2001 From: Zhang Hua Date: Wed, 16 Nov 2022 20:26:20 +0800 Subject: [PATCH] Add raspberrypi-overlays This is required by uefi-raspberrypi4, it is the /boot/overlays folder of the Raspberry Pi 4. This should be provided by linux-raspberrypi, but UEFI firmware needs linux-aarch64 for the devicetree, besides, linux-raspberrypi does not enable ACPI and UEFI related config so it is not suitable for uefi-raspberrypi4. Bump to 20221104 Bump to 20230106 Bump to 20230405 --- alarm/raspberrypi-overlays/PKGBUILD | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 alarm/raspberrypi-overlays/PKGBUILD diff --git a/alarm/raspberrypi-overlays/PKGBUILD b/alarm/raspberrypi-overlays/PKGBUILD new file mode 100644 index 0000000000..60b231886f --- /dev/null +++ b/alarm/raspberrypi-overlays/PKGBUILD @@ -0,0 +1,18 @@ +buildarch=1 # any + +pkgname="raspberrypi-overlays" +pkgver=20230405 +pkgrel=1 +pkgdesc="/boot/overlays for RaspberryPi" +url="https://github.com/raspberrypi/firmware" +arch=("any") +license=("GPL2") +conflicts=("linux-rpi" "raspberrypi-devicetree") +source=("https://github.com/raspberrypi/firmware/archive/refs/tags/1.${pkgver}.tar.gz") +sha256sums=('08b208bf715d0379a93d38f20aed409cbe2e12c1dc27e3a3794416faefde1aa9') + +package(){ + cd "${srcdir}/firmware-1.${pkgver}" + mkdir -p "${pkgdir}/boot" + cp -av boot/overlays "${pkgdir}/boot/" +}