[core] enable FAT32 for Windows install when dual UEFI+BIOS is enabled

This commit is contained in:
Pete Batard 2017-01-03 16:56:30 +00:00
parent 5b544c6a4a
commit d7e977e1f1
3 changed files with 10 additions and 6 deletions

View file

@ -1106,6 +1106,10 @@ static BOOL WritePBR(HANDLE hLogicalVolume)
if (!write_fat_32_ros_br(fp, 0)) break;
} else if ((bt == BT_ISO) && HAS_KOLIBRIOS(img_report)) {
if (!write_fat_32_kos_br(fp, 0)) break;
} else if ((bt == BT_ISO) && HAS_BOOTMGR(img_report)) {
if (!write_fat_32_pe_br(fp, 0)) break;
} else if ((bt == BT_ISO) && HAS_WINPE(img_report)) {
if (!write_fat_32_nt_br(fp, 0)) break;
} else {
if (!write_fat_32_br(fp, 0)) break;
}