Skip to content

openSUSE Linux

Iceman edited this page Sep 3, 2017 · 7 revisions

This is a guide for compiling the Proxmark3 firmware on the Linux Distribution: openSUSE It has been verified working as of Suse 4.4 aarch64 release.

Preparing Proxmark3 Software

Open a terminal: Download and install the essentials to build Proxmark3 from source:

 sudo zypper install -t pattern devel_basis
 sudo zypper install git libreadline5 libusb-1_0-0 libusb-1_0-devel perl libqt4-devel readline5-devel 

gcc-arm-none-eabi

Frank Kunz has a page where you can download different ARM build chains, according to your version of openSUSE. https://software.opensuse.org/download.html?project=home%3Afrank_kunz&package=arm-none-eabi-gcc

 sudo zypper addrepo http://download.opensuse.org/repositories/home:frank_kunz/openSUSE_Leap_42.2/home:frank_kunz.repo
 sudo zypper refresh
 sudo zypper install arm-none-eabi-gcc

Check out the latest revision of the Proxmark project:

  git clone https://github.com/Proxmark/proxmark3.git

Open the recently cloned Proxmark3 repository

  cd proxmark3

Now compile the bootrom, OS and software.

  make clean && make all
Clone this wiki locally