Autobuild improvements & fixes

This commit is contained in:
gator96100 2021-01-18 20:04:21 +01:00
commit 52366b4cb5
13 changed files with 164 additions and 61 deletions

View file

@ -1 +0,0 @@
proxmark3 COM5

View file

@ -28,11 +28,8 @@ echo FLASHING bootrom.elf + fullimage.elf, please wait...
echo ====================================================
echo.
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
)
call client\setup.bat
client\flasher.exe com5 -b client\bootrom.elf client\fullimage.elf
pause.

View file

@ -41,11 +41,8 @@ echo FLASHING bootrom.elf, please wait...
echo ====================================
echo.
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
)
call client\setup.bat
client\flasher.exe com5 -b client\bootrom.elf
pause.

View file

@ -27,11 +27,8 @@ echo FLASHING fullimage.elf, please wait...
echo ======================================
echo.
if exist flasher.exe (
flasher.exe com5 -b ..\firmware_win\fullimage.elf
) else (
proxmark3.exe com5 --flash --unlock-bootloader --image ..\firmware_win\fullimage.elf
)
call client\setup.bat
client\flasher.exe com5 -b client\fullimage.elf
pause.

View file

@ -0,0 +1,3 @@
@echo off
call client\setup.bat
client\proxmark3 COM5

View file

@ -0,0 +1,6 @@
@echo off
set HOME=%~dp0
set QT_PLUGIN_PATH=%HOME%\libs\
set QT_QPA_PLATFORM_PLUGIN_PATH=%QT_PLUGIN_PATH%
set PATH=%QT_PLUGIN_PATH%;%PATH%
set MSYSTEM=MINGW64

View file

@ -1,2 +0,0 @@
[Paths]
Plugins=.

View file

@ -0,0 +1,6 @@
@echo off
set HOME=%~dp0
set QT_PLUGIN_PATH=%HOME%\libs\
set QT_QPA_PLATFORM_PLUGIN_PATH=%QT_PLUGIN_PATH%
set PATH=%QT_PLUGIN_PATH%;%QT_PLUGIN_PATH%shell\;%PATH%
set MSYSTEM=MINGW64

View file

@ -0,0 +1,5 @@
@echo off
cd client
call setup.bat
bash pm3-flash-all
pause

View file

@ -0,0 +1,5 @@
@echo off
cd client
call setup.bat
bash pm3-flash-bootrom
pause

View file

@ -0,0 +1,5 @@
@echo off
cd client
call setup.bat
bash pm3-flash-fullimage
pause

View file

@ -0,0 +1,5 @@
@echo off
cd client
call setup.bat
bash pm3
pause