blob: d165616a1915d531ba5efca4d36455b1466ee4e9 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001Author: 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>
27Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
28
29---
30 data/tupletable | 1 +
31 1 file changed, 1 insertion(+)
32
33diff --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
45--
462.11.0
47
48