summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r--meta/recipes-kernel/lttng/lttng-ust/lttng-ust-add-support-for-aarch64_be.patch17
-rw-r--r--meta/recipes-kernel/lttng/lttng-ust_git.bb4
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 @@
1lttng-ust: add support for aarch64_be
2
3Upstream-Status: Pending
4
5Signed-off-by: Tudor Florea <tudor.florea@enea.com>
6
7diff --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"
23PV = "2.7.1+git${SRCPV}" 23PV = "2.7.1+git${SRCPV}"
24 24
25SRC_URI = "git://git.lttng.org/lttng-ust.git;branch=stable-2.7 \ 25SRC_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
28S = "${WORKDIR}/git" 30S = "${WORKDIR}/git"
29 31