From 81f8939cb16a0955ce1f3c89d99d1ebda5eacbfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sat, 3 Oct 2020 12:39:26 +0100 Subject: [PATCH] Add a new type of partition table "none". This would be useful for block devices without partition table. --- src/core/partitiontable.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/partitiontable.h b/src/core/partitiontable.h index e94a015..19bc21e 100644 --- a/src/core/partitiontable.h +++ b/src/core/partitiontable.h @@ -57,7 +57,8 @@ public: pc98, amiga, sun, - vmd /* Volume Manager Device */ + vmd, /* Volume Manager Device */ + none, /* Single FileSystem devices */ }; /** Partition flags */