From 8f7bdd45b15cca7c20ffaf6e27e0ab2665ad040d Mon Sep 17 00:00:00 2001
From: CTCaer <ctcaer@gmail.com>
Date: Tue, 15 Sep 2020 19:07:16 +0300
Subject: [PATCH] hos: Report exFAT compatible if missing FS kip hashes

---
 bootloader/hos/hos.c | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/bootloader/hos/hos.c b/bootloader/hos/hos.c
index 2d5062a..5458be1 100644
--- a/bootloader/hos/hos.c
+++ b/bootloader/hos/hos.c
@@ -651,20 +651,26 @@ static bool _get_fs_exfat_compatible(link_t *info, bool *fs_is_510)
 		pkg2_get_ids(&kip_ids, &fs_ids_cnt);
 
 		for (fs_idx = 0; fs_idx < fs_ids_cnt; fs_idx++)
+		{
 			if (!memcmp(sha_buf, kip_ids[fs_idx].hash, 8))
+			{
+				// Check if it's 5.1.0.
+				if ((fs_idx & ~1) == 16)
+					*fs_is_510 = true;
+
+				// Check if FAT32-only.
+				if (fs_ids_cnt <= fs_idx && !(fs_idx & 1))
+					return false;
+
+				// FS is FAT32 + exFAT.
 				break;
-
-		// Check if it's 5.1.0.
-		if ((fs_idx & ~1) == 16)
-			*fs_is_510 = true;
-
-		// Return false if FAT32 only.
-		if (fs_ids_cnt <= fs_idx && !(fs_idx & 1))
-			return false;
+			}
+		}
 
 		break;
 	}
 
+	// Hash didn't match or FAT32 + exFAT.
 	return true;
 }