diff options
author | Mrinmayee Hingolikar <mrinmayee@ti.com> | 2013-10-21 18:29:23 +0530 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2013-11-21 23:18:17 -0500 |
commit | 46e020df8eb4e9d025cf344ccc5ffa774be2f6c1 (patch) | |
tree | 2d22a6724d122a1ec631d73b71138ca5fb49cf8e /recipes-bsp/abefw | |
parent | 5d0302db82fb9be4c164d718e6172d4ada4de551 (diff) | |
download | meta-ti-46e020df8eb4e9d025cf344ccc5ffa774be2f6c1.tar.gz |
abefw: firmware for OMAP4 and OMAP5 ABE
The OMAP5 Audio Backend requires a 'firmware' to enable
sound. This recipe installs a prebuilt firmware. This
part is a hack, as in the current form, the firmware
cannot be cross-compiled. There is a plan to fix this
and hopefully, this recipe is short-lived. Once the code
is fixed, we should have new recipes that build the firmware
and clean up this recipe.
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/abefw')
-rw-r--r-- | recipes-bsp/abefw/abefw_1.0.14.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-bsp/abefw/abefw_1.0.14.bb b/recipes-bsp/abefw/abefw_1.0.14.bb new file mode 100644 index 00000000..302bdcde --- /dev/null +++ b/recipes-bsp/abefw/abefw_1.0.14.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "Firmware for OMAP4 and OMAP5 ABE" | ||
2 | HOMEPAGE = "http://git.ti.com" | ||
3 | LICENSE = "BSD | GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=923db086ed9463ab3215b24d87e05ec5" | ||
5 | |||
6 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
7 | |||
8 | COMPATIBLE_MACHINE = "pandaboard|omap5-evm" | ||
9 | |||
10 | SRC_URI = "git://git.ti.com/glsdk/abefw-omap4plus.git;protocol=git" | ||
11 | |||
12 | S = "${WORKDIR}/git" | ||
13 | |||
14 | SRCREV = "ceccc0332264e39bdc51e54f80ea7256a3886c58" | ||
15 | |||
16 | PR = "r0" | ||
17 | |||
18 | do_install() { | ||
19 | mkdir -p ${D}/lib/firmware | ||
20 | cp ${S}/firmware/omap4_abe_new ${D}/lib/firmware/ | ||
21 | } | ||
22 | |||
23 | FILES_${PN} += "/lib/firmware/omap4_abe_new" | ||