aboutsummaryrefslogtreecommitdiffstats
path: root/docs/syscall_descriptions.md
diff options
context:
space:
mode:
authorJouni Hogander <jouni.hogander@unikie.com>2019-11-19 13:12:54 +0200
committerDmitry Vyukov <dvyukov@google.com>2019-12-17 11:10:52 +0100
commit07bfd71dacb4775720708ca2fc39fef10c9f37c4 (patch)
tree13d1bb01110aacfefe8999a23ac3cd83b4a5e9fa /docs/syscall_descriptions.md
parentd13d795888186e87aeec9ce670986d183036c348 (diff)
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
Diffstat (limited to 'docs/syscall_descriptions.md')
-rw-r--r--docs/syscall_descriptions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/syscall_descriptions.md b/docs/syscall_descriptions.md
index dd9762823..7cf715250 100644
--- a/docs/syscall_descriptions.md
+++ b/docs/syscall_descriptions.md
@@ -139,7 +139,7 @@ make generate
make
```
-`$ARCH` is one of `amd64`, `386` `arm64`, `arm`, `ppc64le`.
+`$ARCH` is one of `amd64`, `386` `arm64`, `arm`, `ppc64le`, `mips64le`.
If the subsystem is supported on several architectures, then run `syz-extract` for each arch.
`$LINUX` should point to kernel source checkout, which is configured for the
corresponding arch (i.e. you need to run `make ARCH=arch someconfig && make ARCH=arch` there first,