-
Notifications
You must be signed in to change notification settings - Fork 930
openSUSE Linux
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.
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
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
Struggling with this manual? Do you miss some explanation or found something wrong or ambigious? Then please post in the Manual Feedback section of the forum. Any feedback is appreciated.