mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 05:43:23 -07:00
Initial commit for the firmware. Used the 20090306_ela version as baseline.
It is identical to the popular 20081211, with the doob addition (20090301), a linux client, and two additional commands for LF analysis. Let me know if you find issues here!
This commit is contained in:
parent
b811cc51f9
commit
6658905f18
91 changed files with 16661 additions and 0 deletions
5
cockpit/0setpath.bat
Normal file
5
cockpit/0setpath.bat
Normal file
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
set PATH=..\..\devkitARM\bin;..\..\devkitWIN\bin;%PATH%
|
||||
set INCLUDE=..\..\devkitWIN\include
|
||||
set LIB=..\..\devkitWIN\lib
|
||||
cmd.exe
|
5
cockpit/1makearm.bat
Normal file
5
cockpit/1makearm.bat
Normal file
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
cd ..\armsrc
|
||||
rem nmake clean
|
||||
nmake
|
||||
cd ..\cockpit
|
5
cockpit/2makeboot.bat
Normal file
5
cockpit/2makeboot.bat
Normal file
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
cd ..\bootrom
|
||||
rem nmake clean
|
||||
nmake
|
||||
cd ..\cockpit
|
5
cockpit/3makewin.bat
Normal file
5
cockpit/3makewin.bat
Normal file
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
cd ..\winsrc
|
||||
rem nmake clean
|
||||
nmake
|
||||
cd ..\cockpit
|
3
cockpit/4flashos.bat
Normal file
3
cockpit/4flashos.bat
Normal file
|
@ -0,0 +1,3 @@
|
|||
@echo off
|
||||
..\winsrc\prox.exe load ..\armsrc\obj\osimage.s19
|
||||
..\winsrc\prox.exe load ..\armsrc\obj\osimage.s19
|
3
cockpit/5makeall.bat
Normal file
3
cockpit/5makeall.bat
Normal file
|
@ -0,0 +1,3 @@
|
|||
call 1makearm.bat
|
||||
call 2makeboot.bat
|
||||
call 3makewin.bat
|
3
cockpit/prox.bat
Normal file
3
cockpit/prox.bat
Normal file
|
@ -0,0 +1,3 @@
|
|||
@echo off
|
||||
cd ..\winsrc
|
||||
call prox gui
|
Loading…
Add table
Add a link
Reference in a new issue