Ajout dela structure MDT dans Infra-LAB

This commit is contained in:
2026-05-24 16:21:20 +02:00
parent fed8d42171
commit 049b03b4d4
522 changed files with 105109 additions and 0 deletions
@@ -0,0 +1,34 @@
@echo -on
@echo version v1.0.0
set BIOS_PROCESS %0
if x%1 == x"" then
echo Missing one or more parameters.
goto err
endif
set BIOS_PARAMETER %1
compress.efi %1
if not %lasterror% == 0 then
goto err
endif
if not exist compress.bin then
echo Missing one or more files.
goto err
endif
chglogo.efi compress.bin
if not %lasterror% == 0 then
goto err
endif
goto end
:err
exit /b 0xc000000000000001
:end