Updated config to use hexidecimal for sfdisk

This commit is contained in:
2Shirt 2020-01-24 12:27:13 -07:00
parent 9c95dcbd5c
commit 568483d49c
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -56,9 +56,9 @@ PARTITION_TYPES = {
'EXFAT': 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7', # Basic Data Partition
},
'MBR': {
'EXFAT': 7, # 0x7
'NTFS': 7, # 0x7
'VFAT': 11, # 0xb
'EXFAT': '7',
'NTFS': '7',
'VFAT': 'b',
},
}