diff options
Diffstat (limited to 'meta/recipes-kernel/trace-cmd/trace-cmd_git.bb')
-rw-r--r-- | meta/recipes-kernel/trace-cmd/trace-cmd_git.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-kernel/trace-cmd/trace-cmd_git.bb b/meta/recipes-kernel/trace-cmd/trace-cmd_git.bb new file mode 100644 index 0000000000..57d54d6683 --- /dev/null +++ b/meta/recipes-kernel/trace-cmd/trace-cmd_git.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | DESCRIPTION = "User interface to Ftrace" | ||
2 | LICENSE = "GPL" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
4 | |||
5 | DEPENDS = "glibc" | ||
6 | |||
7 | PR = r0 | ||
8 | PV = "1.0.4+git${SRCPV}" | ||
9 | |||
10 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git;protocol=git" | ||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | |||
14 | do_compile() { | ||
15 | oe_runmake ARCH="${ARCH}" CC="${CC}" LD="${LD}" prefix=${prefix} | ||
16 | } | ||
17 | |||
18 | do_install() { | ||
19 | oe_runmake ARCH="${ARCH}" CC="${CC}" LD="${LD}" \ | ||
20 | prefix=${prefix} DESTDIR=${D} install | ||
21 | } | ||