From b9ca7278a9501119eb4690cdf603093d993c5e39 Mon Sep 17 00:00:00 2001 From: OpenGnSys Support Team Date: Tue, 14 May 2024 11:49:54 +0200 Subject: live: parttypes: add EFI partition type in MBR partition scheme Add 0xef partition type for EFI in MBR. --- src/live/parttypes.py | 1 + 1 file changed, 1 insertion(+) 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, } -- cgit v1.2.3-18-g5258