summaryrefslogtreecommitdiffstats
path: root/fastbootd/commands/partitions.h
diff options
context:
space:
mode:
Diffstat (limited to 'fastbootd/commands/partitions.h')
-rw-r--r--fastbootd/commands/partitions.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/fastbootd/commands/partitions.h b/fastbootd/commands/partitions.h
index f2d590f..9a6a88d 100644
--- a/fastbootd/commands/partitions.h
+++ b/fastbootd/commands/partitions.h
@@ -38,6 +38,11 @@
#define GPT_ENTRIES 128
#define GPT_NAMELEN 36
+#define GPT_FLAG_SYSTEM (1ULL << 0)
+#define GPT_FLAG_BOOTABLE (1ULL << 2)
+#define GPT_FLAG_READONLY (1ULL << 60)
+#define GPT_FLAG_DOAUTOMOUNT (1ULL << 63)
+
// it should be passed in little endian order
struct GPT_entry_raw {
uint8_t type_guid[16];