javaJake
Jacob Godserv
Something for Pandora developers to consider: http://www.plugcompu.../Enabling_UBIFS
Quoting the page:
Why UBIFS instead of JFFS2?
Because it's fast! Also, in theory, the UBI layer should be even smarter than JFFS2 about wear-levelling. But mainly because it's really fast. For reference:
Compared to:
Quoting the page:
Why UBIFS instead of JFFS2?
Because it's fast! Also, in theory, the UBI layer should be even smarter than JFFS2 about wear-levelling. But mainly because it's really fast. For reference:
Code:
# Mounting a JFFS2 rootfs from /dev/mtdblock2
root# mount -t jffs2 /dev/mtdblock2 /mnt/nand
43.396s total
Code:
# Mounting an UBIFS rootfs from the same NAND partition
root# ubiattach /dev/ubi_ctrl -m 2 && mount -t ubifs ubi0:rootfs /mnt/nand
1.488s total