mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-18 17:14:41 -04:00
[core] enable FAT32 for Windows install when dual UEFI+BIOS is enabled
This commit is contained in:
parent
5b544c6a4a
commit
d7e977e1f1
3 changed files with 10 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue