0f49bd05ea
Include BCM4345C0.hcd for the rpi3 b+ Signed-off-by: Martin Bark <martin@barkynet.com> [Thomas: rebase on master, use make foreach loop instead of shell for loop.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
724 B
Makefile
21 lines
724 B
Makefile
################################################################################
|
|
#
|
|
# rpi-bt-firmware
|
|
#
|
|
################################################################################
|
|
|
|
RPI_BT_FIRMWARE_VERSION = 18d7c931aff0a8a78360b9b9eaeb15d1224fb907
|
|
RPI_BT_FIRMWARE_SITE = $(call github,LibreELEC,brcmfmac_sdio-firmware-rpi,$(RPI_BT_FIRMWARE_VERSION))
|
|
RPI_BT_FIRMWARE_LICENSE = PROPRIETARY
|
|
RPI_BT_FIRMWARE_LICENSE_FILES = LICENCE.broadcom_bcm43xx
|
|
|
|
RPI_BT_FIRMWARE_FILES = brcm/BCM43430A1.hcd BCM4345C0.hcd
|
|
|
|
define RPI_BT_FIRMWARE_INSTALL_TARGET_CMDS
|
|
$(foreach file,$(RPI_BT_FIRMWARE_FILES),\
|
|
$(INSTALL) -D -m 0644 $(@D)/firmware/$(file) $(TARGET_DIR)/lib/firmware/$(notdir $(file))
|
|
)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|