diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2011-04-19 16:54:46 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-24 22:50:26 +0100 |
commit | 689009459e57e755629792e7f9e5d08ffea4eaf3 (patch) | |
tree | 13bc2a3d55a8346a8995600f09e8e693c3f60fad /meta/recipes-support/liburcu | |
parent | d08d8434be0c85fb51f8998a2451d901798039b7 (diff) | |
download | poky-689009459e57e755629792e7f9e5d08ffea4eaf3.tar.gz |
liburcu: upgrade from 0.5.2 to 0.5.4
Add arm into COMPATIBLE_HOST since liburcu started to support
pre-ARMv7 from 0.5.3 on.
(From OE-Core rev: 6cb6ee13374cf7ef6c110e278d7c4efa1b4a0253)
Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/liburcu')
-rw-r--r-- | meta/recipes-support/liburcu/liburcu_0.5.4.bb (renamed from meta/recipes-support/liburcu/liburcu_0.5.2.bb) | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/meta/recipes-support/liburcu/liburcu_0.5.2.bb b/meta/recipes-support/liburcu/liburcu_0.5.4.bb index fa9ddb3612..8e17e5db1c 100644 --- a/meta/recipes-support/liburcu/liburcu_0.5.2.bb +++ b/meta/recipes-support/liburcu/liburcu_0.5.4.bb | |||
@@ -11,17 +11,14 @@ PR = "r0" | |||
11 | 11 | ||
12 | SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2" | 12 | SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2" |
13 | 13 | ||
14 | SRC_URI[md5sum] = "a2978395806eed5d9a2de1e22efe70e0" | 14 | SRC_URI[md5sum] = "04147d24749be75200173859839207f7" |
15 | SRC_URI[sha256sum] = "2f22966fe4b00ef547976a31c1c6a7c7bea3449ffa838806d9610e7424e184dd" | 15 | SRC_URI[sha256sum] = "02aedbb16c16bd034e246d5c9637a9232be559c66fc2fe4eb28948e234bd89f1" |
16 | 16 | ||
17 | S = "${WORKDIR}/userspace-rcu-${PV}" | 17 | S = "${WORKDIR}/userspace-rcu-${PV}" |
18 | 18 | ||
19 | inherit autotools | 19 | inherit autotools |
20 | 20 | ||
21 | # liburcu, which is only used by lttng-ust, may not build on other | 21 | # liburcu, which is only used by lttng-ust, may not build on other |
22 | # platforms, e.g., on ARM, liburcu is only supported on ARMv7l while poky | 22 | # platforms, like MIPS. |
23 | # only supports armv4/armv4t/armv5te. 1 more example: liburcu doesn't support | 23 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|powerpc.*)-linux' |
24 | # MIPS now. | ||
25 | # So here let us first suppport x86/powerpc platforms now. | ||
26 | COMPATIBLE_HOST = '(x86_64.*|i.86.*|powerpc.*)-linux' | ||
27 | 24 | ||