diff options
-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)" | ||