From 12e7da5b1cd730d7eeb7488e99676c3423d4547b Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Fri, 15 Apr 2016 15:10:14 +0200 Subject: [PATCH] Add LUKS role. Both open and closed LUKS "filesystems" should use this. --- src/core/partitionrole.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/partitionrole.h b/src/core/partitionrole.h index 4c8c84a..1834148 100644 --- a/src/core/partitionrole.h +++ b/src/core/partitionrole.h @@ -41,6 +41,7 @@ public: Extended = 2, /**< Extended */ Logical = 4, /**< Logical inside an extended */ Unallocated = 8, /**< No real Partition, just unallocated space */ + LUKS = 16, Any = 255 /**< In case we're looking for a Partition with a PartitionRole, any will do */ };