]> git.zerfleddert.de Git - proxmark3-svn/blame - README.txt
Merge pull request #1 from bforbort/master
[proxmark3-svn] / README.txt
CommitLineData
0a966150 1The iceman fork.
770f7345 2
0a966150 3NOTICE:
770f7345 4
0a966150 5The official Proxmark repository is found here: https://github.com/Proxmark/proxmark3
770f7345 6
770f7345 7
0a966150 8NEWS:
770f7345 9
0a966150 10Whats in this fork? I have scraped the web for different enhancements to the PM3 sourcecode and not all of them ever found their way to the master branch.
11Among the stuff is
12 * jonor's hf 14a raw timing patch
13 * Piwi's updates. (usually gets into the master)
14 * Holimans iclass, (usually gets into the master)
15 * Marshmellows LF fixes (will go into the master)
16 * Midnitesnakes Ultralight, Ultralight-c enhancements
17 * My desfire, Ultralight extras, LF T55xx enhancements, bugs fixes (filelength, hf mf commands ), TNP3xxx lua scripts, Awid26, skidata scripts (will come)
18 * other osbscury patches like for the sammy-mode, (offline you know), tagidentifications, defaultkeys.
19
20Give me a hint, and I'll see if I can't merge in the stuff you have.
21
22PM3 GUI:
770f7345 23
0a966150 24I do tend to rename and move stuff around, the official PM3-GUI from Gaucho will not work so good. *sorry*
770f7345 25
0a966150 26
27DEVELOPMENT:
770f7345 28
0a966150 29This fork is adjusted to compile on windows/mingw environment with Qt5.3.1 & GCC 4.8
30For people with linux you will need to patch some sourcecode and some small change to one makefile. If you are lazy, you google the forum and find asper's or holimans makefile or you find your solution below.
31
32Common errors linux/macOS finds
33Error:
34 * loclass/fileutils.c:15:2: warning: implicit declaration of function ‘_stat’ [-Wimplicit-function-declaration]
35Solution:
36 * Remove the "unscore" sign. In linux you use without underscore, in windows you need a underscore.
37
38Error:
39 * \client\makefile the parameter -lgdi32
40Solution:
41 * Remove parameter.
42
43Error:
44 * Using older Qt4.6 gives compilation errors.
45Solution
46 * Upgrade to Qt5.3.1
47 OR
48 * Change these two line in \client\makefile
49 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include
50 QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets
51
52 TO
53
54 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
55 QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
56
57
58And old Qt4 version is found here: http://www.icesql.se/proxmark3/code/linuxmakefile.txt but this one doesn't have all new files in it. So I don't recommend it.
59
60
61
62January 2015, Sweden
63iceman at host iuse.se
Impressum, Datenschutz