Fixed flasher now part of the client for autobuild

This commit is contained in:
gator96100 2019-09-12 15:43:08 +02:00
commit 8949718fa5
3 changed files with 18 additions and 3 deletions

View file

@ -27,7 +27,12 @@ echo ====================================================
echo FLASHING bootrom.elf + fullimage.elf, please wait... echo FLASHING bootrom.elf + fullimage.elf, please wait...
echo ==================================================== echo ====================================================
echo. echo.
flasher.exe com5 -b ..\firmware_win\bootrom\bootrom.elf ..\firmware_win\fullimage.elf
if exist flasher.exe (
flasher.exe com5 -b ..\firmware_win\bootrom\bootrom.elf ..\firmware_win\fullimage.elf
) else (
proxmark3.exe com5 --flash --unlock-bootloader --image ..\firmware_win\bootrom\bootrom.elf --image ..\firmware_win\fullimage.elf
)
pause. pause.

View file

@ -40,7 +40,12 @@ echo ====================================
echo FLASHING bootrom.elf, please wait... echo FLASHING bootrom.elf, please wait...
echo ==================================== echo ====================================
echo. echo.
flasher.exe com5 -b ..\firmware_win\bootrom\bootrom.elf
if exist flasher.exe (
flasher.exe com5 -b ..\firmware_win\bootrom\bootrom.elf
) else (
proxmark3.exe com5 --flash --unlock-bootloader --image ..\firmware_win\bootrom\bootrom.elf
)
pause. pause.

View file

@ -26,7 +26,12 @@ echo ======================================
echo FLASHING fullimage.elf, please wait... echo FLASHING fullimage.elf, please wait...
echo ====================================== echo ======================================
echo. echo.
flasher.exe com5 -b ..\firmware_win\fullimage.elf
if exist flasher.exe (
flasher.exe com5 -b ..\firmware_win\fullimage.elf
) else (
proxmark3.exe com5 --flash --unlock-bootloader --image ..\firmware_win\fullimage.elf
)
pause. pause.