From 89088605265d7a698ef5da62122931b6c7216dab Mon Sep 17 00:00:00 2001 From: Florian Boor Date: Fri, 11 Sep 2015 20:28:12 +0200 Subject: [PATCH] brcm-patchram-plus: Recipe for Broadcom patchram-plus tool based on the ine from Edison firmware repo but without packaged firmware. Signed-off-by: Florian Boor --- .../brcm-patchram-plus_1.0.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 recipes-tools/brcm-patchram-plus/brcm-patchram-plus_1.0.bb diff --git a/recipes-tools/brcm-patchram-plus/brcm-patchram-plus_1.0.bb b/recipes-tools/brcm-patchram-plus/brcm-patchram-plus_1.0.bb new file mode 100644 index 0000000..97f389e --- /dev/null +++ b/recipes-tools/brcm-patchram-plus/brcm-patchram-plus_1.0.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Broadcom Bluetooth patch utility (based on Intel Edison tree)" +SECTION = "connectivity" + +SRC_URI = "git://github.com/01org/edison-firmware.git;branch=master;protocol=git;rev=8585a10b3527666b2d35b3dcacffede3ec00cb53" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://brcm_patchram_plus.c;md5=a1a36fbad61f424f16abdabd86d51052" + +S = "${WORKDIR}/git/broadcom_cws/bluetooth/firmware/" + +do_compile() { + ${CC} -O2 -Wall -o brcm_patchram_plus brcm_patchram_plus.c +} + +do_install() { + install -v -d ${D}/usr/sbin/ + install -m 0755 brcm_patchram_plus ${D}/usr/sbin/ +} -- 2.39.2