diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-08-30 14:33:39 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2016-08-30 14:33:39 +0200 |
| commit | bc9b349bd77c6ccc224a8e7cf72e76595bfc0342 (patch) | |
| tree | fd5e3f485dbd6ee40caa52038a117aa9e26a2359 /vm/vm.go | |
| parent | 26a5cf9efa8d0fc4ffbf2f9810241d4fdead8e16 (diff) | |
vm/adb: support multiple adb devices
Device IDs are specified in "devices" config param.
Diffstat (limited to 'vm/vm.go')
| -rw-r--r-- | vm/vm.go | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -32,20 +32,20 @@ type Instance interface { } type Config struct { - Name string - Index int - Workdir string - Bin string - Initrd string - Kernel string - Cmdline string - Image string - Sshkey string - Executor string - ConsoleDev string - Cpu int - Mem int - Debug bool + Name string + Index int + Workdir string + Bin string + Initrd string + Kernel string + Cmdline string + Image string + Sshkey string + Executor string + Device string + Cpu int + Mem int + Debug bool } type ctorFunc func(cfg *Config) (Instance, error) |
