mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
lz4 missing in some docs
This commit is contained in:
parent
03ae05a345
commit
662ce8403e
4 changed files with 6 additions and 5 deletions
|
@ -58,7 +58,8 @@ At the moment both are maintained because they don't perfectly overlap yet.
|
||||||
| `SKIPLUASYSTEM` | yes | **no** | |
|
| `SKIPLUASYSTEM` | yes | **no** | |
|
||||||
| lualibs/pm3_cmd.lua | yes | add_custom_command **but unused** | |
|
| lualibs/pm3_cmd.lua | yes | add_custom_command **but unused** | |
|
||||||
| lualibs/mfc_default_keys.lua | yes | add_custom_command **but unused** | |
|
| lualibs/mfc_default_keys.lua | yes | add_custom_command **but unused** | |
|
||||||
| dep lz4 | | | (in_common) not yet used, future. See `get_lz4.sh` for upstream fetch & patch |
|
| dep lz4 | sys | sys | + in_common only used by FW. See `get_lz4.sh` for upstream fetch & patch |
|
||||||
|
| lz4 detection | **none** | find, Cross:gitclone | |
|
||||||
| dep libm | sys | sys | |
|
| dep libm | sys | sys | |
|
||||||
| libm detection | **none** | **none** (1) | (1) cf https://cmake.org/pipermail/cmake/2019-March/069168.html ? |
|
| libm detection | **none** | **none** (1) | (1) cf https://cmake.org/pipermail/cmake/2019-March/069168.html ? |
|
||||||
| dep mbedtls | in_common | in_common | no sys lib: missing support for CMAC in def conf (btw no .pc available) |
|
| dep mbedtls | in_common | in_common | no sys lib: missing support for CMAC in def conf (btw no .pc available) |
|
||||||
|
|
|
@ -65,7 +65,7 @@ If you get some (non blocking) error at runtime such as _Gtk-Message: Failed to
|
||||||
^[Top](#top)
|
^[Top](#top)
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo pacman -Syu git base-devel readline bzip2 arm-none-eabi-gcc arm-none-eabi-newlib qt5-base bluez python --needed
|
sudo pacman -Syu git base-devel readline bzip2 lz4 arm-none-eabi-gcc arm-none-eabi-newlib qt5-base bluez python --needed
|
||||||
```
|
```
|
||||||
|
|
||||||
If you don't need the native Bluetooth support in the client, you can skip the installation of `bluez`.
|
If you don't need the native Bluetooth support in the client, you can skip the installation of `bluez`.
|
||||||
|
@ -78,7 +78,7 @@ If you don't need support for Python3 scripts in the Proxmark3 client, you can s
|
||||||
^[Top](#top)
|
^[Top](#top)
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo dnf install git make gcc gcc-c++ arm-none-eabi-gcc-cs arm-none-eabi-newlib readline-devel bzip2-devel qt5-qtbase-devel bluez-libs-devel python3-devel libatomic openssl-devel
|
sudo dnf install git make gcc gcc-c++ arm-none-eabi-gcc-cs arm-none-eabi-newlib readline-devel bzip2-devel lz4-devel qt5-qtbase-devel bluez-libs-devel python3-devel libatomic openssl-devel
|
||||||
```
|
```
|
||||||
|
|
||||||
If you don't need the native Bluetooth support in the client, you can skip the installation of `bluez-libs-devel`.
|
If you don't need the native Bluetooth support in the client, you can skip the installation of `bluez-libs-devel`.
|
||||||
|
|
|
@ -61,7 +61,7 @@ These instructions will show how to setup the environment on OSX to the point wh
|
||||||
2. Install dependencies:
|
2. Install dependencies:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo port install readline jansson lua52 python311 bzip2 openssl11 arm-none-eabi-gcc arm-none-eabi-binutils coreutils qt5 qt5-qtbase pkgconfig
|
sudo port install readline jansson lua52 python311 bzip2 lz4 openssl11 arm-none-eabi-gcc arm-none-eabi-binutils coreutils qt5 qt5-qtbase pkgconfig
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Clamp Python version for pkg-config
|
3. Clamp Python version for pkg-config
|
||||||
|
|
|
@ -21,6 +21,6 @@ make -j fpga_compress
|
||||||
cd client
|
cd client
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -DEMBED_BZIP2=1 ..
|
cmake -DEMBED_BZIP2=1 -DEMBED_LZ4=1 ..
|
||||||
make -j
|
make -j
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue