diff options
author | Tudor Florea <tudor.florea@enea.com> | 2016-02-24 04:40:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 11:33:01 +0000 |
commit | 8a0b99749d06f39d53fe2fdaf21a94015e280070 (patch) | |
tree | 40ecfa2a363b18e2fb415c83dac5cf0054912b18 /meta/recipes-kernel | |
parent | 6081c35bf4e1bd776f380bb9b5ecb57232cdfe58 (diff) | |
download | poky-8a0b99749d06f39d53fe2fdaf21a94015e280070.tar.gz |
lttng-ust: add support for aarch64_be
(From OE-Core rev: 4120bdfab3afb22bd6be68ca3bebff9d299a38ee)
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-ust/lttng-ust-add-support-for-aarch64_be.patch | 17 | ||||
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-ust_git.bb | 4 |
2 files changed, 20 insertions, 1 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-ust/lttng-ust-add-support-for-aarch64_be.patch b/meta/recipes-kernel/lttng/lttng-ust/lttng-ust-add-support-for-aarch64_be.patch new file mode 100644 index 0000000000..9b37a4a330 --- /dev/null +++ b/meta/recipes-kernel/lttng/lttng-ust/lttng-ust-add-support-for-aarch64_be.patch | |||
@@ -0,0 +1,17 @@ | |||
1 | lttng-ust: add support for aarch64_be | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Tudor Florea <tudor.florea@enea.com> | ||
6 | |||
7 | diff --ruN a/configure.ac b/configure.ac | ||
8 | --- a/configure.ac 2016-02-18 14:54:54.651713647 +0100 | ||
9 | +++ b/configure.ac 2016-02-18 14:56:11.057865297 +0100 | ||
10 | @@ -240,6 +240,7 @@ | ||
11 | s390x) NO_UNALIGNED_ACCESS=1 ;; | ||
12 | arm*) NO_UNALIGNED_ACCESS=1 ;; | ||
13 | aarch64) NO_UNALIGNED_ACCESS=1 ;; | ||
14 | + aarch64_be) NO_UNALIGNED_ACCESS=1 ;; | ||
15 | mips*) NO_UNALIGNED_ACCESS=1 ;; | ||
16 | tile*) NO_UNALIGNED_ACCESS=1 ;; | ||
17 | *) | ||
diff --git a/meta/recipes-kernel/lttng/lttng-ust_git.bb b/meta/recipes-kernel/lttng/lttng-ust_git.bb index 9ffe9bc8f5..15d925d29e 100644 --- a/meta/recipes-kernel/lttng/lttng-ust_git.bb +++ b/meta/recipes-kernel/lttng/lttng-ust_git.bb | |||
@@ -23,7 +23,9 @@ PE = "2" | |||
23 | PV = "2.7.1+git${SRCPV}" | 23 | PV = "2.7.1+git${SRCPV}" |
24 | 24 | ||
25 | SRC_URI = "git://git.lttng.org/lttng-ust.git;branch=stable-2.7 \ | 25 | SRC_URI = "git://git.lttng.org/lttng-ust.git;branch=stable-2.7 \ |
26 | file://lttng-ust-doc-examples-disable.patch" | 26 | file://lttng-ust-doc-examples-disable.patch \ |
27 | file://lttng-ust-add-support-for-aarch64_be.patch \ | ||
28 | " | ||
27 | 29 | ||
28 | S = "${WORKDIR}/git" | 30 | S = "${WORKDIR}/git" |
29 | 31 | ||