Difference between revisions of "Android File Systems"

From eLinux.org
Jump to: navigation, search
(EXT4: add info about now needing to do syncs)
Line 13: Line 13:
  
 
http://www.linuxfoundation.org/news-media/blogs/browse/2010/12/android-will-be-using-ext4-starting-gingerbread
 
http://www.linuxfoundation.org/news-media/blogs/browse/2010/12/android-will-be-using-ext4-starting-gingerbread
 +
 +
With ext4, you may need to explicitly sync the data to the file system, in
 +
order to make sure not to lose information.
 +
 +
See [http://android-developers.blogspot.com/2010/12/saving-data-safely.html this blog entry by Tim Bray] for information on this topic.

Revision as of 18:16, 14 December 2010

YAFFS

Android in most mobile phones up to version 2.2 (Froyo) use the YAFFS2 filesystem.

Here is some information about YAFFS2:

EXT4

According to this report by Ted Tso, version 2.3 (Gingerbread) will be using ext4

http://www.linuxfoundation.org/news-media/blogs/browse/2010/12/android-will-be-using-ext4-starting-gingerbread

With ext4, you may need to explicitly sync the data to the file system, in order to make sure not to lose information.

See this blog entry by Tim Bray for information on this topic.