default set to fat32 - some old bioses have problems with exfat too!

This commit is contained in:
Michael H.G. Schmidt 2023-02-17 14:02:58 +01:00
parent 788e6ed610
commit adf220f11e

View File

@ -46,7 +46,7 @@ echo REASON: UEFI cannot read "exfat" filesystems and Windows setup will thro
set FS=
:askfs
echo.
set /p FS="Please select filesystem (exfat or fat32) [exfat]: "
set /p FS="Please select filesystem (fat32 or exfat) [fat32]: "
if /i "%FS%" EQU "fat32" (
echo IMPORTANT: maximum partition size for FAT32 is 32768!
echo maximum filesize for FAT32 is 4GB!
@ -56,7 +56,7 @@ set FS=
GOTO CONT2
)
if /i "%FS%" EQU "" (
set FS=exfat
set FS=fat32
GOTO CONT2
)
echo Please enter "exfat" or "fat32".