nyx: part mgr: fix android super partition size

The size was incorrectly set before and it would cause unalignment of later partitions.
This commit is contained in:
CTCaer
2025-06-22 14:22:12 +03:00
committed by NaGa
parent 86bb96e01a
commit 93e3aa7830

View File

@@ -534,7 +534,7 @@ static void _prepare_and_flash_mbr_gpt()
// Android Dynamic, 5922MB
_make_part_name(part_name, "super", i);
_create_gpt_partition(gpt, &gpt_idx, &gpt_next_lba, 0xB91000, true, part_name, linux_part_guid, NULL, true);
_create_gpt_partition(gpt, &gpt_idx, &gpt_next_lba, 0xBA0000, true, part_name, linux_part_guid, NULL, true);
// Android Userdata
_make_part_name(part_name, "userdata", i);