aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Linux/README5
-rw-r--r--OSX/README.txt5
-rw-r--r--Win32/README.txt2
-rw-r--r--heimdall/source/.dirstamp0
-rw-r--r--heimdall/source/main.cpp9
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
+}