From fbedd425b575868124577640fe02c9c0a73c4be3 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 1 Aug 2018 21:35:13 +0200 Subject: 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. --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/configuration.md') 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. -- cgit mrf-deployment