diff options
author | Jianchuan Wang <jianchuan.wang@windriver.com> | 2015-07-29 10:46:58 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-08-18 11:52:32 +0200 |
commit | 91e6dc888aa6f1e09d8a032d4ce556fc45c4b5db (patch) | |
tree | bc22c2d59acf3bceb5a221ae291b0ab131c1d53a /meta-oe/recipes-benchmark/libhugetlbfs/files/0001-Extend-arm32-support-to-include-BE-variants.patch | |
parent | d6167bd029e979b70393af2a2ff91c2faa9d6af4 (diff) | |
download | meta-openembedded-91e6dc888aa6f1e09d8a032d4ce556fc45c4b5db.tar.gz |
libhugetlbfs: Uprev to v2.19 from v2.18
The 5 patches which are deleted have been in the v2.19
Signed-off-by: Jianchuan Wang <jianchuan.wang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-benchmark/libhugetlbfs/files/0001-Extend-arm32-support-to-include-BE-variants.patch')
-rw-r--r-- | meta-oe/recipes-benchmark/libhugetlbfs/files/0001-Extend-arm32-support-to-include-BE-variants.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta-oe/recipes-benchmark/libhugetlbfs/files/0001-Extend-arm32-support-to-include-BE-variants.patch b/meta-oe/recipes-benchmark/libhugetlbfs/files/0001-Extend-arm32-support-to-include-BE-variants.patch deleted file mode 100644 index f6147cbf35..0000000000 --- a/meta-oe/recipes-benchmark/libhugetlbfs/files/0001-Extend-arm32-support-to-include-BE-variants.patch +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | From 5af6dec8764375ca4f13bd9fed96af090228351a Mon Sep 17 00:00:00 2001 | ||
2 | From: "Gary S. Robertson" <gary.robertson@linaro.org> | ||
3 | Date: Mon, 11 Aug 2014 11:06:04 -0500 | ||
4 | Subject: [libhugetlbfs][PATCH] Extend arm32 support to include BE variants | ||
5 | |||
6 | This patch applies the same technique used by Koen Kool in the following patch | ||
7 | which was accepted by the libhugetlbfs project: | ||
8 | |||
9 | [0a4f6] Add aarch64_be_support 2014-03-31 10:52:37 | ||
10 | |||
11 | It modifies the libhugetlbfs Makefile to mark all 32-bit arm architectures | ||
12 | as supported by the libhugetlbfs build. Builds and successful functional | ||
13 | tests have been performed for armv7a LE and BE runtime platforms. | ||
14 | |||
15 | This patch replaces and renders obsolete the following patch: | ||
16 | arm32-support.patch submitted by: Chunrong Guo <B40290@freescale.com> | ||
17 | |||
18 | Signed-off-by: Gary S. Robertson <gary.robertson@linaro.org> | ||
19 | --- | ||
20 | Makefile | 2 +- | ||
21 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
22 | |||
23 | diff --git a/Makefile b/Makefile | ||
24 | index 91502e1..ba79607 100644 | ||
25 | --- a/Makefile | ||
26 | +++ b/Makefile | ||
27 | @@ -59,7 +59,7 @@ ELF32 = elf32ppclinux | ||
28 | TMPLIB32 = lib | ||
29 | CPPFLAGS += -DPPC_NO_SEGMENTS | ||
30 | else | ||
31 | -ifeq ($(ARCH),armv7l) | ||
32 | +ifneq (,$(findstring arm,$(ARCH))) | ||
33 | CC32 = $(CC) | ||
34 | TMPLIB32 = lib | ||
35 | ELF32 += armelf_linux_eabi | ||
36 | -- | ||
37 | 1.7.9.5 | ||
38 | |||