From db965c16527add8ad6cf9ae14022d67f0b6a33d2 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Wed, 14 Feb 2018 10:31:14 -0600 Subject: [PATCH] mbr: Added note about limitations --- features/filesystem/bd/MBRBlockDevice.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/features/filesystem/bd/MBRBlockDevice.h b/features/filesystem/bd/MBRBlockDevice.h index d46cec475d..c44e5f854a 100644 --- a/features/filesystem/bd/MBRBlockDevice.h +++ b/features/filesystem/bd/MBRBlockDevice.h @@ -82,6 +82,11 @@ enum { * // the FAT filesystem in partition 1 * FATFileSystem fat("fat", &part1); * @endcode + * + * @note + * The MBR partition table is relatively limited: + * - At most 4 partitions are supported + * - Extended partitions are currently not supported and will error during init */ class MBRBlockDevice : public BlockDevice {