Searched refs:initrd_path (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/crosvm/e2e_tests/fixture/src/ |
H A D | vm.rs | 340 let initrd_path = local_path_from_url(initrd_url); in initiailize_artifacts() localVariable 341 if !initrd_path.exists() && initrd_url.scheme() != "file" { in initiailize_artifacts() 342 download_file(initrd_url.as_str(), &initrd_path).unwrap(); in initiailize_artifacts() 344 assert!(initrd_path.exists(), "{:?} does not exist", initrd_path); in initiailize_artifacts()
|
/aosp_15_r20/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | boot_image_utils.h | 46 void RepackGem5BootImage(const std::string& initrd_path,
|
D | boot_image_utils.cc | 409 void RepackGem5BootImage(const std::string& initrd_path, in RepackGem5BootImage() argument 415 std::ofstream final_rd(initrd_path, in RepackGem5BootImage()
|
/aosp_15_r20/external/crosvm/src/sys/ |
H A D | windows.rs | 2008 let initrd_image = if let Some(initrd_path) = &cfg.initrd_path { in setup_vm_components() 2010 File::open(initrd_path).with_exit_context(Exit::OpenInitrd, || { in setup_vm_components() 2011 format!("failed to open initrd {}", initrd_path.display()) in setup_vm_components()
|
/aosp_15_r20/external/crosvm/src/crosvm/sys/ |
H A D | linux.rs | 1256 let initrd_image = if let Some(initrd_path) = &cfg.initrd_path { in setup_vm_components() 1258 open_file_or_duplicate(initrd_path, OpenOptions::new().read(true)) in setup_vm_components() 1259 .with_context(|| format!("failed to open initrd {}", initrd_path.display()))?, in setup_vm_components()
|
/aosp_15_r20/external/crosvm/src/crosvm/ |
H A D | config.rs | 753 pub initrd_path: Option<PathBuf>, field 982 initrd_path: None, in default()
|
H A D | cmdline.rs | 3324 cfg.initrd_path = cmd.initrd; in try_from()
|