diff options
author | Ting Liu <ting.liu@nxp.com> | 2016-05-18 14:05:20 +0800 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-08-12 11:41:02 -0300 |
commit | d71f12c5779e5ca3ac142f0964a3783124a9c06f (patch) | |
tree | 80377d30972ea39acb74f3b7782c7d9eadef9492 /recipes-extended/hyperrelay | |
parent | 89d0858107f6532a6a94710eedc2caf4286e1024 (diff) | |
download | meta-freescale-d71f12c5779e5ca3ac142f0964a3783124a9c06f.tar.gz |
hyperrelay: add recipe
Signed-off-by: Ting Liu <ting.liu@nxp.com>
Diffstat (limited to 'recipes-extended/hyperrelay')
-rw-r--r-- | recipes-extended/hyperrelay/hyperrelay_git.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-extended/hyperrelay/hyperrelay_git.bb b/recipes-extended/hyperrelay/hyperrelay_git.bb new file mode 100644 index 00000000..c8db3d6b --- /dev/null +++ b/recipes-extended/hyperrelay/hyperrelay_git.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | DESCRIPTION = "Userspace proxy agent for Code Warrrior HyperTrk" | ||
2 | LICENSE = "Freescale-EULA" | ||
3 | LIC_FILES_CHKSUM = "file://EULA;md5=c9ae442cf1f9dd6c13dfad64b0ffe73f" | ||
4 | |||
5 | SRC_URI = "git://git.freescale.com/ppc/sdk/hyperrelay.git;branch=sdk-v2.0.x" | ||
6 | SRCREV = "925af97359c2b86399561f1f97f2cb6ca0ccd344" | ||
7 | |||
8 | S = "${WORKDIR}/git" | ||
9 | |||
10 | CFLAGS += "\ | ||
11 | -Wall \ | ||
12 | -Wundef \ | ||
13 | -Wstrict-prototypes \ | ||
14 | -Wno-trigraphs \ | ||
15 | -fno-strict-aliasing \ | ||
16 | -fno-common \ | ||
17 | -O2 \ | ||
18 | -g \ | ||
19 | -fmessage-length=0 \ | ||
20 | -MMD \ | ||
21 | -MP \ | ||
22 | -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" \ | ||
23 | " | ||
24 | |||
25 | LDFLAGS_prepend = " -lpthread " | ||
26 | |||
27 | do_install() { | ||
28 | install -d ${D}${bindir} | ||
29 | oe_runmake install DESTDIR=${D} | ||
30 | } | ||
31 | |||
32 | COMPATIBLE_MACHINE = "(qoriq-ppc)" | ||