mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Add the BSD and Apache license. Make all crosvm references point to the BSD license. Add the right copyrights and identifier to our VMM code. Add Intel copyright to the vm-virtio and pci crates. Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
10 lines
209 B
Rust
10 lines
209 B
Rust
// Copyright © 2019 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
mod pci_common_config;
|
|
mod pci_device;
|
|
|
|
pub use pci_common_config::VirtioPciCommonConfig;
|
|
pub use pci_device::VirtioPciDevice;
|