diff options
author | Mrinmayee Hingolikar <mrinmayee@ti.com> | 2014-05-20 01:19:44 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2014-05-21 15:37:56 -0400 |
commit | 8168e00b6df872e35b2b74f93efbbd8c15a7ad20 (patch) | |
tree | ca4963b6f627e4148696aaf5834794e6e831cc29 /recipes-ti | |
parent | d7f791b65448375151698e681c2ed13a1cd6b73e (diff) | |
download | meta-ti-8168e00b6df872e35b2b74f93efbbd8c15a7ad20.tar.gz |
dspdce-fw: Add DSP firmware recipe
* Migrated the dspdce-fw recipe from meta-ti-glsdk and
preserved authorship for Mrinmayee.
* Cleaned up for upstream:
* Removed the MACHINE name from the recipe name
* Used MACHINE variable in SRC_URI
* Update to use default variables such as base_libdir
Signed-off-by: Chase Maupin <Chase.Maupin@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-ti')
-rw-r--r-- | recipes-ti/dspdce-fw/dspdce-fw_1.00.00.02.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-ti/dspdce-fw/dspdce-fw_1.00.00.02.bb b/recipes-ti/dspdce-fw/dspdce-fw_1.00.00.02.bb new file mode 100644 index 00000000..69e9814c --- /dev/null +++ b/recipes-ti/dspdce-fw/dspdce-fw_1.00.00.02.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | DESCRIPTION = "Firmware for DSP " | ||
2 | LICENSE = "TI-TSPA" | ||
3 | LIC_FILES_CHKSUM = "file://DSPDCE-${PV}-Manifest.doc;md5=587a7b9fdd99f98fbe99af4a4ba3362a" | ||
4 | |||
5 | COMPATIBLE_MACHINE = "dra7xx-evm" | ||
6 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
7 | |||
8 | SRC_URI = "http://downloads.ti.com/dsps/dsps_public_sw/glsdk/dspdce/1_00_00_02/exports/dspdce-${MACHINE}-1.00.00.02.tar.gz;protocol=http" | ||
9 | |||
10 | S = "${WORKDIR}/dspdce-${MACHINE}-${PV}" | ||
11 | |||
12 | SRC_URI[md5sum] = "df19baf16f828b5d32b4eed50f0364f5" | ||
13 | SRC_URI[sha256sum] = "0c0f34674110d1ef0300b61b572a326daffb95a31cc9d45888b2e50a83c6f555" | ||
14 | |||
15 | TARGET = "dra7-dsp1-fw.xe66" | ||
16 | |||
17 | do_install() { | ||
18 | mkdir -p ${D}${base_libdir}/firmware | ||
19 | cp ${S}/firmware/${TARGET} ${D}${base_libdir}/firmware/${TARGET} | ||
20 | } | ||
21 | |||
22 | FILES_${PN} += "${base_libdir}/firmware/${TARGET}" | ||
23 | |||
24 | INSANE_SKIP_${PN} = "arch" | ||