d5ef29e995
Changelog (since 883b726): - 3e020f7 Add 43436S firmware Future Zero 2 W boards will have an alternative version of 43436 that should have different firmware, named brcmfmac43436s-sdio. - 3888ba2 Merge pull request #18 from HiassofT/43436S Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
18 lines
652 B
Makefile
18 lines
652 B
Makefile
################################################################################
|
|
#
|
|
# rpi-bt-firmware
|
|
#
|
|
################################################################################
|
|
|
|
RPI_BT_FIRMWARE_VERSION = 3888ba29898bb3f056d5f1eb283cb8de4c533bef
|
|
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
|
|
|
|
define RPI_BT_FIRMWARE_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -d $(TARGET_DIR)/lib/firmware/brcm
|
|
$(INSTALL) -m 0644 $(@D)/firmware/brcm/*.hcd $(TARGET_DIR)/lib/firmware/brcm
|
|
endef
|
|
|
|
$(eval $(generic-package))
|