</example>
<example>
- <title>Create a data and verity partition from a OS tree</title>
+ <title>Create a data partition and corresponding verity partitions from a OS tree</title>
<para>Assuming we have an OS tree at /var/tmp/os-tree that we want to package in a root partition
- together with a matching verity partition, we can do so as follows:</para>
+ together with matching verity partitions, we can do so as follows:</para>
<para><programlisting># 50-root.conf
[Partition]
CopyFiles=/var/tmp/os-tree
Verity=data
VerityMatchKey=root
+Minimize=guess
</programlisting></para>
<para><programlisting># 60-root-verity.conf
# Explicitly set the hash and data block size to 4K
VerityDataBlockSizeBytes=4096
VerityHashBlockSizeBytes=4096
+Minimize=best
+</programlisting></para>
+
+<para><programlisting># 70-root-verity-sig.conf
+[Partition]
+Type=root-verity-sig
+Verity=signature
+VerityMatchKey=root
</programlisting></para>
</example>