From 96086878e03f2c3c0e64ff61eececfdc88c4284d Mon Sep 17 00:00:00 2001 From: Yogesh Khatri Date: Sat, 4 Sep 2021 11:21:40 +1000 Subject: [PATCH] Remove 3GB size logic for containers --- mac_apt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mac_apt.py b/mac_apt.py index febdf3a..be9badf 100644 --- a/mac_apt.py +++ b/mac_apt.py @@ -326,8 +326,8 @@ def FindMacOsPartitionInApfsContainer(img, vol_info, container_size, container_s else: # Search for macOS partition in volumes for vol in mac_info.apfs_container.volumes: - if vol.num_blocks_used * vol.container.block_size < 3000000000: # < 3 GB, cannot be a macOS root volume - continue + #if vol.num_blocks_used * vol.container.block_size < 3000000000: # < 3 GB, cannot be a macOS root volume + # continue mac_info.macos_FS = vol vol.dbo = mac_info.apfs_db if FindMacOsFiles(mac_info):