diff options
author | Benjamin Dobell <benjamin.dobell+github@glassechidna.com.au> | 2010-12-13 14:55:02 +0100 |
---|---|---|
committer | Benjamin Dobell <benjamin.dobell+github@glassechidna.com.au> | 2010-12-13 15:25:31 +0100 |
commit | fbab0f535efa78fe5ec77848559c33b9f798e072 (patch) | |
tree | c9008a01f64602d37edd617a2e581131aa1baca3 | |
parent | make install output directory can now be set via qmake variable FRONTENDOUTDIR (diff) | |
download | Heimdall-fbab0f535efa78fe5ec77848559c33b9f798e072.tar Heimdall-fbab0f535efa78fe5ec77848559c33b9f798e072.tar.gz Heimdall-fbab0f535efa78fe5ec77848559c33b9f798e072.tar.bz2 Heimdall-fbab0f535efa78fe5ec77848559c33b9f798e072.tar.lz Heimdall-fbab0f535efa78fe5ec77848559c33b9f798e072.tar.xz Heimdall-fbab0f535efa78fe5ec77848559c33b9f798e072.tar.zst Heimdall-fbab0f535efa78fe5ec77848559c33b9f798e072.zip |
-rw-r--r-- | Linux/README | 5 | ||||
-rw-r--r-- | OSX/README.txt | 5 | ||||
-rw-r--r-- | Win32/README.txt | 2 | ||||
-rw-r--r-- | heimdall/source/.dirstamp | 0 | ||||
-rw-r--r-- | heimdall/source/main.cpp | 9 |
5 files changed, 14 insertions, 7 deletions
diff --git a/Linux/README b/Linux/README index d76bc33..b25ca91 100644 --- a/Linux/README +++ b/Linux/README @@ -79,7 +79,10 @@ Flashing Firmware with Heimdall Frontend: NOTE: If you want to use the CSC then extract it last.
- 3. Open Heimdall Frontend.
+ 3. Open Heimdall Frontend, which can be done by entering the following
+ command in a terminal:
+
+ heimdall-frontend
4. Put your Galaxy S device into download mode.
diff --git a/OSX/README.txt b/OSX/README.txt index c5e82b0..fea2db8 100644 --- a/OSX/README.txt +++ b/OSX/README.txt @@ -26,7 +26,10 @@ Installing Heimdall and Heimdall Frontend Binaries: Installing Heimdall from Source:
- 1. First make sure you have installed build-tools and pkgconfig.
+ 1. First make sure you have installed XCode and pkgconfig.
+
+ NOTE: There are several different ways you can install pkgconfig, one
+ option is to use Macports (http://www.macports.org/).
2. Open a terminal and navigate to the directory where you extracted
Heimdall.
diff --git a/Win32/README.txt b/Win32/README.txt index 683e34a..b2d10fa 100644 --- a/Win32/README.txt +++ b/Win32/README.txt @@ -39,7 +39,7 @@ Driver Uninstallation Instructions: 3. Open up Device Manager on your PC (Control Panel -> System -> Device Manager).
- 4. Under Universal Serial Bus Controllers right click on "Heimdall Galaxy S Driver" and chose Properties.
+ 4. Under "Libusb (WinUSB) devices" right click on "Samsung USB Composite Device" and chose Properties.
5. Go to the Driver tab and select Update Driver.
diff --git a/heimdall/source/.dirstamp b/heimdall/source/.dirstamp deleted file mode 100644 index e69de29..0000000 --- a/heimdall/source/.dirstamp +++ /dev/null diff --git a/heimdall/source/main.cpp b/heimdall/source/main.cpp index 037d097..7fa00be 100644 --- a/heimdall/source/main.cpp +++ b/heimdall/source/main.cpp @@ -161,6 +161,7 @@ bool flashFile(BridgeManager *bridgeManager, FILE *file, int fileIndex) } case kFileParam: + InterfaceManager::Print("Uploading param.lfs\n"); if (bridgeManager->SendFile(file, EndPhoneFileTransferPacket::kDestinationPhone, EndPhoneFileTransferPacket::kFileParamLfs)) @@ -193,9 +194,9 @@ bool flashFile(BridgeManager *bridgeManager, FILE *file, int fileIndex) InterfaceManager::Print("Uploading modem\n"); - /*if (bridgeManager->SendFile(file, EndModemFileTransferPacket::kDestinationModem))*/ // <-- Odin method - if (bridgeManager->SendFile(file, EndPhoneFileTransferPacket::kDestinationPhone, // <-- Kies method - EndPhoneFileTransferPacket::kFileModem)) + if (bridgeManager->SendFile(file, EndModemFileTransferPacket::kDestinationModem)) // <-- Odin method + /*if (bridgeManager->SendFile(file, EndPhoneFileTransferPacket::kDestinationPhone, // <-- Kies method. WARNING: Doesn't work on Galaxy Tab! + EndPhoneFileTransferPacket::kFileModem))*/ { InterfaceManager::Print("Modem upload successful\n"); return (true); @@ -657,4 +658,4 @@ int main(int argc, char **argv) delete bridgeManager; return ((success) ? 0 : -1); -}
\ No newline at end of file +} |