* Port bt-firmware recipe from arago. * Bt-firmware provides the bluetooth firmware for the TI wl12xx Wi+Fi + Bluetooth module.
Signed-off-by: Franklin S. Cooper Jr <[email protected]> --- Version 2 changes: Update ordering based on OE Styling Guide: http://www.openembedded.org/wiki/Styleguide Remove unneeded DEPENDS and PACKAGE_ARCH setting Use updated package strip syntax. Remove the machine da850-omapl138-evm from the recipe Remove tab from oe_runmake Appending to EXTRA_OEMAKE instead of overriding it ...001-Makefile-allow-building-within-the-OE.patch | 49 ++++++++++++++++++++ recipes-bsp/bt-firmware/bt-firmware_git.bb | 41 ++++++++++++++++ 2 files changed, 90 insertions(+), 0 deletions(-) create mode 100644 recipes-bsp/bt-firmware/bt-firmware/0001-Makefile-allow-building-within-the-OE.patch create mode 100644 recipes-bsp/bt-firmware/bt-firmware_git.bb diff --git a/recipes-bsp/bt-firmware/bt-firmware/0001-Makefile-allow-building-within-the-OE.patch b/recipes-bsp/bt-firmware/bt-firmware/0001-Makefile-allow-building-within-the-OE.patch new file mode 100644 index 0000000..49caa85 --- /dev/null +++ b/recipes-bsp/bt-firmware/bt-firmware/0001-Makefile-allow-building-within-the-OE.patch @@ -0,0 +1,49 @@ +From 8f226ccc9d2cbd10d454e131376c35f502a45e3b Mon Sep 17 00:00:00 2001 +From: Chase Maupin <[email protected]> +Date: Wed, 7 Mar 2012 14:11:42 -0600 +Subject: [PATCH] Makefile: allow building with OE + +* Use defaults and source values that allow building this + component with OE. + +Upstread-Status: Pending + * Will be accepted into next release + +Signed-off-by: Chase Maupin <[email protected]> +--- + Makefile | 21 +++++++++++++++++++++ + 1 files changed, 21 insertions(+), 0 deletions(-) + +diff --git a/Makefile b/Makefile +index 9035e40..bd94881 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,5 +1,26 @@ + # Installs the the Bluetooth firmware files into the root file system + ++-include ../../../Rules.make ++ ++# If KERNEL_DIR is not set then use the default in Rules.make ++DEST_DIR ?= ${DESTDIR} ++ ++PLATFORM ?= "unknown" ++MACHINE_NAME ?= "unknown" ++ ++ifeq ($(PLATFORM), am335x-evm) ++ MACHINE_NAME := am335x ++endif ++ifeq ($(PLATFORM), am180x-evm) ++ MACHINE_NAME := am1808 ++endif ++ifeq ($(PLATFORM), da850-omapl138-evm) ++ MACHINE_NAME := am1808 ++endif ++ifeq ($(PLATFORM), am37x-evm) ++ MACHINE_NAME := omap3evm ++endif ++ + install: + install -d $(DEST_DIR)${BASE_LIB_DIR}/firmware + cp -f ./${MACHINE_NAME}/* $(DEST_DIR)${BASE_LIB_DIR}/firmware +-- +1.7.0.4 diff --git a/recipes-bsp/bt-firmware/bt-firmware_git.bb b/recipes-bsp/bt-firmware/bt-firmware_git.bb new file mode 100644 index 0000000..f6888d4 --- /dev/null +++ b/recipes-bsp/bt-firmware/bt-firmware_git.bb @@ -0,0 +1,41 @@ +DESCRIPTION = "Firmware files for Bluetooth" +LICENSE = "TI-TSPA" +LIC_FILES_CHKSUM = "file://am335x/LICENCE;md5=ba590e1d103f891d0151609046aef9e8 \ + file://am1808/LICENCE;md5=ba590e1d103f891d0151609046aef9e8 \ + file://omap3evm/LICENCE;md5=ba590e1d103f891d0151609046aef9e8 \ +" + +PACKAGE_ARCH = "${MACHINE_ARCH}" + +# This recipe provides the latest firmware files for wl12xx. +# Therefore, use the contents of this recipe instead of the contents +# of linux-firmware-wl12xx. +RCONFLICTS_${PN} = "linux-firmware-wl12xx" +RREPLACES_${PN} = "linux-firmware-wl12xx" + +PR = "r0+gitr${SRCREV}" + +COMPATIBLE_MACHINE = "omap3|omapl138|da850-omapl138-evm|ti33x" + +SRCREV = "db43d1f05efda9777d7ac1ac366637e29e21f77f" +SRC_URI = "git://github.com/TI-ECS/bt-firmware.git;protocol=git \ + file://0001-Makefile-allow-building-within-the-OE.patch" + +PLATFORM = "unknown" +PLATFORM_ti33x = "am335x-evm" +PLATFORM_omap3 = "am37x-evm" +PLATFORM_omapl138 = "am180x-evm" +PLATFORM_da850-omapl138-evm = "am180x-evm" + +S = "${WORKDIR}/git" + +do_compile() { + : +} + +do_install() { + install -d ${D}${base_libdir}/firmware + oe_runmake 'DEST_DIR=${D}' 'BASE_LIB_DIR=${base_libdir}' 'PLATFORM=${PLATFORM}' install +} + +FILES_${PN} += "${base_libdir}/firmware" -- 1.7.0.4 _______________________________________________ meta-ti mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-ti
