From: Florian Boor Date: Fri, 11 Sep 2015 18:28:12 +0000 (+0200) Subject: brcm-patchram-plus: Recipe for Broadcom patchram-plus tool based X-Git-Url: https://git.kernelconcepts.de/?p=meta-nanopi.git;a=commitdiff_plain;h=89088605265d7a698ef5da62122931b6c7216dab 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 --- 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/ +}