crosvm/vm_control/Cargo.toml
Dylan Reid ef7352f208 Remove the device manager and use the new resource allocator
Allow IRQs to be assigned before creating device manager.

For PCI, we need to add devices with interrupts before MMIO setup. Add
the ability to tell the architecture device manager about IRQs that we
have stolen.

There was only one function in device_manager and all of its state is
now delegated to the resource allocator, remove it.

Change-Id: I9afa0e3081a20cb024551ef18ae34fe76a1ef39d
Reviewed-on: https://chromium-review.googlesource.com/1089720
Commit-Ready: Dylan Reid <dgreid@chromium.org>
Tested-by: Dylan Reid <dgreid@chromium.org>
Reviewed-by: Sonny Rao <sonnyrao@chromium.org>
2018-06-29 17:50:17 -07:00

13 lines
269 B
TOML

[package]
name = "vm_control"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
[dependencies]
byteorder = "*"
data_model = { path = "../data_model" }
kvm = { path = "../kvm" }
libc = "*"
sys_util = { path = "../sys_util" }
resources = { path = "../resources" }