aboutsummaryrefslogtreecommitdiffstats
path: root/docs/configuration.md
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-08-01 21:35:13 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-08-02 16:57:32 +0200
commitfbedd425b575868124577640fe02c9c0a73c4be3 (patch)
tree80b942c87b1b68274573b3ef90a7091211e4769e /docs/configuration.md
parentd5b1542a54ed37d8b7c9a62bfc441893b509b198 (diff)
pkg/mgrconfig: move from syz-manager/mgrconfig
mgrconfig was used only by syz-manager initially, but now it's used by a dozen of packages and it's weird to import from under a binary dir. pkg/ is much more reasonable dir for a widely used helper package.
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index c87b0c3cb..036615f2c 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -2,7 +2,7 @@
The operation of the syzkaller `syz-manager` process is governed by a configuration file, passed at
invocation time with the `-config` option. This configuration can be based on the
-[example](/syz-manager/mgrconfig/testdata/qemu.cfg); the file is in JSON format with the
+[example](/pkg/mgrconfig/testdata/qemu.cfg); the file is in JSON format with the
following keys in its top-level object:
- `http`: URL that will display information about the running `syz-manager` process.
@@ -40,4 +40,4 @@ following keys in its top-level object:
- `cpu`: Number of CPUs to simulate in the VM (*not currently used*).
- `mem`: Amount of memory (in MiB) for the VM; this is passed as the `-m` option to `qemu-system-x86_64`.
-See also [config.go](/syz-manager/mgrconfig/mgrconfig.go) for all config parameters.
+See also [config.go](/pkg/mgrconfig/mgrconfig.go) for all config parameters.