systemd-bootchart: Add mips64 tuples

(From OE-Core rev: aa3ed11b270d8876d32f7c9b6a2453aab2e2da9d)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Khem Raj
2019-12-16 19:47:07 -08:00
committed by Richard Purdie
parent bd738b5e53
commit a16e357f26
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
Recognise mips64 n32/n64
These are supported in systemd now a days
Upstream-Status: Backport [https://github.com/systemd/systemd/commit/caf49b95b3a6efe9455078098c729d83b08e5206]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
--- a/src/architecture.h
+++ b/src/architecture.h
@@ -127,13 +127,22 @@ int uname_architecture(void);
# define native_architecture() ARCHITECTURE_SPARC
# define LIB_ARCH_TUPLE "sparc-linux-gnu"
# define PROC_CPUINFO_MODEL "cpu"
-#elif defined(__mips64__)
+#elif defined(__mips64) && defined(__LP64__)
# if __BYTE_ORDER == __BIG_ENDIAN
# define native_architecture() ARCHITECTURE_MIPS64
-# error "Missing LIB_ARCH_TUPLE for MIPS64"
+# define LIB_ARCH_TUPLE "mips64-linux-gnuabi64"
# else
# define native_architecture() ARCHITECTURE_MIPS64_LE
-# error "Missing LIB_ARCH_TUPLE for MIPS64_LE"
+# define LIB_ARCH_TUPLE "mips64el-linux-gnuabi64"
+# endif
+# define PROC_CPUINFO_MODEL "cpu model"
+#elif defined(__mips64)
+# if __BYTE_ORDER == __BIG_ENDIAN
+# define native_architecture() ARCHITECTURE_MIPS64
+# define LIB_ARCH_TUPLE "mips64-linux-gnuabin32"
+# else
+# define native_architecture() ARCHITECTURE_MIPS64_LE
+# define LIB_ARCH_TUPLE "mips64el-linux-gnuabin32"
# endif
# define PROC_CPUINFO_MODEL "cpu model"
#elif defined(__mips__)