live: add fat32 to get_parttype()

Use "Microsoft basic data partition" to store FAT32 in case of GPT partition
scheme and 0xB according in case of MBR partition scheme according to
documentation.
master
OpenGnSys Support Team 2024-04-22 12:36:07 +02:00
parent 84c2944bf3
commit 5ea6f73343
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ GPT_PARTTYPES = {
'NTFS': 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7',
'EFI': 'C12A7328-F81F-11D2-BA4B-00A0C93EC93B',
'HFS': '48465300-0000-11AA-AA11-00306543ECAC',
'FAT32': 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7',
}
DOS_PARTTYPES = {
@ -25,6 +26,7 @@ DOS_PARTTYPES = {
'CACHE': 0x83,
'NTFS': 0x07,
'HFS': 0xaf,
'FAT32': 0x0b,
}