hos: set proper exo hos version for 12.1.0

Even if 12.0.0 one is api compatible, there was a master key change on 12.1.0.
This commit is contained in:
CTCaer
2023-03-31 09:17:13 +03:00
parent 3c3fcb29f9
commit b1112e0949
2 changed files with 5 additions and 1 deletions

View File

@@ -1026,7 +1026,7 @@ int hos_launch(ini_sec_t *cfg)
pkg2_merge_kip(&kip1_info, (pkg2_kip1_t *)mki->kip1);
// Check if FS is compatible with exFAT and if 5.1.0.
if (!ctxt.stock && (sd_fs.fs_type == FS_EXFAT || kb == KB_FIRMWARE_VERSION_500))
if (!ctxt.stock && (sd_fs.fs_type == FS_EXFAT || kb == KB_FIRMWARE_VERSION_500 || ctxt.pkg1_id->fuses == 13))
{
bool exfat_compat = _get_fs_exfat_compatible(&kip1_info, &ctxt.exo_ctx.hos_revision);