Home
last modified time | relevance | path

Searched refs:fs_type (Results 1 – 8 of 8) sorted by relevance

/DADK/dadk-config/src/rootfs/
H A Dfstype.rs37 let fs_type = r.unwrap(); in test_deserialize_fat32_lowercase()
38 assert_eq!(fs_type, FsType::Fat32); in test_deserialize_fat32_lowercase()
45 let fs_type = r.unwrap(); in test_deserialize_fat32_mixed_case()
46 assert_eq!(fs_type, FsType::Fat32); in test_deserialize_fat32_mixed_case()
36 let fs_type = r.unwrap(); test_deserialize_fat32_lowercase() localVariable
44 let fs_type = r.unwrap(); test_deserialize_fat32_mixed_case() localVariable
H A Dfstype.rs37 let fs_type = r.unwrap(); in test_deserialize_fat32_lowercase() localVariable
38 assert_eq!(fs_type, FsType::Fat32); in test_deserialize_fat32_lowercase()
45 let fs_type = r.unwrap(); in test_deserialize_fat32_mixed_case() localVariable
46 assert_eq!(fs_type, FsType::Fat32); in test_deserialize_fat32_mixed_case()
H A Dmod.rs39 pub fs_type: FsType,
57 fs_type = "fat32" in test_load_from_valid_file()
69 assert_eq!(config.metadata.fs_type, FsType::Fat32); in test_load_from_valid_str()
77 fs_type = "fat32" in test_load_from_valid_str()
84 assert_eq!(config.metadata.fs_type, FsType::Fat32); in test_load_from_invalid_fs_type()
91 fs_type = "ABCDE"
102 fs_type = "fat32" in test_load_from_valid_str_size_integer()
109 assert_eq!(config.metadata.fs_type, FsType::Fat32); in test_load_from_valid_str_size_bytes_str()
116 fs_type = "fat32" in test_load_from_valid_str_size_bytes_str()
123 assert_eq!(config.metadata.fs_type, FsTyp in test_load_from_invalid_file()
33 pub fs_type: FsType, global() field
[all...]
H A Dmod.rs39 pub fs_type: FsType, field
69 assert_eq!(config.metadata.fs_type, FsType::Fat32); in test_load_from_valid_file()
84 assert_eq!(config.metadata.fs_type, FsType::Fat32); in test_load_from_valid_str()
109 assert_eq!(config.metadata.fs_type, FsType::Fat32); in test_load_from_valid_str_size_integer()
123 assert_eq!(config.metadata.fs_type, FsType::Fat32); in test_load_from_valid_str_size_bytes_str()
/DADK/dadk/src/actions/rootfs/
H A Ddisk_img.rs208 let fs_type = ctx.rootfs().metadata.fs_type; in create_partitioned_image() localVariable
209 DiskFormatter::format_disk(&partition_path, &fs_type)?; in create_partitioned_image()
216 let fs_type = ctx.rootfs().metadata.fs_type; in create_unpartitioned_image() localVariable
217 DiskFormatter::format_disk(disk_image_path, &fs_type) in create_unpartitioned_image()
337 fn format_disk(disk_image_path: &PathBuf, fs_type: &FsType) -> Result<()> { in format_disk()
338 match fs_type { in format_disk()
/DADK/dadk-config/templates/config/
H A Drootfs.toml3 fs_type = "fat32"
H A Drootfs.toml3 fs_type = "fat32"
/DADK/tests/data/config/
H A Drootfs.toml3 fs_type = "fat32"