summary refs log tree commit diff
path: root/arch/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'arch/src/lib.rs')
-rw-r--r--arch/src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/src/lib.rs b/arch/src/lib.rs
index bc326eb..795591a 100644
--- a/arch/src/lib.rs
+++ b/arch/src/lib.rs
@@ -2,6 +2,9 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
+pub mod fdt;
+
+extern crate byteorder;
 extern crate devices;
 extern crate io_jail;
 extern crate kernel_cmdline;
@@ -38,6 +41,7 @@ pub struct VmComponents {
     pub memory_mb: u64,
     pub vcpu_count: u32,
     pub kernel_image: File,
+    pub android_fstab: Option<File>,
     pub extra_kernel_params: Vec<String>,
     pub wayland_dmabuf: bool,
 }