From 51c784b7c3c58c7979f64d4f76b07e39282fa1af Mon Sep 17 00:00:00 2001 From: razorloves Date: Sat, 20 Aug 2022 02:58:14 -0500 Subject: [PATCH] sm6250-common: Don't limit inodes on /system_ext This fixes the issue where the MindTheGapps zip install is incomplete due to /system_ext only having 5 free inodes. Before: ~$ df -h Filesystem Size Used Avail Use% Mounted on /dev/loop0 352M 323M 22M 94% /system_ext ~$ df -i Filesystem Inodes IUsed IFree IUse% Mounted on /dev/loop0 528 523 5 100% /system_ext After: ~$ df -h Filesystem Size Used Avail Use% Mounted on /dev/loop0 352M 323M 22M 94% /system_ext ~$ df -i Filesystem Inodes IUsed IFree IUse% Mounted on /dev/loop0 96000 523 95477 1% /system_ext Fixes: https://gitlab.com/LineageOS/issues/android/-/issues/5013 Change-Id: I4a1e9c10d5b8b23d19a4f71091ec743d472794dc --- BoardConfigCommon.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index 2303e92..7d2e910 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -129,6 +129,7 @@ BOARD_PRODUCTIMAGE_EXTFS_INODE_COUNT := -1 BOARD_PRODUCTIMAGE_PARTITION_RESERVED_SIZE := 1887436800 BOARD_SYSTEMIMAGE_EXTFS_INODE_COUNT := -1 BOARD_SYSTEMIMAGE_PARTITION_RESERVED_SIZE := 1887436800 +BOARD_SYSTEM_EXTIMAGE_EXTFS_INODE_COUNT := -1 BOARD_SYSTEM_EXTIMAGE_PARTITION_RESERVED_SIZE := 104857600 BOARD_VENDORIMAGE_PARTITION_RESERVED_SIZE := 104857600