blob: d165616a1915d531ba5efca4d36455b1466ee4e9 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001Author: Krishnanjanappa, Jagadeesh <jagadeesh.krishnanjanappa@caviumnetworks.com>
2Date: Wed Apr 8 18:08:14 2015 +0530
3
4[PATCH] add armeb triplet entry into triplettable.
5
6Cross-compling dpkg application for armeb fails with below error
7during configure task,
8
9(snip)
10 configure:23141: checking dpkg cpu type
11 configure:23148: result: armeb
12 configure:23150: WARNING: armeb not found in cputable
13 configure:23162: checking dpkg operating system type
14 configure:23169: result: linux-gnueabi
15 configure:23171: WARNING: linux-gnueabi not found in ostable
16 configure:23183: checking dpkg architecture name
17 configure:23189: error: cannot determine host dpkg architecture
18-- CUT --
19
20the required combination of "gnueabi-linux-armeb" was not found in
21the triplettable file thereby returning dpkg_arch as
22empty in configure script.
23
24Upstream-Status: Pending
25
26Signed-off-by: Krishnanjanappa, Jagadeesh <jagadeesh.krishnanjanappa@caviumnetworks.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
Patrick Williamsc0f7c042017-02-23 20:41:17 -060029---
Brad Bishopd7bf8c12018-02-25 22:55:05 -050030 data/tupletable | 1 +
Patrick Williamsc0f7c042017-02-23 20:41:17 -060031 1 file changed, 1 insertion(+)
32
Brad Bishopd7bf8c12018-02-25 22:55:05 -050033diff --git a/data/tupletable b/data/tupletable
34index b7802bec3..5f500f6ca 100644
35--- a/data/tupletable
36+++ b/data/tupletable
37@@ -12,6 +12,7 @@ base-musl-linux-<cpu> musl-linux-<cpu>
38 ilp32-gnu-linux-arm64 arm64ilp32
39 eabihf-gnu-linux-arm armhf
40 eabi-gnu-linux-arm armel
41+eabi-gnu-linux-armeb armeb
42 abin32-gnu-linux-mips64r6el mipsn32r6el
43 abin32-gnu-linux-mips64r6 mipsn32r6
44 abin32-gnu-linux-mips64el mipsn32el
Patrick Williamsc0f7c042017-02-23 20:41:17 -060045--
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500462.11.0
47
Patrick Williamsc0f7c042017-02-23 20:41:17 -060048