Home
last modified time | relevance | path

Searched refs:disk_image_path (Results 1 – 2 of 2) sorted by relevance

/DADK/dadk/src/actions/rootfs/
H A Ddisk_img.rs9 let disk_image_path = ctx.disk_image_path(); in create() localVariable
10 if disk_image_path.exists() { in create()
16 disk_image_path.display() in create()
20 disk_path_safety_check(&disk_image_path)?; in create()
24 create_raw_img(&disk_image_path, image_size).expect("Failed to create raw disk image"); in create()
29 create_partitioned_image(ctx, &disk_image_path) in create()
31 create_unpartitioned_image(ctx, &disk_image_path) in create()
35 std::fs::remove_file(&disk_image_path).expect("Failed to remove disk image"); in create()
41 let disk_image_path = ctx.disk_image_path(); in delete() localVariable
42 if !disk_image_path.exists() { in delete()
[all …]
/DADK/dadk/src/context/
H A Dmod.rs88 pub fn disk_image_path(&self) -> PathBuf { in disk_image_path() method