aboutsummaryrefslogtreecommitdiffstats
path: root/Linux
diff options
context:
space:
mode:
authorBenjamin Dobell <ben.dobell@playup.com>2013-06-08 14:58:37 +1000
committerBenjamin Dobell <ben.dobell@playup.com>2013-06-08 15:07:01 +1000
commitf47b69d037b74cf0916bbab248abcafe8a1f01a3 (patch)
treeed4afe6fe9c26f2740276420792f3800e6b60bd5 /Linux
parentb8a92f1c71fa93b48fbd5c9595c088af87c7d7d8 (diff)
downloadexternal_heimdall-f47b69d037b74cf0916bbab248abcafe8a1f01a3.zip
external_heimdall-f47b69d037b74cf0916bbab248abcafe8a1f01a3.tar.gz
external_heimdall-f47b69d037b74cf0916bbab248abcafe8a1f01a3.tar.bz2
Modified Heimdall Frontend so it can find Heimdall CLI in /usr/local/bin on OS X. Also updated the OS X build files, as well as READMEs for all platforms.
Diffstat (limited to 'Linux')
-rw-r--r--Linux/README30
1 files changed, 10 insertions, 20 deletions
diff --git a/Linux/README b/Linux/README
index 78cf3af..33a8bc0 100644
--- a/Linux/README
+++ b/Linux/README
@@ -183,7 +183,7 @@ Performing a Custom Flash with Heimdall Frontend:
Flashing Firmware from Command Line:
-
+
1. Fully charge your phone (use the wall charger as it's faster).
2. Download a decrypted device ROM or a Heimdall Firmware Package
@@ -218,10 +218,10 @@ Flashing Firmware from Command Line:
button) after executing --no-reboot commands.
8. Use the help and print-pit output to construct a command with all the
- files you want to flash.
+ files you want to flash.
Here is an example that does a full flash and repartition on a GT-I9000:
-
+
heimdall flash --repartition --resume --pit s1_odin_20100512.pit --FACTORYFS factoryfs.rfs --CACHE cache.rfs --DBDATA dbdata.rfs --IBL+PBL boot.bin --SBL Sbl.bin --PARAM param.lfs --KERNEL zImage --MODEM modem.bin
9. Heimdall will display the progress as it flashes so that you know things
@@ -499,13 +499,6 @@ Appendix B - Installing Heimdall from Source:
sudo make install
cd ..
- NOTE: As an alternative to "sudo make install" you may chose to generate
- a package by typing the following:
-
- sudo checkinstall --pkgversion <version>
-
- Where <version> is the current Heimdall release e.g. 1.3.0
-
5. Done
@@ -514,25 +507,22 @@ 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, available from:
+ 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.nokia.com/downloads/
+ 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 heimdall-frontend.pro
+ qmake-qt4
make
sudo make install
-
- NOTE: As an alternative to "sudo make install" you may chose to generate
- a package by typing the following:
-
- sudo checkinstall --pkgversion <version>
-
- Where <version> is the current Heimdall release e.g. 1.3.0
+
+ NOTE: If qmake-qt4 does not exist on your platform, try qmake instead.
5. Done