diff options
author | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-04-30 10:00:29 +0200 |
---|---|---|
committer | Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de> | 2017-04-30 10:00:29 +0200 |
commit | d9c6729c9df44fcaf894cc966e4e2a8ae7109bc3 (patch) | |
tree | 24f0e6518939f38330ea51095c88e7f08fdb8bcf /Linux | |
parent | 61f67d4dd3f81560417c7b8d1bd5b2611eb7a001 (diff) | |
parent | b6fe7f8535355eb8025f4872efef6cd7d3993db6 (diff) | |
download | external_heimdall-d9c6729c9df44fcaf894cc966e4e2a8ae7109bc3.zip external_heimdall-d9c6729c9df44fcaf894cc966e4e2a8ae7109bc3.tar.gz external_heimdall-d9c6729c9df44fcaf894cc966e4e2a8ae7109bc3.tar.bz2 |
Merge branch 'master' of https://github.com/Benjamin-Dobell/Heimdall into cm-12.1
Diffstat (limited to 'Linux')
-rw-r--r-- | Linux/README | 56 |
1 files changed, 10 insertions, 46 deletions
diff --git a/Linux/README b/Linux/README index 33a8bc0..46bda39 100644 --- a/Linux/README +++ b/Linux/README @@ -1,4 +1,4 @@ -Heimdall (c) 2010-2013 Benjamin Dobell, Glass Echidna +Heimdall (c) 2010-2014 Benjamin Dobell, Glass Echidna http://www.glassechidna.com.au/products/heimdall/ DISCLAIMER: @@ -147,7 +147,7 @@ Performing a Custom Flash with Heimdall Frontend: clicking the "Remove" button. Removing a partition from the list doesn't remove it from your device, it simply means it will not be flashed. - 10. Repeat steps 7-9 as often as needed to specify all the partions/files + 10. Repeat steps 7-9 as often as needed to specify all the partitions/files that you wish to flash. 11. Now you can chose whether you would like to repartition your device as @@ -472,57 +472,21 @@ be included. -Appendix B - Installing Heimdall from Source: +Appendix B - Installing Heimdall Suite from Source: - 1. First make sure you have installed build-tools, pkgconfig, zlib-dev and - libusbx. + 1. First make sure you have installed build-essential, cmake, zlib1g-dev, + qt5-default, libusb-1.0-0-dev and OpenGL (e.g libgl1-mesa-glx and + libgl1-mesa-dev). NOTE: Package names may not be absolutely identical to those above. 2. Open a terminal and navigate to the directory you downloaded, or extracted, Heimdall to. - 3. Enter the following commands to compile libpit: + 3. Enter the following commands to compile Heimdall Suite: - cd libpit - ./configure + mkdir build + cd build + cmake -DCMAKE_BUILD_TYPE=Release .. make - cd .. - - NOTE: There is no need to run "sudo make install". - - 4. Enter the following commands to compile and install Heimdall: - - cd heimdall - ./configure - make - sudo make install - cd .. - - 5. Done - - - -Appendix C - Installing Heimdall Frontend from Source: - - 1. Compile and install Heimdall, see Appendix B. - - 2. First make sure you have installed Qt (4.7 or later, but prior to 5.0). - You can typically install Qt through your platforms package manager, or - alternatively download it from: - - http://qt-project.org/downloads - - 3. Open a terminal and navigate to the directory you extracted Heimdall to. - - 4. Enter the following commands to compile and install Heimdall Frontend: - - cd heimdall-frontend - qmake-qt4 - make - sudo make install - - NOTE: If qmake-qt4 does not exist on your platform, try qmake instead. - - 5. Done |