summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChirayu Desai <cdesai@cyanogenmod.org>2013-07-13 21:08:02 +0530
committerChirayu Desai <cdesai@cyanogenmod.org>2013-07-13 21:08:02 +0530
commit7197530d22b3c140d485df4007f5a2b03eb06297 (patch)
treeed444507126dd45563ef17f329a77fa1d54285e3
parente5bdddf18ce2b28d4b9ced32413f54d96840e01e (diff)
downloadbuild-7197530d22b3c140d485df4007f5a2b03eb06297.zip
build-7197530d22b3c140d485df4007f5a2b03eb06297.tar.gz
build-7197530d22b3c140d485df4007f5a2b03eb06297.tar.bz2
emulator: use ext4 instead of yaffs
Squashed commit of the following: commit e4926d25008a2293fcab41929799bdadfd413535 Author: Nick Kralevich <nnk@google.com> Date: Fri Jul 12 20:28:59 2013 -0700 emulator: increase system partition to 550M Yes, 400M isn't enough. I can't believe it either. Change-Id: I7d3857f04bfda472af6a281017204672bb9c9940 commit 4b90ddf58fab3cf1164ef272ff696efa33d349cc Author: Nick Kralevich <nnk@google.com> Date: Fri Jul 12 13:44:48 2013 -0700 emulator: increase system partition size to 400M 300M is too small. Change-Id: Icbe4e76d6e5c8a50cc6e6d74e324335bc66b8466 commit 85a79283c0b8426cbd0350153c43484733ecef5c Author: Nick Kralevich <nnk@google.com> Date: Tue Jul 9 18:04:51 2013 -0700 use ext4 instead of yaffs for the emulator Bug: https://code.google.com/p/android/issues/detail?id=38561 Change-Id: I7c605457b485d169654263caf55eb7d5a9a60c2e Change-Id: I3baedb5ecb0dd63c71ae36554173b3ebf5c0d3b0
-rw-r--r--target/board/generic/BoardConfig.mk8
-rw-r--r--target/board/generic_mips/BoardConfig.mk8
-rw-r--r--target/board/generic_x86/BoardConfig.mk8
3 files changed, 24 insertions, 0 deletions
diff --git a/target/board/generic/BoardConfig.mk b/target/board/generic/BoardConfig.mk
index 415bdc6..9749d2e 100644
--- a/target/board/generic/BoardConfig.mk
+++ b/target/board/generic/BoardConfig.mk
@@ -45,3 +45,11 @@ BUILD_EMULATOR_OPENGL_DRIVER := true
# Build and enable the OpenGL ES View renderer. When running on the emulator,
# the GLES renderer disables itself if host GL acceleration isn't available.
USE_OPENGL_RENDERER := true
+
+TARGET_USERIMAGES_USE_EXT4 := true
+BOARD_SYSTEMIMAGE_PARTITION_SIZE := 576716800
+BOARD_USERDATAIMAGE_PARTITION_SIZE := 209715200
+BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
+BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
+BOARD_FLASH_BLOCK_SIZE := 512
+TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
diff --git a/target/board/generic_mips/BoardConfig.mk b/target/board/generic_mips/BoardConfig.mk
index 8c2371f..3d9f15b 100644
--- a/target/board/generic_mips/BoardConfig.mk
+++ b/target/board/generic_mips/BoardConfig.mk
@@ -51,3 +51,11 @@ BUILD_EMULATOR_OPENGL := true
# Build and enable the OpenGL ES View renderer. When running on the emulator,
# the GLES renderer disables itself if host GL acceleration isn't available.
USE_OPENGL_RENDERER := true
+
+TARGET_USERIMAGES_USE_EXT4 := true
+BOARD_SYSTEMIMAGE_PARTITION_SIZE := 576716800
+BOARD_USERDATAIMAGE_PARTITION_SIZE := 209715200
+BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
+BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
+BOARD_FLASH_BLOCK_SIZE := 512
+TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
diff --git a/target/board/generic_x86/BoardConfig.mk b/target/board/generic_x86/BoardConfig.mk
index 4a9e5fe..ed7da38 100644
--- a/target/board/generic_x86/BoardConfig.mk
+++ b/target/board/generic_x86/BoardConfig.mk
@@ -33,3 +33,11 @@ BUILD_EMULATOR_OPENGL := true
# Build and enable the OpenGL ES View renderer. When running on the emulator,
# the GLES renderer disables itself if host GL acceleration isn't available.
USE_OPENGL_RENDERER := true
+
+TARGET_USERIMAGES_USE_EXT4 := true
+BOARD_SYSTEMIMAGE_PARTITION_SIZE := 576716800
+BOARD_USERDATAIMAGE_PARTITION_SIZE := 209715200
+BOARD_CACHEIMAGE_PARTITION_SIZE := 69206016
+BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4
+BOARD_FLASH_BLOCK_SIZE := 512
+TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true