JFFS2: Difference between revisions

From OLPC
Jump to navigation Jump to search
m (categorization)
(cleanup)
Line 1: Line 1:
'''JFFS2''' is the Journaling Flash File System version 2, jffs2 is a log-structured file system for flash memory devices and has support for NAND devices, also Hard links and compression algorithms like zlib, rubin, and rtime.
I'd like to see some more info on JFFS2, the compression algorithm (or algorithms) that will be used, and ideally, some data on how well various files might be expected to compress with examples. Some photos, diagrams, xml, python code, etc.


----
{{stub}}
'''JFFS2''' Is the Journalling Flash File System version 2, jffs2 is a log-structured file system for flash memory devices and has support for NAND devices, also Hard links and compresion algoritms like zlib, rubin and rtime.
Jffs2 also has a garbage collection algorithm that eliminates unnecessary I/O.
Jffs2 also has a garbage collection algorithm that eliminates unnecessary I/O.


{{stub}}
== Algoritms ==

== Algorithms ==


=== Zlib ===
=== Zlib ===
Line 17: Line 16:


=== rtime ===
=== rtime ===
This is a simple algorithm that often manages to squeeze extra few
This is a simple algorithm that often manages to squeeze extra few
bytes from data already compressed with gzip
bytes from data already compressed with gzip


== Links ==
== Links ==
*[http://en.wikipedia.org/wiki/JFFS2 JFFS2] at wikipedia
*[http://en.wikipedia.org/wiki/JFFS2 JFFS2] at Wikipedia
*[http://en.wikipedia.org/wiki/JFFS JFFS] at wikipedia
*[http://en.wikipedia.org/wiki/JFFS JFFS] at Wikipedia
*[http://sourceware.org/jffs2/jffs2-html/ Summary on JFFS]
*[http://sourceware.org/jffs2/jffs2-html/ Summary on JFFS]
*[http://developer.axis.com/software/jffs/ Homepage of JFFS at AXIS]
*[http://developer.axis.com/software/jffs/ Homepage of JFFS at AXIS]

Revision as of 05:09, 15 January 2007

JFFS2 is the Journaling Flash File System version 2, jffs2 is a log-structured file system for flash memory devices and has support for NAND devices, also Hard links and compression algorithms like zlib, rubin, and rtime.

Jffs2 also has a garbage collection algorithm that eliminates unnecessary I/O.

This article is a stub. You can help the OLPC project by expanding it.

Algorithms

Zlib

Lossless data-compression library,

rubin

This simple algorithm is faster than zlib but not quite as effective.

rtime

This is a simple algorithm that often manages to squeeze extra few bytes from data already compressed with gzip

Links