wilink-bt-firmware: new package

Add firmware files for the UART attached Bluetooth on TI Wilink series
wireless connectivity combo chips.

Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
[Thomas: rename config option so that it has the BR2_PACKAGE_ prefix.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017.05.x
Baruch Siach 2017-03-13 16:35:27 +02:00 committed by Thomas Petazzoni
parent 2ba4fee836
commit 2d3573e0f3
4 changed files with 27 additions and 0 deletions

View File

@ -344,6 +344,7 @@ menu "Firmware"
source "package/ts4900-fpga/Config.in"
source "package/ux500-firmware/Config.in"
source "package/wilc1000-firmware/Config.in"
source "package/wilink-bt-firmware/Config.in"
source "package/zd1211-firmware/Config.in"
endmenu
source "package/a10disp/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_WILINK_BT_FIRMWARE
bool "wilink-bt-firmware"
help
Texas Instruments Wilink7 and Wilink8 (wl12xx/wl18xx) UART
attached Bluetooth firmware.
https://github.com/TI-ECS/bt-firmware

View File

@ -0,0 +1,2 @@
# Locally calculated
sha256 b99700f6d504d76878de83ac50f18a0270b6edd0b52a0458c60fc606ed3332f0 wilink-bt-firmware-169b2df5b968f0ede32ea9044859942fc220c435.tar.gz

View File

@ -0,0 +1,17 @@
################################################################################
#
# wilink-bt-firmware
#
################################################################################
WILINK_BT_FIRMWARE_VERSION = 169b2df5b968f0ede32ea9044859942fc220c435
WILINK_BT_FIRMWARE_SITE = $(call github,TI-ECS,bt-firmware,$(WILINK_BT_FIRMWARE_VERSION))
WILINK_BT_FIRMWARE_LICENSE = PROPRIETARY
WILINK_BT_FIRMWARE_LICENSE_FILES = LICENCE
define WILINK_BT_FIRMWARE_INSTALL_TARGET_CMDS
mkdir -p $(TARGET_DIR)/lib/firmware/ti-connectivity
cp $(@D)/TIInit_*.bts $(TARGET_DIR)/lib/firmware/ti-connectivity
endef
$(eval $(generic-package))