diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-05-14 11:49:54 +0200 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-05-14 11:49:54 +0200 |
commit | b9ca7278a9501119eb4690cdf603093d993c5e39 (patch) | |
tree | bfab694ef0aecb8dcc2a2a17b34fb1ebcda7f478 | |
parent | 3eb4332b380fcd00118c8205d064e6f235b2f9d9 (diff) |
live: parttypes: add EFI partition type in MBR partition scheme
Add 0xef partition type for EFI in MBR.
-rw-r--r-- | src/live/parttypes.py | 1 |
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, } |