Home
last modified time | relevance | path

Searched refs:partition (Results 1 – 5 of 5) sorted by relevance

/DADK/dadk-config/templates/config/
H A Drootfs.toml7 [partition]
10 # If "none" is specified, no partition table will be created,
11 # and the entire disk will be treated as a single partition.
/DADK/tests/data/config/
H A Drootfs.toml7 [partition]
10 # If "none" is specified, no partition table will be created,
11 # and the entire disk will be treated as a single partition.
/DADK/dadk-config/tests/
H A Dtest_rootfs_config.rs3 rootfs::{partition::PartitionType, RootFSConfigFile},
21 assert_eq!(manifest.partition.partition_type, PartitionType::None); in test_load_rootfs_manifest_template()
/DADK/dadk-config/src/rootfs/
H A Dmod.rs2 pub mod partition; module
10 use partition::PartitionConfig;
18 pub partition: PartitionConfig, field
/DADK/dadk/src/actions/rootfs/
H A Ddisk_img.rs5 use dadk_config::rootfs::{fstype::FsType, partition::PartitionType};
28 let r = if ctx.rootfs().partition.image_should_be_partitioned() { in create()
72 let partitioned = ctx.rootfs().partition.image_should_be_partitioned(); in mount()
196 let part_type = ctx.rootfs().partition.partition_type; in create_partitioned_image()