Use mounting by UBI volumes character device in the examples,
instead of the old mounting way.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
<p>Example:</p>
<pre>
-$ mount -t ubifs -o no_chk_data_crc ubi0:rootfs /mnt/ubifs
+$ mount -o no_chk_data_crc /dev/ubi0_0 /mnt/ubifs
</pre>
<p>mounts UBIFS file-system to <code>/mnt/ubifs</code> and disables data CRC
ubimkvol /dev/ubi0 -N ubifs-vol -s 200MiB
# Mount UBIFS
-mount -t ubifs ubi0:ubifs-vol /mnt/ubifs
+mount -t ubifs /dev/ubi0_0 /mnt/ubifs
</pre>
<p>For more information about nandsim see
modprobe ubi mtd=0
# Mount UBIFS
-mount -t ubifs ubi0_0 /mnt/ubifs
+mount -t ubifs /dev/ubi0_0 /mnt/ubifs
</pre>
<p>Now you have the file-system in <code>/mnt/ubifs</code>. Use