Comments
Patch
@@ -36,6 +36,8 @@
<li><a href="ubi.html#L_flasher">How do I implement UBI flasher?</a></li>
<li><a href="ubi.html#L_bgt_thread">What does the "ubi_bgt0d" thread do?</a></li>
<li><a href="ubi.html#L_attach_faster">How do I speed up UBI initialization</a></li>
+ <li><a href="ubi.html#L_dynamic_vs_static">Why a dynamic volume is faster to access than a static volume of the
+same size?</a></li>
<li><a href="ubi.html#L_how_debug">How do I debug UBI?</a></li>
</ol>
@@ -704,6 +706,13 @@ can do about it but without re-designing. Here are some ideas</p>
here</a>. Indeed, it is easier to solve one problem at a time.</li>
</ul>
+<h2><a name="L_dynamic_vs_static">Why a dynamic volume is faster to
+access than a static volume of the same size?</a></h2>
+
+
+<p>A static UBI volume is designed to store short blobs of data like a
+configuration file. UBI holds a CRC of the hole static volume, so it
+needs more time to mount a static volume than a dynamic one.</p>
<h2><a name="L_how_debug">How do I debug UBI?</a></h2>
Signed-off-by: Bastian Ruppert <Bastian.Ruppert@Sewerin.de> --- faq/ubi.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)