mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 14:28:05 +00:00
e57b505240
Add AM65XX platform support Signed-off-by: Sam Nelson <sam.nelson@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
32 lines
771 B
PHP
32 lines
771 B
PHP
HOMEPAGE = "http://processors.wiki.ti.com/index.php/Category:IPC"
|
|
require ti-ipc-common.inc
|
|
require ti-ipc-rtos.inc
|
|
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://${S_ipc-examples}/src/makefile;beginline=1;endline=30;md5=a52324bd5033bb49ea07bade1244ac9a"
|
|
|
|
INSANE_SKIP_${PN} += "arch"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
|
|
IPC_INSTALL_DIR = "${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree"
|
|
|
|
do_compile() {
|
|
|
|
cd ${S_ipc-examples}/src
|
|
oe_runmake .examples \
|
|
IPCTOOLS="${S_ipc-metadata}/src/etc"
|
|
|
|
for alt_platform in ${ALT_PLATFORM}; do
|
|
oe_runmake .examples "PLATFORM=${alt_platform}" \
|
|
IPCTOOLS="${S_ipc-metadata}/src/etc"
|
|
done
|
|
}
|
|
|
|
do_install() {
|
|
cd ${S_ipc-examples}/src
|
|
IPC_VERSION=`echo ${PV}${RELEASE_SUFFIX} | sed -e 's|\.|_|g'`
|
|
}
|
|
|
|
INHIBIT_PACKAGE_STRIP = "1"
|