41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Template file for 'rpi-firmware'
|
|
_githash="ac0c0bff7951a39d371a46c4a80a9ec560e33c16"
|
|
_gitshort="${_githash:0:7}"
|
|
|
|
pkgname=rpi-firmware
|
|
version=20160521
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="firmware-${_githash}"
|
|
short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="3-clause-BSD"
|
|
homepage="https://github.com/raspberrypi/firmware"
|
|
distfiles="https://github.com/raspberrypi/firmware/archive/${_githash}.tar.gz"
|
|
checksum=1d0213964a5fe161c14bf95a4860b08cfa046a43f565a39e05dc768f31516845
|
|
|
|
conf_files="/boot/cmdline.txt /boot/config.txt"
|
|
|
|
do_install() {
|
|
rm -f boot/*.img
|
|
rm -rf boot/overlays
|
|
rm -f boot/*.dtb
|
|
rm -f boot/COPYING.linux
|
|
|
|
vmkdir boot
|
|
cp -R boot/* ${DESTDIR}/boot
|
|
|
|
vmkdir usr/share/licenses/${pkgname}
|
|
mv ${DESTDIR}/boot/LICENCE.broadcom ${DESTDIR}/usr/share/licenses/${pkgname}
|
|
|
|
# Install configuration files.
|
|
vinstall ${FILESDIR}/cmdline.txt 644 boot
|
|
vinstall ${FILESDIR}/config.txt 644 boot
|
|
|
|
# Firmware for rpi3 wifi chip
|
|
for f in bin txt; do
|
|
$XBPS_FETCH_CMD https://archlinuxarm.org/builder/src/brcmfmac43430-sdio.${f}
|
|
vinstall brcmfmac43430-sdio.${f} 0644 usr/lib/firmware/brcm
|
|
done
|
|
}
|