diff options
author | Fathi Boudra <fathi.boudra@linaro.org> | 2014-02-05 17:10:14 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-08 21:00:31 +0000 |
commit | 1c2cbd3b54a9bf589d41c8320734a95af52c36d6 (patch) | |
tree | a20844052ccf92b2d4d60be572576c3498db3db8 /meta | |
parent | 3caf8e244ea94f62a93f3b40e73e15ea78fc2880 (diff) | |
download | openembedded-core-1c2cbd3b54a9bf589d41c8320734a95af52c36d6.tar.gz openembedded-core-1c2cbd3b54a9bf589d41c8320734a95af52c36d6.tar.bz2 openembedded-core-1c2cbd3b54a9bf589d41c8320734a95af52c36d6.zip |
systemtap: add aarch64 support
bump SRCREV to include the relevant commits for aarch64 support
update COMPATIBLE_HOST to include aarch64
cleanup md5sum/sha256sum since we use git
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_git.inc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.inc b/meta/recipes-kernel/systemtap/systemtap_git.inc index 9da5588a57..b87aa1ab49 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.inc +++ b/meta/recipes-kernel/systemtap/systemtap_git.inc @@ -1,7 +1,6 @@ LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" - -SRCREV = "aa7b1e00e6cb7058071ead0180de0541b1c6eccf" +SRCREV = "9190b3acfe706d3bfd66dec18133d28f98443321" PV = "2.4+git${SRCPV}" SRC_URI = "git://sourceware.org/git/systemtap.git \ @@ -11,11 +10,8 @@ SRC_URI = "git://sourceware.org/git/systemtap.git \ FILESPATH = "${FILE_DIRNAME}/systemtap" -SRC_URI[md5sum] = "cb202866ed704c44a876d041f788bdee" -SRC_URI[sha256sum] = "8ffe35caec0d937bd23fd78a3a8d94b58907cc0de0330b35e38f9f764815c459" - # systemtap doesn't support mips -COMPATIBLE_HOST = '(x86_64.*|i.86.*|powerpc.*|arm.*)-linux' +COMPATIBLE_HOST = '(x86_64|i.86|powerpc|arm|aarch64).*-linux' S = "${WORKDIR}/git" @@ -29,4 +25,3 @@ def get_optimization(d): return selected_optimization SELECTED_OPTIMIZATION := "${@get_optimization(d)}" - |