PKGBUILDs/alarm/firmware-raspberrypi/PKGBUILD

63 lines
3.2 KiB
Bash
Raw Normal View History

# Maintainer: graysky <therealgraysky AT protonmail DOT com>
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
# Contributor: Ray Sherwin <sliick517d@gmail.com>
2017-09-10 16:06:48 +00:00
pkgname=firmware-raspberrypi
_firmcommit=b0be2de82bc55d3f36a944538857d891340dbc2c
_bluezcommit=3b108c864428dda9f9833cf3346f438552d08cea
pkgver=20221026
pkgrel=1
2017-09-10 16:06:48 +00:00
pkgdesc="Additional firmware for Raspberry Pi"
2018-02-08 00:29:33 +00:00
arch=('any')
url="https://github.com/RPi-Distro/firmware-nonfree"
2017-09-10 16:06:48 +00:00
license=('custom')
makedepends=('git')
2017-09-10 16:06:48 +00:00
options=('!strip')
source=("git+https://github.com/RPi-Distro/firmware-nonfree.git#commit=$_firmcommit"
# support for which device?
"BCM4345C5.hcd::https://github.com/RPi-Distro/bluez-firmware/raw/$_bluezcommit/broadcom/BCM4345C5.hcd"
# bluetooth for RPi3+
"BCM43430A1.hcd::https://github.com/RPi-Distro/bluez-firmware/raw/$_bluezcommit/broadcom/BCM43430A1.hcd"
"BCM4345C0.hcd::https://github.com/RPi-Distro/bluez-firmware/raw/$_bluezcommit/broadcom/BCM4345C0.hcd"
# bluetooth for Zero 2 W
"BCM43430B0.hcd::https://github.com/RPi-Distro/bluez-firmware/raw/$_bluezcommit/broadcom/BCM43430B0.hcd"
# fixes buggy linux-firmware for RPi4B
'brcmfmac43455-sdio.raspberrypi,4-model-b.txt'
# fixes buggy linux-firmware for Zero-W
'https://archlinuxarm.org/builder/src/bcm43430/7.45.98.38/brcmfmac43430-sdio.txt'
2019-03-21 23:32:31 +00:00
'RPi-WM8804.conf')
sha256sums=('SKIP'
'dde785c4fa1351b52bda9c74554ae55bc74ecbe44935b9c3d83c7fe282cf17cf'
'c096ad4a5c3f06ed7d69eba246bf89ada9acba64a5b6f51b1e9c12f99bb1e1a7'
'c723c903655086c9f3a1de94a291f495a0f087f1ee6d3ee7bc4c558497aae7bc'
'338c2c6631131f516bfc7e64ef0872bd0402e1f98ef9d0c900eef0c814d90a25'
'edb6f4e4fb19e18940004124feb4ffe160d72fc607243a07a4480338a28b2748'
'e4ce7ad5ce72406f958ed758539b65d958d1c0eb3e46e3f8e9f02b510d88e0b0'
2019-03-21 23:32:31 +00:00
'f978fbc40db75ba3213a4472023496d0716706eb1a6f078f207ac027c5753f43')
2017-09-10 16:06:48 +00:00
package() {
_FWPATH=firmware-nonfree/debian/config/brcm80211
# https://github.com/RPi-Distro/firmware-nonfree/issues/26
unlink "$srcdir/$_FWPATH/brcm/brcmfmac43455-sdio.bin"
install -d "$pkgdir"/usr/lib/firmware/updates/brcm "$pkgdir"/usr/share/alsa/cards/
install -m 0644 *.hcd "$pkgdir"/usr/lib/firmware/updates/brcm
install -m 0644 RPi-WM8804.conf "$pkgdir"/usr/share/alsa/cards/
install -m 0644 "$srcdir/$_FWPATH/brcm/"* "$pkgdir"/usr/lib/firmware/updates/brcm
rm "$pkgdir"/usr/lib/firmware/updates/brcm/{brcmfmac43430-sdio.bin,brcmfmac43430-sdio.txt}
install -m 0644 "$srcdir/$_FWPATH/cypress/"{cyfmac43455-sdio-*.bin,README.txt} "$pkgdir"/usr/lib/firmware/updates/brcm
# make some symbolic links
cd "$pkgdir"/usr/lib/firmware/updates/brcm
ln -s brcmfmac43456-sdio.txt brcmfmac43456-sdio.raspberrypi,400.txt
ln -s brcmfmac43456-sdio.txt brcmfmac43456-sdio.raspberrypi,4-compute-module.txt
ln -s brcmfmac43456-sdio.txt brcmfmac43456-sdio.pine64-pinephone-pro.txt
ln -s brcmfmac43455-sdio.raspberrypi,4-model-b.txt brcmfmac43455-sdio.raspberrypi,4-compute-module.txt
ln -s BCM43430B0.hcd BCM.hcd
# see README.txt: we can use either the -standard or -minimal files so use standard by default
ln -s cyfmac43455-sdio-standard.bin brcmfmac43455-sdio.bin
2017-09-10 16:06:48 +00:00
}