diff options
| author | Marco Vanotti <mvanotti@google.com> | 2019-03-28 16:37:57 -0700 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-03-29 07:41:51 +0100 |
| commit | e825006ce0f9e0e98cd04e1f25891ad5a733ab1e (patch) | |
| tree | c88cfedf61a0baed6426393614594082ad9c9558 /pkg/build/fuchsia.go | |
| parent | 14c58f8d239741c39ddab01a4f0e95787cf99cc3 (diff) | |
pkg/build: Add ssh tools for fuchsia.
This commit adds the "//bundles:tools" packages to the fuchsia build
used for syzkaller. This includes ssh tools, which includes scp.
TEST=I have tested this on syz-ci. Fuchsia is now able to pass the image
test.
Diffstat (limited to 'pkg/build/fuchsia.go')
| -rw-r--r-- | pkg/build/fuchsia.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/build/fuchsia.go b/pkg/build/fuchsia.go index cc2e202df..b363b4fb2 100644 --- a/pkg/build/fuchsia.go +++ b/pkg/build/fuchsia.go @@ -24,6 +24,7 @@ func (fu fuchsia) build(targetArch, vmType, kernelDir, outputDir, compiler, user product := fmt.Sprintf("%s.%s", "core", arch) if _, err := osutil.RunCmd(time.Hour, kernelDir, "scripts/fx", "set", product, "--args", `extra_authorized_keys_file="//.ssh/authorized_keys"`, + "--with-base", "//bundles:tools", "--build-dir", "out/"+arch); err != nil { return err } |
