summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Sicleru <stefan.sicleru@enea.com>2015-12-15 16:15:43 +0100
committerTudor Florea <tudor.florea@enea.com>2015-12-17 02:24:44 +0100
commitd3a36c0e08242fe5d8a323f8a27f5ff05bbb5a71 (patch)
treeba6b62ec8d0084c9aff13b3643c333caddcd3569
parent021c5b1338696170f426699382063e7b3e2609f5 (diff)
downloadmeta-enea-bsp-arm-d3a36c0e08242fe5d8a323f8a27f5ff05bbb5a71.tar.gz
liburcu: add support for aarch64/aarch64_be
This is made up of two commits, ported from both poky and meta-hierofalcon: * poky, commit 75e5de6b1360bc566a607ee3330bed4c07b0b45e * meta-hierofalcon, 61217881665acd3e81a02e493e30ff943c157b02 Signed-off-by: Stefan Sicleru <stefan.sicleru@enea.com> Signed-off-by: Tudor Florea <tudor.florea@enea.com>
-rw-r--r--recipes-support/liburcu/liburcu/patch-to-support-aarch64-builds.patch19
-rw-r--r--recipes-support/liburcu/liburcu_0.8.4.bbappend5
2 files changed, 24 insertions, 0 deletions
diff --git a/recipes-support/liburcu/liburcu/patch-to-support-aarch64-builds.patch b/recipes-support/liburcu/liburcu/patch-to-support-aarch64-builds.patch
new file mode 100644
index 0000000..9db9390
--- /dev/null
+++ b/recipes-support/liburcu/liburcu/patch-to-support-aarch64-builds.patch
@@ -0,0 +1,19 @@
1liburcu: add support for aarch64/aarch64_be
2
3Upstream-Status: Pending
4
5Signed-off-by: Alexandru Vaduva <alexandru.vaduva@enea.com>
6Signed-off-by: George Nita <george.nita@enea.com>
7Signed-off-by: Stefan Sicleru <stefan.sicleru@enea.com>
8
9diff -Naur a/configure.ac b/configure.ac
10--- a/configure.ac 2015-08-14 15:50:56.267058228 +0200
11+++ b/configure.ac 2015-08-14 15:50:27.140296920 +0200
12@@ -79,6 +79,8 @@ AS_CASE([$host_cpu],
13 [arm*], [ARCHTYPE="arm"],
14 [mips*], [ARCHTYPE="mips"],
15 [tile*], [ARCHTYPE="gcc"],
16+ [aarch64], [ARCHTYPE="gcc"],
17+ [aarch64_be], [ARCHTYPE="gcc"],
18 [ARCHTYPE="unknown"]
19 )
diff --git a/recipes-support/liburcu/liburcu_0.8.4.bbappend b/recipes-support/liburcu/liburcu_0.8.4.bbappend
new file mode 100644
index 0000000..6834af1
--- /dev/null
+++ b/recipes-support/liburcu/liburcu_0.8.4.bbappend
@@ -0,0 +1,5 @@
1FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
2
3SRC_URI += "\
4 file://patch-to-support-aarch64-builds.patch \
5 "