diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2011-06-14 17:51:32 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-16 22:14:06 +0100 |
commit | 2163461ec94528ecf046a04edc5db3d2dd3a6b8b (patch) | |
tree | 8717e30ddb1ef6415fd98760ee62ee61b9c2d207 /meta | |
parent | dd91e6e77fbb57f052552dbc943c0f861550b342 (diff) | |
download | poky-2163461ec94528ecf046a04edc5db3d2dd3a6b8b.tar.gz |
systemtap: remove non-core COMPATIBLE_MACHINES
Systemtap only supports x86, x86-64 and powerpc at this point.
v2: updated to reflect comments from Koen Kooi and Phil Blundell to use
COMPATIBLE_HOST instead.
(From OE-Core rev: 835d817f1ba7b99167743fdb86ba80f3a07bd82d)
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_git.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index 8ac4c14862..e3e9264c5f 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.bb +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb | |||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | |||
5 | DEPENDS = "elfutils" | 5 | DEPENDS = "elfutils" |
6 | 6 | ||
7 | SRCREV = "4ab3a1863bf4f472acae7a809bf2b38d91658aa8" | 7 | SRCREV = "4ab3a1863bf4f472acae7a809bf2b38d91658aa8" |
8 | PR = "r1" | 8 | PR = "r2" |
9 | PV = "1.4+git${SRCPV}" | 9 | PV = "1.4+git${SRCPV}" |
10 | 10 | ||
11 | SRC_URI = "git://sources.redhat.com/git/systemtap.git;protocol=git \ | 11 | SRC_URI = "git://sources.redhat.com/git/systemtap.git;protocol=git \ |
@@ -23,7 +23,8 @@ EXTRA_OECONF = "--prefix=${D} --with-libelf=${STAGING_DIR_TARGET} --without-rpm | |||
23 | SRC_URI[md5sum] = "cb202866ed704c44a876d041f788bdee" | 23 | SRC_URI[md5sum] = "cb202866ed704c44a876d041f788bdee" |
24 | SRC_URI[sha256sum] = "8ffe35caec0d937bd23fd78a3a8d94b58907cc0de0330b35e38f9f764815c459" | 24 | SRC_URI[sha256sum] = "8ffe35caec0d937bd23fd78a3a8d94b58907cc0de0330b35e38f9f764815c459" |
25 | 25 | ||
26 | COMPATIBLE_MACHINE = "(qemux86|qemux86-64|qemuppc|emenlow|crownbay|atom-pc|n450)" | 26 | # systemtap doesn't work on arm and doesn't support mips |
27 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|powerpc.*)-linux' | ||
27 | 28 | ||
28 | S = "${WORKDIR}/git" | 29 | S = "${WORKDIR}/git" |
29 | 30 | ||