mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-21 20:19:08 +00:00
This API will allow querying remote core information Signed-off-by: Karthik Ramanan <a0393906@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
63 lines
1.7 KiB
BlitzBasic
63 lines
1.7 KiB
BlitzBasic
DESCRIPTION = "Firmware for DSP for an example application called copycodectest"
|
|
LICENSE = "TI-TSPA"
|
|
LIC_FILES_CHKSUM = "file://src/ti/framework/dce/dce.c;startline=1;endline=31;md5=2c6e9aba6ed75f22b1a2b7544b1c809d"
|
|
|
|
COMPATIBLE_MACHINE = "dra7xx"
|
|
|
|
SRC_URI = "git://git.ti.com/glsdk/dspdce.git;protocol=git"
|
|
|
|
SRCREV = "3b9cea492f23d7dabb9ffa0e69631b858ba8e90a"
|
|
|
|
PV = "1.00.00.06"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
require recipes-ti/includes/ti-paths.inc
|
|
require recipes-ti/includes/ti-staging.inc
|
|
|
|
PR = "r3"
|
|
inherit update-alternatives
|
|
|
|
DEPENDS = "ti-xdctools ti-sysbios ti-codec-engine ti-framework-components ti-xdais ti-ipc-rtos ti-osal ti-cgt6x-native"
|
|
|
|
export HWVERSION = "ES10"
|
|
export BIOSTOOLSROOT = "${STAGING_DIR_TARGET}/usr/share/ti"
|
|
|
|
export XDCVERSION = "ti-xdctools-tree"
|
|
export BIOSVERSION = "ti-sysbios-tree"
|
|
export IPCVERSION = "ti-ipc-tree"
|
|
export CEVERSION = "ti-codec-engine-tree"
|
|
export FCVERSION = "ti-framework-components-tree"
|
|
export XDAISVERSION = "ti-xdais-tree"
|
|
export OSALVERSION = "ti-osal-tree"
|
|
|
|
export IPCSRC = "${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree"
|
|
export C66XCGTOOLSPATH = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
|
|
|
|
do_configure() {
|
|
cd ${S}
|
|
make unconfig
|
|
make vayu_config
|
|
}
|
|
|
|
do_compile() {
|
|
cd ${S}
|
|
make dspbin
|
|
}
|
|
|
|
TARGET = "dra7-dsp1-fw.xe66"
|
|
|
|
do_install() {
|
|
install -d ${D}${base_libdir}/firmware
|
|
install -m 0644 ${S}/dra7xx-c66x-dsp.xe66 ${D}${base_libdir}/firmware/${TARGET}.${BPN}
|
|
}
|
|
|
|
ALTERNATIVE_${PN} = "dra7-dsp1-fw.xe66"
|
|
ALTERNATIVE_LINK_NAME[dra7-dsp1-fw.xe66] = "${base_libdir}/firmware/${TARGET}"
|
|
ALTERNATIVE_TARGET[dra7-dsp1-fw.xe66] = "${base_libdir}/firmware/${TARGET}.${BPN}"
|
|
ALTERNATIVE_PRIORITY = "10"
|
|
|
|
INSANE_SKIP_${PN} = "arch"
|
|
|
|
FILES_${PN} += "${base_libdir}/firmware/*"
|