diff options
author | Nick Kralevich <nnk@google.com> | 2013-07-09 18:06:11 -0700 |
---|---|---|
committer | Nick Kralevich <nnk@google.com> | 2013-07-09 18:06:11 -0700 |
commit | f4c1512db8f0d2fd19d80487d96db3af7ceaacb5 (patch) | |
tree | 9b99c9e756ad28575aa80b1f01fccb94e7eb3d21 /rootdir | |
parent | fafcabd0dd4432de3c7f5956edec23f6ed241b56 (diff) | |
download | system_core-f4c1512db8f0d2fd19d80487d96db3af7ceaacb5.zip system_core-f4c1512db8f0d2fd19d80487d96db3af7ceaacb5.tar.gz system_core-f4c1512db8f0d2fd19d80487d96db3af7ceaacb5.tar.bz2 |
use ext4 instead of yaffs
This is needed to allow the emulator to use ext4 images.
Bug: https://code.google.com/p/android/issues/detail?id=38561
Change-Id: I02fde6382ad67cf7f4f3b695396841f70bb9301d
Diffstat (limited to 'rootdir')
-rw-r--r-- | rootdir/init.rc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rootdir/init.rc b/rootdir/init.rc index 5206cd1..065a823 100644 --- a/rootdir/init.rc +++ b/rootdir/init.rc @@ -134,10 +134,10 @@ loglevel 3 on fs # mount mtd partitions # Mount /system rw first to give the filesystem a chance to save a checkpoint - mount yaffs2 mtd@system /system - mount yaffs2 mtd@system /system ro remount - mount yaffs2 mtd@userdata /data nosuid nodev - mount yaffs2 mtd@cache /cache nosuid nodev + mount ext4 mtd@system /system + mount ext4 mtd@system /system ro remount + mount ext4 mtd@userdata /data nosuid nodev + mount ext4 mtd@cache /cache nosuid nodev on post-fs # once everything is setup, no need to modify / |