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
This commit is contained in:
razorloves 2022-08-20 02:58:14 -05:00 committed by Alexander Winkowski
parent ccc1b7f640
commit 51c784b7c3
No known key found for this signature in database
GPG Key ID: 72762A66704CDE44

View File

@ -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