]> git.zerfleddert.de Git - proxmark3-svn/blame - README.txt
minor textual changes
[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
b1329a02 10Whats in this fork? I have scraped the web for different enhancements to the PM3 source code and not all of them ever found their way to the master branch.
0a966150 11Among the stuff is
b1329a02 12
13 * Jonor's hf 14a raw timing patch
0a966150 14 * Piwi's updates. (usually gets into the master)
b1329a02 15 * Holiman's iclass, (usually gets into the master)
16 * Marshmellow's LF fixes
17 * Midnitesnake's Ultralight, Ultralight-c enhancements
18 * Izsh's lf peak modification / iir-filtering
19 * Aspers's tips and tricks from inside the PM3-gui-tool, settings.xml and other stuff.
20 * My own desfire, Ultralight extras, LF T55xx enhancements, bugs fixes (filelength, hf mf commands ), TNP3xxx lua scripts, Awid26, skidata scripts (will come)
21 * other obscure patches like for the sammy-mode, (offline you know), tagidentifications, defaultkeys.
0a966150 22
23Give me a hint, and I'll see if I can't merge in the stuff you have.
b1329a02 24
25I don't actually know how to make small pull-request to github :( and that is the number one reason for me not pushing a lot of things back to the PM3 master.
0a966150 26
27PM3 GUI:
770f7345 28
b1329a02 29I do tend to rename and move stuff around, the official PM3-GUI from Gaucho will not work so well. *sorry*
770f7345 30
0a966150 31
32DEVELOPMENT:
770f7345 33
0a966150 34This fork is adjusted to compile on windows/mingw environment with Qt5.3.1 & GCC 4.8
b1329a02 35For people with linux you will need to patch some source code 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.
0a966150 36
37Common errors linux/macOS finds
38Error:
39 * loclass/fileutils.c:15:2: warning: implicit declaration of function ‘_stat’ [-Wimplicit-function-declaration]
40Solution:
41 * Remove the "unscore" sign. In linux you use without underscore, in windows you need a underscore.
42
43Error:
44 * \client\makefile the parameter -lgdi32
45Solution:
46 * Remove parameter.
47
48Error:
49 * Using older Qt4.6 gives compilation errors.
50Solution
51 * Upgrade to Qt5.3.1
52 OR
53 * Change these two line in \client\makefile
54 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include
55 QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets
56
57 TO
58
59 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
60 QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
61
62
b1329a02 63An old Qt4 version makefile 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.
0a966150 64
65
66
67January 2015, Sweden
68iceman at host iuse.se
Impressum, Datenschutz