summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOpenGnSys Support Team <soporte-og@soleta.eu>2024-05-14 11:49:54 +0200
committerOpenGnSys Support Team <soporte-og@soleta.eu>2024-05-14 11:49:54 +0200
commitb9ca7278a9501119eb4690cdf603093d993c5e39 (patch)
treebfab694ef0aecb8dcc2a2a17b34fb1ebcda7f478 /src
parent3eb4332b380fcd00118c8205d064e6f235b2f9d9 (diff)
live: parttypes: add EFI partition type in MBR partition scheme
Add 0xef partition type for EFI in MBR.
Diffstat (limited to 'src')
-rw-r--r--src/live/parttypes.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/live/parttypes.py b/src/live/parttypes.py
index b86bf19..eab6324 100644
--- a/src/live/parttypes.py
+++ b/src/live/parttypes.py
@@ -27,6 +27,7 @@ DOS_PARTTYPES = {
'NTFS': 0x07,
'HFS': 0xaf,
'FAT32': 0x0b,
+ 'EFI': 0xef,
}