mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
ipc-transport: Extract source info to common inc file
* Also use new variables to specify the source info so this can be easily overridden and applied to each recipe. Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
This commit is contained in:
committed by
Denys Dmytriyenko
parent
bcb5ecc357
commit
d3a7ce8cf3
@@ -1,5 +1,7 @@
|
||||
include ipc-transport-qmss.inc
|
||||
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||
|
||||
DEPENDS = "ipc-transport-qmss ti-ipc"
|
||||
|
||||
@@ -1,13 +1,9 @@
|
||||
DESCRIPTION = "TI QMSS-Based IPC MessageQ Transport"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=27bb0deb260c60120a8d7b91da7c3b02"
|
||||
require ipc-transport.inc
|
||||
|
||||
BRANCH="master"
|
||||
SRC_URI = "git://git.ti.com/keystone-linux/ipc-transport.git;protocol=git;branch=${BRANCH}"
|
||||
# Below commit ID corresponds to DEV.IPC-TRANSPORT.02.00.00.01
|
||||
SRCREV = "88ea336c584ccec4b2c281cd7f75df9dff6d4edf"
|
||||
PV = "02.00.00.01"
|
||||
INC_PR_append = ".0"
|
||||
|
||||
COMPATIBLE_MACHINE = "keystone"
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
include ipc-transport-qmss.inc
|
||||
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
DEPENDS = "ti-ipc mpm-transport"
|
||||
|
||||
do_compile () {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
include ipc-transport-srio.inc
|
||||
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
DEPENDS = "ipc-transport-srio ipc-transport-qmss ti-ipc"
|
||||
|
||||
DEVICELIST = "k2h k2k"
|
||||
|
||||
@@ -1,13 +1,9 @@
|
||||
DESCRIPTION = "TI SRIO-Based IPC MessageQ Transport"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
|
||||
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=27bb0deb260c60120a8d7b91da7c3b02"
|
||||
require ipc-transport.inc
|
||||
|
||||
BRANCH="master"
|
||||
SRC_URI = "git://git.ti.com/keystone-linux/ipc-transport.git;protocol=git;branch=${BRANCH}"
|
||||
# Below commit ID corresponds to DEV.IPC-TRANSPORT.02.00.00.01
|
||||
SRCREV = "88ea336c584ccec4b2c281cd7f75df9dff6d4edf"
|
||||
PV = "02.00.00.01"
|
||||
INC_PR_append = ".0"
|
||||
|
||||
COMPATIBLE_MACHINE = "k2hk-evm"
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
include ipc-transport-srio.inc
|
||||
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
DEPENDS = "ti-ipc mpm-transport"
|
||||
|
||||
do_compile () {
|
||||
|
||||
15
recipes-ti/ipc/ipc-transport.inc
Normal file
15
recipes-ti/ipc/ipc-transport.inc
Normal file
@@ -0,0 +1,15 @@
|
||||
LIC_FILES_CHKSUM = "file://COPYING.txt;md5=27bb0deb260c60120a8d7b91da7c3b02"
|
||||
|
||||
IPC_TRANSPORT_GIT_URI = "git://git.ti.com/keystone-linux/ipc-transport.git"
|
||||
IPC_TRANSPORT_GIT_BRANCH = "master"
|
||||
IPC_TRANSPORT_GIT_PROTOCOL = "git"
|
||||
|
||||
# Below commit ID corresponds to DEV.IPC-TRANSPORT.02.00.00.01
|
||||
IPC_TRANSPORT_SRCREV = "88ea336c584ccec4b2c281cd7f75df9dff6d4edf"
|
||||
|
||||
BRANCH="${IPC_TRANSPORT_GIT_BRANCH}"
|
||||
SRC_URI = "${IPC_TRANSPORT_GIT_URI};protocol=${IPC_TRANSPORT_GIT_PROTOCOL};branch=${BRANCH}"
|
||||
SRCREV = "${IPC_TRANSPORT_SRCREV}"
|
||||
PV = "02.00.00.01"
|
||||
|
||||
INC_PR = "r1"
|
||||
Reference in New Issue
Block a user