<listitem><para>Instructs <command>systemd-repart</command> to synthesize partition definitions from
the partition table in the given image or device. This option can be specified multiple times to
synthesize definitions from each of the given images or devices. The generated definitions will copy
- the partitions into the destination partition table. The copied partitions will have the same size,
- metadata and contents but might have a different partition number and might be located at a different
- offset in the destination partition table. These definitions can be combined with partition
- definitions read from regular partition definition files. The synthesized definitions take precedence
- over the definitions read from partition definition files.</para>
+ the partitions into the destination partition table. The copied partitions will have the same or a
+ slightly larger size (partitions may be enlarged to align to the new grain or sector size), metadata
+ and contents but might have a different partition number and might be located at a different offset
+ in the destination partition table. These definitions can be combined with partition definitions read
+ from regular partition definition files. The synthesized definitions take precedence over the
+ definitions read from partition definition files.</para>
<xi:include href="version-info.xml" xpointer="v255"/></listitem>
</varlistentry>
assert_in "$imgs/copy_to2 : start= 51200, size= 10240, type=${xbootldr_guid}," "$output"
}
+testcase_copy_from_respects_new_grain() {
+ local defs imgs output
+
+ defs="$(mktemp --directory "/tmp/test-repart.defs.XXXXXXXXXX")"
+ imgs="$(mktemp --directory "/var/tmp/test-repart.imgs.XXXXXXXXXX")"
+ # shellcheck disable=SC2064
+ trap "rm -rf '$defs' '$imgs'" RETURN
+ chmod 0755 "$defs"
+
+ truncate -s 80MiB "$imgs/copy_from"
+ sfdisk "$imgs/copy_from" <<EOF
+label: gpt
+
+size=20480, type=${root_guid}, uuid=837c3d67-21b3-478e-be82-7e7f83bf96d3
+size=10240, type=${xbootldr_guid}, uuid=4985c03e-eecb-4fe0-9f65-3f6345782214
+EOF
+
+ truncate -s 100MiB "$imgs/copy_to"
+ output=$(systemd-repart --offline="$OFFLINE" \
+ --empty=allow \
+ --definitions="$defs" \
+ --seed="$seed" \
+ --dry-run=no \
+ --json=pretty \
+ --copy-from="$imgs/copy_from" \
+ --grain-size=4194304 \
+ "$imgs/copy_to")
+
+ output=$(sfdisk --dump "$imgs/copy_to")
+
+ assert_in "$imgs/copy_to1 : start= 8192, size= 24576, type=${root_guid}," "$output"
+ assert_in "$imgs/copy_to2 : start= 32768, size= 16384, type=${xbootldr_guid}," "$output"
+}
+
testcase_dropin() {
local defs imgs output