We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64b07be commit f64759bCopy full SHA for f64759b
build.rs
@@ -211,6 +211,7 @@ fn generate_guest_img_loading_functions(
211
/// kernel image
212
pub kernel: &'static [u8],
213
/// dtb image
214
+ #[allow(dead_code)]
215
pub dtb: Option<&'static [u8]>,
216
/// bios image
217
pub bios: Option<&'static [u8]>,
src/vmm/images/mod.rs
@@ -16,6 +16,7 @@ use crate::vmm::fdt::update_fdt;
16
use core::ptr::NonNull;
17
18
#[cfg(feature = "fs")]
19
+#[allow(unused_imports)]
20
pub use fs::open_image_file;
21
22
mod linux;
0 commit comments