Update instructions for Termux

Remove "tested setups". This seems extraneous.
Direct users to F-Droid for Termux
Use correct directory from git clone
This commit is contained in:
s00se 2022-03-06 13:16:25 -07:00 committed by GitHub
parent 355bc88827
commit a4f15bd2db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,12 +4,6 @@
## Table of Contents ## Table of Contents
* [ Requirements ](#requirements) * [ Requirements ](#requirements)
* [ Notes ](#notes) * [ Notes ](#notes)
* [ Tested setups ](#tested-setups)
* OnePlus 5 (arm64, USB-C)
* Nexus 5X (arm64, USB-C)
* Xiaomi Mi Mix 2S (arm64, USB-C)
* OnePlus 5T (arm64, USB-C)
* Samsung Galaxy Tab S2 (arm64, MicroUSB)
* [ Setup ](#setup) * [ Setup ](#setup)
* [ Setting up Termux ](#setting-up-termux) * [ Setting up Termux ](#setting-up-termux)
* [ Install Proxmark3 package ](#install-proxmark3-package) * [ Install Proxmark3 package ](#install-proxmark3-package)
@ -46,44 +40,13 @@ From official Proxmark3 wiki:
> In any case, you would need a USB-C to A or USB-OTG cable to connect Proxmark3 to your Android device. Some Android devices may not supply enough power (USB-OTG = 100mA), and need a USB Y-cable and external battery, otherwise they will get strange failures. > In any case, you would need a USB-C to A or USB-OTG cable to connect Proxmark3 to your Android device. Some Android devices may not supply enough power (USB-OTG = 100mA), and need a USB Y-cable and external battery, otherwise they will get strange failures.
ref : https://github.com/Proxmark/proxmark3/wiki/android ref : https://github.com/Proxmark/proxmark3/wiki/android
## Tested setups
^[Top](#top)
- OnePlus 5 (arm64, USB-C)
- [OmniROM (Android 9)](https://www.omnirom.org/)
- [OmniROM kernel](https://www.omnirom.org/)
- [Magisk 19.3](https://github.com/topjohnwu/Magisk/)
- Nexus 5X (arm64, USB-C)
- [LineageOS (Android 8.1)](https://download.lineageos.org/)
- [LineageOS kernel](https://download.lineageos.org/)
- [Magisk 19.3](https://github.com/topjohnwu/Magisk/)
- Xiaomi Mi Mix 2S (arm64, USB-C)
- [LineageOS (Android 9.0)](https://download.lineageos.org/)
- [Magisk 20.3](https://github.com/topjohnwu/Magisk/)
- OnePlus 5T (arm64, USB-C)
- [LineageOS (Android 9.0)](https://download.lineageos.org/)
- [Franko Kernel](https://franco-lnx.net/)
- [Magisk 20.3](https://github.com/topjohnwu/Magisk/)
- Samsung Galaxy Tab S2 (arm64, MicroUSB)
- [LineageOS (Android 9.0)](https://download.lineageos.org/)
- [LineageOS kernel](https://download.lineageos.org/)
- [Magisk 20.3](https://github.com/topjohnwu/Magisk/)
## Setup ## Setup
^[Top](#top) ^[Top](#top)
### Setting up Termux ### Setting up Termux
^[Top](#top) ^[Top](#top)
Install [Termux](https://play.google.com/store/apps/details?id=com.termux) and start it Install [Termux](https://f-droid.org/en/packages/com.termux/) and start it
### Install Proxmark3 package which follows tagged releases ### Install Proxmark3 package which follows tagged releases
@ -93,16 +56,16 @@ Run the following commands:
``` ```
pkg install proxmark3 pkg install proxmark3
``` ```
### Install Proxmark3 package which offers a more up to date version from git `master` branch ### Optional: Install Proxmark3 package which offers a more up to date version from git `master` branch
Run the following commands: Run the following commands:
``` ```
pkg install proxmark3-git pkg install proxmark3-git
``` ```
### Optional: Building Proxmark3 client from source ### Optional: Building Proxmark3 client from source
``` ```
pkg install make clang readline libc++ git pkg install make clang readline libc++ git binutils
git clone https://github.com/RfidResearchGroup/proxmark3.git git clone https://github.com/RfidResearchGroup/proxmark3.git
cd proxmark cd proxmark3
make clean && make client make clean && make client
``` ```