mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-29 03:43:23 +08:00
update docs
This commit is contained in:
parent
7151f3fd50
commit
326547281d
2 changed files with 7 additions and 2 deletions
2
Makefile
2
Makefile
|
@ -112,6 +112,8 @@ help:
|
|||
@echo "+ all - Make all targets: bootrom, fullimage and OS-specific host tools"
|
||||
@echo "+ clean - Clean in all targets"
|
||||
@echo "+ .../clean - Clean in specified target and its deps, e.g. bootrom/clean"
|
||||
@echo "+ (un)install - Install/uninstall Proxmark files in the system, default to /usr/local/share,
|
||||
@echo " else provide a PREFIX. See Maintainers.md for more options"
|
||||
@echo
|
||||
@echo "+ bootrom - Make bootrom"
|
||||
@echo "+ fullimage - Make armsrc fullimage (includes fpga)"
|
||||
|
|
|
@ -29,7 +29,10 @@ That should be a good start for you to create your package :)
|
|||
|
||||
It's possible to add other firmwares as well with tagged names (`FWTAG=<mytag>`), e.g. here we're compiling another image for non-RDV4 devices:
|
||||
|
||||
`make -j fullimage/install DESTDIR=build PREFIX=/usr PLATFORM=PM3OTHER PLATFORM_EXTRAS= FWTAG=other`
|
||||
```
|
||||
make -j fullimage PLATFORM=PM3OTHER PLATFORM_EXTRAS=
|
||||
make fullimage/install PLATFORM=PM3OTHER PLATFORM_EXTRAS= DESTDIR=build PREFIX=/usr FWTAG=other
|
||||
```
|
||||
|
||||
and it will be added along the other firmware as:
|
||||
|
||||
|
@ -52,7 +55,7 @@ Default compiler is gcc but you can use clang for the non-ARM parts with e.g. `m
|
|||
* `make mfkey/install`
|
||||
* `make nonce2key/install`
|
||||
* `make fpga_compress/install` (dummy)
|
||||
* some shared content installation handled by the root Makefile, which can't be installed alone:
|
||||
* `make common/install` (some shared content installation:)
|
||||
* `pm3-*` scripts
|
||||
* `tools/jtag_openocd`, `traces`
|
||||
* `doc/md`, `doc/*.md`
|
||||
|
|
Loading…
Reference in a new issue