From 8ee9b564a994b46d399d5d4f37f4645ea57d8309 Mon Sep 17 00:00:00 2001 From: nakst <> Date: Fri, 15 Oct 2021 16:16:08 +0100 Subject: [PATCH] fs ignore mbr if it has no partitions --- kernel/files.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/files.cpp b/kernel/files.cpp index 83178b8..4dbdcfa 100644 --- a/kernel/files.cpp +++ b/kernel/files.cpp @@ -1734,15 +1734,18 @@ bool FSCheckMBR(KBlockDevice *device) { MBRPartition partitions[4]; if (MBRGetPartitions(device->signatureBlock, device->information.sectorCount, partitions)) { + bool foundAny = false; + for (uintptr_t i = 0; i < 4; i++) { if (partitions[i].present) { KernelLog(LOG_INFO, "FS", "MBR partition", "Found MBR partition %d with offset %d and count %d.\n", i, partitions[i].offset, partitions[i].count); FSPartitionDeviceCreate(device, partitions[i].offset, partitions[i].count, ES_FLAGS_DEFAULT, EsLiteral("MBR partition")); + foundAny = true; } } - return true; + return foundAny; } else { return false; }