aboutsummaryrefslogtreecommitdiffstats
path: root/docs/troubleshooting.md
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-09-19 11:00:40 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-09-19 16:44:54 +0200
commit62114d6064c895ae34f1ac232b2fdc94e7329dae (patch)
treee309d2fee71f6222cab66783b1498f325c78d5a3 /docs/troubleshooting.md
parent5b89a8780ff6f7e69f82765164cb77da68bb8544 (diff)
Makefile: build target binaries into separate dirs
We currently build binaries for all targets into bin. This makes mess in bin/ and does not allow testing of different archs. Build target binaries into bin/OS_ARCH/ subdirs. Host binaries are still built into bin/. Update #333 Update #324 Update #191
Diffstat (limited to 'docs/troubleshooting.md')
-rw-r--r--docs/troubleshooting.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md
index 4e78ceb80..ed6e66186 100644
--- a/docs/troubleshooting.md
+++ b/docs/troubleshooting.md
@@ -36,14 +36,13 @@ Here are some things to check if there are problems running syzkaller.
- If logging indicates problems with the executor program (e.g. `executor failure`),
try manually running a short sequence of system calls:
- - Build additional tools with `make all-tools`
- Copy `syz-executor` and `syz-execprog` into a running VM.
- In the VM run `./syz-execprog -executor ./syz-executor -debug sampleprog` where
sampleprog is a simple system call script (e.g. just containing `getpid()`).
- For example, if this reports that `clone` has failed, this probably indicates
that the test kernel does not include support for all of the required namespaces.
- In this case, running the `syz-execprog` test with the `-nobody=0` option fixes the problem,
- so the main configuration needs to be updated to set `dropprivs` to `false`.
+ In this case, running the `syz-execprog` test with the `-sandbox=setuid` option fixes the problem,
+ so the main configuration needs to be updated to set `sandbox` to `setuid`.
If none of the above helps, file a bug on [the bug tracker](https://github.com/google/syzkaller/issues)
or ask us directly on the syzkaller@googlegroups.com mailing list.