summary refs log blame commit diff
path: root/devices/src/lib.rs
blob: 4b1a6a5786447b2999eb0b154d0c6c78f9d85d86 (plain) (tree)
1
2
3
4
5
6





                                                                         











                        
         
          
          
           
               
 
                                    
                         
                                 

                                 
// Copyright 2017 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Emulates virtual and hardware devices.

extern crate byteorder;
extern crate data_model;
extern crate libc;
extern crate net_sys;
extern crate net_util;
#[macro_use]
extern crate sys_util;
extern crate vhost;
extern crate virtio_sys;
extern crate vm_control;

mod bus;
mod cmos;
mod i8042;
mod proxy;
mod serial;
pub mod virtio;

pub use self::bus::{Bus, BusDevice};
pub use self::cmos::Cmos;
pub use self::i8042::I8042Device;
pub use self::proxy::ProxyDevice;
pub use self::serial::Serial;