summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorDylan Reid <dgreid@chromium.org>2017-10-06 15:30:34 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-10-09 17:39:04 -0700
commit94bf1bf6b4a7791757937e2ffb2a81e797b82922 (patch)
tree386430a70c5fe176d8ae981aa1ca9b5bfc2d346f /src/main.rs
parentd0c9adc642fc968cb347952eed1d7fd0d0a8e80e (diff)
downloadcrosvm-94bf1bf6b4a7791757937e2ffb2a81e797b82922.tar
crosvm-94bf1bf6b4a7791757937e2ffb2a81e797b82922.tar.gz
crosvm-94bf1bf6b4a7791757937e2ffb2a81e797b82922.tar.bz2
crosvm-94bf1bf6b4a7791757937e2ffb2a81e797b82922.tar.lz
crosvm-94bf1bf6b4a7791757937e2ffb2a81e797b82922.tar.xz
crosvm-94bf1bf6b4a7791757937e2ffb2a81e797b82922.tar.zst
crosvm-94bf1bf6b4a7791757937e2ffb2a81e797b82922.zip
Move vm_control to a top-level crate
Break out vm_control to a crate that will be able to used by more
modules. Having vm_control usable from outside crosvm makes it possible
to move the devices out of crosvm in a later commit.

Change-Id: I1f060700ed49b5d77519d55efa2430490d521256
Signed-off-by: Dylan Reid <dgreid@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/706558
Reviewed-by: Zach Reizner <zachr@chromium.org>
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 894d3db..a9ac82f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -17,12 +17,12 @@ extern crate net_sys;
 extern crate net_util;
 extern crate vhost;
 extern crate virtio_sys;
+extern crate vm_control;
 extern crate data_model;
 
 pub mod argument;
 pub mod hw;
 pub mod kernel_cmdline;
-pub mod vm_control;
 pub mod device_manager;
 
 use std::env::var_os;