From 07bfd71dacb4775720708ca2fc39fef10c9f37c4 Mon Sep 17 00:00:00 2001 From: Jouni Hogander Date: Tue, 19 Nov 2019 13:12:54 +0200 Subject: Implement basic support for MIPS64LE Add basic stuff to enable MIPS64ELR2 target: - build - make extract - make generate - qemu execution - system call parsing from /proc/kallsyms --- executor/common_linux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'executor') diff --git a/executor/common_linux.h b/executor/common_linux.h index f333c41f1..23f830a8f 100644 --- a/executor/common_linux.h +++ b/executor/common_linux.h @@ -1229,6 +1229,8 @@ struct fs_image_segment { #define sys_memfd_create 279 #elif GOARCH_ppc64le #define sys_memfd_create 360 +#elif GOARCH_mips64le +#define sys_memfd_create 314 #endif static unsigned long fs_image_segment_check(unsigned long size, unsigned long nsegs, long segments) -- cgit mrf-deployment