aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Android.mk: libpit has lower-case source dir nameHEADreplicant-6.0-0001replicant-6.0Wolfgang Wiedmeyer2017-04-301-2/+2
| | | | Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
* Merge branch 'master' of https://github.com/Benjamin-Dobell/Heimdall into ↵Wolfgang Wiedmeyer2017-04-30155-97605/+2681
|\ | | | | | | cm-12.1
| * Revert "Merge pull request #355 from ljani/master"Benjamin Dobell2016-07-201-1/+1
| | | | | | | | | | This reverts commit 9784dd2e2a34b567a239f39aa0d550c519272040, reversing changes made to 7ebee1e87728a468bda9547c83b42317acd0e676.
| * Merge pull request #355 from ljani/masterBenjamin Dobell2016-07-181-1/+1
| |\ | | | | | | Use the found libusb
| | * Use the found libusbJani2016-07-171-1/+1
| |/
| * Merge pull request #333 from kratz00/superfluous_semicolonBenjamin Dobell2016-04-029-9/+9
| |\ | | | | | | - removed superfluous semicolons from namespace definitions
| | * - removed superfluous semicolons from namespace definitionsSteffen Pankratz2016-03-069-9/+9
| |/
| * Merge pull request #332 from kratz00/unused_variablesBenjamin Dobell2016-03-072-4/+2
| |\ | | | | | | - fixed compiler warning: dead initialization (the values are never read)
| | * - fixed compiler warning: dead initialization (the values are never read)Steffen Pankratz2016-03-062-4/+2
| |/ | | | | | | | | | | In order to not get compiler warnings about 'unused return values' a void cast is used, which also makes it clear the the returned values are ignored on purpose
| * Merge pull request #330 from kratz00/misc_fixesBenjamin Dobell2016-03-013-5/+5
| |\ | | | | | | Minor bug fixes.
| | * - fixed possible null pointer accessSteffen Pankratz2016-02-291-1/+1
| | |
| | * - fixed logical error, wrong variable was used in error messageSteffen Pankratz2016-02-291-1/+1
| | |
| | * - fixed memory leakSteffen Pankratz2016-02-291-1/+1
| | | | | | | | | | | | Memory allocated by 'new[]' should be deallocated by 'delete[]'.
| | * - fixed typosSteffen Pankratz2016-02-291-2/+2
| |/ | | | | | | prefox <-> prefix
| * Merge pull request #287 from yan12125/allow-disable-guiBenjamin Dobell2016-02-211-3/+6
| |\ | | | | | | Add an option to disable the frontend when building
| | * Add an option to disable GUIYen Chi Hsuan2015-08-221-3/+6
| | |
| * | Merge pull request #325 from vaselo/masterBenjamin Dobell2016-02-081-7/+7
| |\ \ | | |/ | |/| Fixed libpit array overflows
| | * Fixed libpit array overflowsvaselo2016-02-081-7/+7
| |/
| * Do not use static libusb-1.0 by default on Linux.Benjamin Dobell2015-03-211-1/+4
| |
| * Actually fix #261 (CMake Linux detection)Benjamin Dobell2015-03-061-2/+2
| |
| * Due to a Qt bug on OS X we need to browse for *.gz not *.tar.gzBenjamin Dobell2015-03-061-2/+2
| |
| * Added missing info to the Windows READMEBenjamin Dobell2015-02-211-2/+2
| |
| * Fixed a few Heimdall Frontend nigglesBenjamin Dobell2015-02-212-69/+70
| | | | | | | | | | Yes, the HeimdallState enum class operator overloading and operator usage is crazy nonsense. I want to love enum class, but this is just ridiculous.
| * Implemented hack to make WinUSB play nice with empty receive transfersBenjamin Dobell2015-02-211-0/+8
| |
| * Fixed incorrect method arguments causing PIT transfers to failBenjamin Dobell2015-02-211-2/+2
| |
| * New signed codeless kextBenjamin Dobell2015-02-214-6/+12
| | | | | | | | | | In theory this codeless kext should be higher priority than Kies, however it does not seem to be working consistently.
| * Make OS X kext installation work irrespective of current directoryBenjamin Dobell2015-02-211-1/+2
| |
| * Fix issue with Linux specific code not compiling (#261)Benjamin Dobell2015-02-201-0/+4
| |
| * Fix FindLibusb.cmake and make CMake setup IDE compatibleBenjamin Dobell2015-02-202-1/+5
| |
| * Fix case sensitive FS issue and update Linux READMEBenjamin Dobell2015-02-192-44/+8
| |
| * Fix Unix build issues and work-around Qt5 Mac UI bugsBenjamin Dobell2015-02-195-75/+77
| |
| * Removed autotools and VS files, and standardised source dir namingBenjamin Dobell2015-02-1974-103679/+1753
| |
| * Upgrade Heimdall Frontend to Qt5 and build with cmakeBenjamin Dobell2015-02-198-19/+67
| |
| * Update Heimdall CLI build to use an MSYS2 environmentBenjamin Dobell2015-02-199-2734/+64
| |
| * Fix UNIX CMake (and OS X autotools) builds for Heimdall CLIBenjamin Dobell2014-12-103-16/+36
| |
| * CMake build fixesBenjamin Dobell2014-11-172-1/+3
| |
| * Continue to support autotools... for nowBenjamin Dobell2014-11-172-1/+5
| |
| * CMake files for Heimdall CLI and mingw supportBenjamin Dobell2014-11-1712-13/+342
| |
| * More empty transfer craziness, this time when receving packetsBenjamin Dobell2014-07-062-64/+76
| | | | | | | | | | It seems newer devices need more weird empty transfers in order to function.
| * Autogen'd files for Heimdall 1.4.1Benjamin Dobell2014-06-0114-800/+931
| |
| * Fixed support for large files (up to 2^32 - 1 bytes)Benjamin Dobell2014-06-017-36/+49
| | | | | | | | | | | | The Loke protocol supports 32-bit unsigned for the size of files being flashed. However, POSIX file commands only support 32-bit (signed). As such we now have platform specific support for larger files.
| * Fixed file transfer sequence bugBenjamin Dobell2014-06-012-13/+11
| |
| * Give devices some leeway to handle empty bulk transfers.Benjamin Dobell2014-05-312-8/+13
| |
| * Fixed line endings in install-kext.shBenjamin Dobell2014-05-211-7/+7
| |
| * Signed the OS X codeless kext.Benjamin Dobell2014-05-214-0/+105
| |
| * Fixed regression that broke support for GT-I9100 etc.Benjamin Dobell2014-05-182-19/+41
| |
| * Tweaked VC++ linker options for Frontend (to ensure quicker builds).Benjamin Dobell2014-05-181-0/+2
| |
| * Removed unused optional parameters in BridgeManager.Benjamin Dobell2014-05-182-25/+16
| |
| * Fixed Frontend bug that could cause flashing to fail.Benjamin Dobell2014-05-181-0/+1
| | | | | | | | | | | | | | The resume boolean did not have a default value set. Consequently if the memory address containing the boolean was already non-null it resulted in the heimdall CLI binary being called with the --resume flag even though the Resume check-box in the UI was not checked.
| * Removed VC++ info from Windows README as builds are now statically linked.Benjamin Dobell2014-05-171-15/+0
| |