diff options
author | Rashed Abdel-Tawab <rashed@linux.com> | 2018-07-29 19:47:50 -0700 |
---|---|---|
committer | Cosme Domínguez Díaz <cosme.ddiaz@gmail.com> | 2018-08-02 19:07:47 +0200 |
commit | fa465ad9b38a9a8f0d636be5b4011ba275e5d8af (patch) | |
tree | 03bd12449b2b1dba1f795f096bb1b19b259b6496 /BoardConfigCommon.mk | |
parent | b851b181286475c204cd966419f550207ed67150 (diff) |
msm8996-common: Set cache partition filesystem format
Without this, the build system generates a symlink to /data/cache instead
of using the actual partition, which will break OTAs on encrypted devices
or devices using Lineage recovery
Change-Id: Ie72fd1a6b2535292e042b73bcdc1fec93dfe9ed9
Diffstat (limited to 'BoardConfigCommon.mk')
-rw-r--r-- | BoardConfigCommon.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index 4da7e64..104d178 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -152,10 +152,11 @@ BOARD_HARDWARE_CLASS += \ # Partitions BOARD_BOOTIMAGE_PARTITION_SIZE := 67108864 +BOARD_CACHEIMAGE_FILE_SYSTEM_TYPE := ext4 BOARD_CACHEIMAGE_PARTITION_SIZE := 268435456 BOARD_RECOVERYIMAGE_PARTITION_SIZE := 67108864 -BOARD_SYSTEMIMAGE_PARTITION_SIZE := 3221225472 BOARD_SYSTEMIMAGE_FILE_SYSTEM_TYPE := ext4 +BOARD_SYSTEMIMAGE_PARTITION_SIZE := 3221225472 BOARD_USERDATAIMAGE_PARTITION_SIZE := 58132761600 BOARD_VENDORIMAGE_PARTITION_SIZE := 402653184 BOARD_VENDORIMAGE_FILE_SYSTEM_TYPE := ext4 |