bugfix and change to BIOS only installation
This commit is contained in:
parent
9be514fe3a
commit
e791e50567
@ -15,13 +15,6 @@ echo Format Media ...
|
|||||||
echo ====================
|
echo ====================
|
||||||
echo.
|
echo.
|
||||||
|
|
||||||
echo IMPORTANT HINT:
|
|
||||||
echo How is your target media formatted?
|
|
||||||
echo - use "exfat" for BIOS based installations only!
|
|
||||||
echo - use "fat32" for UEFI based installations only!
|
|
||||||
echo REASON: UEFI cannot read "exfat" filesystems and Windows setup will throw error code: 0x80042565
|
|
||||||
echo.
|
|
||||||
|
|
||||||
echo Showing disk list ...
|
echo Showing disk list ...
|
||||||
> %DPARTSCRIPT% (
|
> %DPARTSCRIPT% (
|
||||||
@echo.list disk
|
@echo.list disk
|
||||||
@ -61,6 +54,7 @@ set FS=fat32
|
|||||||
GOTO CONT2
|
GOTO CONT2
|
||||||
)
|
)
|
||||||
if /i "%FS%" EQU "exfat" (
|
if /i "%FS%" EQU "exfat" (
|
||||||
|
echo IMPORTANT: some old BIOS versions can't use exfat!
|
||||||
GOTO CONT2
|
GOTO CONT2
|
||||||
)
|
)
|
||||||
if /i "%FS%" EQU "" (
|
if /i "%FS%" EQU "" (
|
||||||
|
Binary file not shown.
@ -106,16 +106,14 @@ H = WindowHeight(0)
|
|||||||
; Shrink factor for buttons
|
; Shrink factor for buttons
|
||||||
S=0.1
|
S=0.1
|
||||||
|
|
||||||
; X and Y root
|
|
||||||
X0=W/2-(W*S/2)
|
|
||||||
Y0=H/2-(W*S/2)
|
|
||||||
|
|
||||||
; position calculations for the buttons
|
; position calculations for the buttons
|
||||||
|
X0=W/2-(W*S/2)
|
||||||
|
|
||||||
GAP=W*0.01
|
GAP=W*0.01
|
||||||
ButtonW=W*0.1
|
ButtonW=W*0.1
|
||||||
ButtonH=H*0.1
|
ButtonH=H*0.1
|
||||||
|
|
||||||
BX0=ButtonW*3-GAP*1.5
|
BX0=X0 - (ButtonW*3 + GAP*2)/2
|
||||||
BX1=BX0 + ButtonW + GAP
|
BX1=BX0 + ButtonW + GAP
|
||||||
BX2=BX1 + ButtonW + GAP
|
BX2=BX1 + ButtonW + GAP
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user