mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
09c7b7ca1a
Provide cypress dir and create symlink there in cyfmac43455-sdio-standard.bin which is needed for the new way upstream provides three files in bcrm dir. For Zero-W, use upstream provided firmware
60 lines
2.9 KiB
Bash
60 lines
2.9 KiB
Bash
# Maintainer: graysky <therealgraysky AT protonmail DOT com>
|
|
# Maintainer: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# Contributor: Ray Sherwin <sliick517d@gmail.com>
|
|
|
|
pkgname=firmware-raspberrypi
|
|
_firmcommit=3b108c864428dda9f9833cf3346f438552d08cea
|
|
_bluezcommit=90d0bdffd25cc8a1717d3fec6cc7bbde56ee83c7
|
|
pkgver=20221027
|
|
pkgrel=1
|
|
pkgdesc="Additional firmware for Raspberry Pi"
|
|
arch=('any')
|
|
url="https://github.com/RPi-Distro/firmware-nonfree"
|
|
license=('custom')
|
|
makedepends=('git')
|
|
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"
|
|
'RPi-WM8804.conf')
|
|
|
|
sha256sums=('SKIP'
|
|
'dde785c4fa1351b52bda9c74554ae55bc74ecbe44935b9c3d83c7fe282cf17cf'
|
|
'c096ad4a5c3f06ed7d69eba246bf89ada9acba64a5b6f51b1e9c12f99bb1e1a7'
|
|
'c723c903655086c9f3a1de94a291f495a0f087f1ee6d3ee7bc4c558497aae7bc'
|
|
'338c2c6631131f516bfc7e64ef0872bd0402e1f98ef9d0c900eef0c814d90a25'
|
|
'f978fbc40db75ba3213a4472023496d0716706eb1a6f078f207ac027c5753f43')
|
|
|
|
package() {
|
|
_FWPATH=firmware-nonfree/debian/config/brcm80211
|
|
|
|
# https://github.com/RPi-Distro/firmware-nonfree/issues/26
|
|
unlink "$srcdir/$_FWPATH/brcm/brcmfmac43455-sdio.bin"
|
|
|
|
# install cypress dir and symlink cyfmac43455-sdio-standard.bin which debian
|
|
# packaging does, see README.txt in /cypress and comments in this commit:
|
|
# https://github.com/RPi-Distro/firmware-nonfree/commit/3b108c864428dda9f9833cf3346f438552d08cea
|
|
install -d "$srcdir/$_FWPATH/cypress" "$pkgdir"/usr/lib/firmware/updates/cypress/
|
|
install -m 0644 "$srcdir/$_FWPATH/cypress/"* "$pkgdir"/usr/lib/firmware/updates/cypress
|
|
cd "$pkgdir"/usr/lib/firmware/updates/cypress
|
|
|
|
# we can use either the -standard or -minimal files so use standard by default
|
|
ln -s cyfmac43455-sdio-standard.bin cyfmac43455-sdio.bin
|
|
|
|
cd "$srcdir"
|
|
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/
|
|
cp -r "$srcdir/$_FWPATH/brcm/"* "$pkgdir"/usr/lib/firmware/updates/brcm
|
|
|
|
# make some symbolic links
|
|
cd "$pkgdir"/usr/lib/firmware/updates/brcm
|
|
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
|
|
}
|