8 KiB
Mac OS X - Homebrew automatic installation
Table of Contents
- Mac OS X - Homebrew automatic installation
- Table of Contents
- Homebrew (Mac OS X), developer installation
- Clone the Iceman repository
macOS Ventura Beta users
^Top
Users of macOS Ventura Beta can no longer use Xcode versions lower than 14.0. (Technically they can by Show Package Contents
and running /Contents/MacOS/Xcode
but this is not recommended or recognized by Brew installations)
Therefore you need to download Xcode 14.0 Beta and open it to install the correct Command Line Tools. (https://developer.apple.com/download/all/)
Important: you need to rename Xcode-beta.app
to Xcode.app
(Note: If you still need Xcode 13.0 for signing and uploading apps to App Store rename Xcode.app
to Xcode-2.app
).
Continue installation as detailed below.
Apple Silicon (M1) Notes
^Top
Ensure Rosetta 2 is installed as it's currently needed to run arm-none-eabi-gcc
as it's delivered as a precombiled x86_64 binary.
If you see an error like:
bad CPU type in executable
Then you are missing Rosetta 2 and need to install it: /usr/sbin/softwareupdate --install-rosetta
Homebrew has changed their prefix to differentiate between native Apple Silicon and Intel compiled binaries. The Makefile attempts to account for this but please note that
whichever terminal or application you're using must be running under Architecture "Apple" as seen by Activity Monitor as all child processes inherit the Rosetta 2 environment of their parent. You can check which architecture you're currently running under with a uname -m
in your terminal.
Visual Studio Code still runs under Rosetta 2 and if you're developing for proxmark3 on an Apple Silicon Mac you might want to consider running the Insiders build which has support for running natively on Apple Silicon.
Install Proxmark3 tools
^Top
These instructions comes from @Chrisfu, where we got the proxmark3.rb scriptfile from. For further questions about Mac & Homebrew, contact @Chrisfu on Twitter
- Install XCode Command Line Tools if you haven't yet already done so:
xcode-select --install
- Install homebrew if you haven't yet already done so:
- Install xquartz:
brew install xquartz
- Tap this repo:
brew tap RfidResearchGroup/proxmark3
- Install Proxmark3:
brew install proxmark3
for stable releasebrew install --HEAD proxmark3
for latest non-stable from GitHub (use this if previous command fails)brew install --with-blueshark proxmark3
for blueshark support, stable releasebrew install --HEAD --with-blueshark proxmark3
for blueshark support, latest non-stable from GitHub (use this if previous command fails)brew install --with-generic proxmark3
: for generic (non-RDV4) devices (platform), stable releasebrew install --HEAD --with-generic proxmark3
: for generic (non-RDV4) devices (platform), latest non-stable from GitHub (use this if previous command fails)
For more info, go to https://github.com/RfidResearchGroup/homebrew-proxmark3
Upgrade HomeBrew tap formula
^Top
This method is useful for those looking to run bleeding-edge versions of iceman's fork. Keep this in mind when attempting to update your HomeBrew tap formula as this procedure could easily cause a build to break if an update is unstable on macOS.
Tested on macOS Mojave 10.14.4
Note: This assumes you have already installed iceman's fork from HomeBrew as mentioned above
Force HomeBrew to pull the latest source from github
brew upgrade --fetch-HEAD proxmark3
Flash the BOOTROM & FULLIMAGE
^Top
With your Proxmark3 unplugged from your machine, press and hold the button on your Proxmark3 as you plug it into a USB port. You can release the button, two of the four LEDs should stay on. You're in bootloader mode, ready for the next step. In case the two LEDs don't stay on when you're releasing the button, you've an old bootloader, start over and keep the button pressed during the whole flashing procedure.
In principle, the helper script pm3-flash-all
should auto-detect your port, so you can just try:
pm3-flash-all
If port detection failed, you'll have to call the flasher manually and specify the correct port:
proxmark3 /dev/tty.usbmodemiceman1 --flash --unlock-bootloader --image /usr/local/share/proxmark3/firmware/bootrom.elf --image /usr/local/share/proxmark3/firmware/fullimage.elf
Depending on the firmware version your Proxmark3 can also appear as:
/dev/tty.usbmodem881
When compiling and you didn't flash the device, the client will now warn that you have a full image that doesn't match the source code of your client. If you know what you are doing, you can ignore it.
Run the client
^Top
pm3
or, if the port doesn't get properly detected:
proxmark3 /dev/tty.usbmodemiceman1
Next steps
^Top
For the next steps, please read the following pages:
Homebrew (Mac OS X), developer installation
^Top
These instructions will show how to setup the environment on OSX to the point where you'll be able to clone and compile the repo by yourself, as on Linux, Windows, etc.
-
Install homebrew if you haven't yet already done so: http://brew.sh/
-
Install dependencies:
brew install readline qt5 pkgconfig coreutils
brew install RfidResearchGroup/proxmark3/arm-none-eabi-gcc
- (optional) Install makefile dependencies:
brew install recode
brew install astyle
Clone the Iceman repository
^Top
git clone https://github.com/RfidResearchGroup/proxmark3.git
cd proxmark3
Compile the project
^Top
Now you're ready to follow the compilation instructions. From there, you can follow the original compilation instructions. Take extra note to instructions if you don't have a Proxmark3 RDV4 device.
To flash on OS X, better to enter the bootloader mode manually, else you may experience errors.
the button trick
^Top
With your Proxmark3 unplugged from your machine, press and hold the button on your Proxmark3 as you plug it into a USB port. You can release the button, two of the four LEDs should stay on. You're in bootloader mode, ready for the next step. In case the two LEDs don't stay on when you're releasing the button, you've an old bootloader, start over and keep the button pressed during the whole flashing procedure.
Run it
^Top
To use the compiled client, you can use pm3
script, it is a wrapper of the proxmark3 client that handles automatic detection of your proxmark.
pm3
If you want to manually select serial port, remember that the Proxmark3 port is /dev/tty.usbmodemiceman1
, so commands become:
proxmark3 /dev/ttyACM0 => proxmark3 /dev/tty.usbmodemiceman1