diff options
author | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2014-05-11 11:26:26 +0200 |
---|---|---|
committer | Benjamin Dobell <benjamin.dobell+git@glassechidna.com.au> | 2014-05-11 11:26:26 +0200 |
commit | e6fdafd4829842d96eefa3163b6149265819fe95 (patch) | |
tree | 94d61e8c8f8870d1383b223410bbe4176b9bdb6e | |
parent | Fixed header guard typo. (diff) | |
download | Heimdall-e6fdafd4829842d96eefa3163b6149265819fe95.tar Heimdall-e6fdafd4829842d96eefa3163b6149265819fe95.tar.gz Heimdall-e6fdafd4829842d96eefa3163b6149265819fe95.tar.bz2 Heimdall-e6fdafd4829842d96eefa3163b6149265819fe95.tar.lz Heimdall-e6fdafd4829842d96eefa3163b6149265819fe95.tar.xz Heimdall-e6fdafd4829842d96eefa3163b6149265819fe95.tar.zst Heimdall-e6fdafd4829842d96eefa3163b6149265819fe95.zip |
Diffstat (limited to '')
-rw-r--r-- | heimdall/source/ClosePcScreenAction.cpp | 2 | ||||
-rw-r--r-- | heimdall/source/DownloadPitAction.cpp | 2 | ||||
-rw-r--r-- | heimdall/source/FlashAction.cpp | 14 | ||||
-rw-r--r-- | heimdall/source/PrintPitAction.cpp | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/heimdall/source/ClosePcScreenAction.cpp b/heimdall/source/ClosePcScreenAction.cpp index 1a3387c..edc7157 100644 --- a/heimdall/source/ClosePcScreenAction.cpp +++ b/heimdall/source/ClosePcScreenAction.cpp @@ -34,7 +34,7 @@ Arguments: [--verbose] [--no-reboot] [--resume] [--stdout-errors]\n\ Description: Attempts to get rid off the \"connect phone to PC\" screen.\n\ Note: --no-reboot causes the device to remain in download mode after the action\n\ is completed. If you wish to perform another action whilst remaining in\n\ - download mode, then the following action must specify the --resume flag."; + download mode, then the following action must specify the --resume flag."; int ClosePcScreenAction::Execute(int argc, char **argv) { diff --git a/heimdall/source/DownloadPitAction.cpp b/heimdall/source/DownloadPitAction.cpp index 845283c..0bde9d8 100644 --- a/heimdall/source/DownloadPitAction.cpp +++ b/heimdall/source/DownloadPitAction.cpp @@ -38,7 +38,7 @@ Description: Downloads the connected device's PIT file to the specified\n\ output file.\n\ Note: --no-reboot causes the device to remain in download mode after the action\n\ is completed. If you wish to perform another action whilst remaining in\n\ - download mode, then the following action must specify the --resume flag."; + download mode, then the following action must specify the --resume flag."; int DownloadPitAction::Execute(int argc, char **argv) { diff --git a/heimdall/source/FlashAction.cpp b/heimdall/source/FlashAction.cpp index 2ceaa3e..aa08ed8 100644 --- a/heimdall/source/FlashAction.cpp +++ b/heimdall/source/FlashAction.cpp @@ -39,19 +39,19 @@ using namespace Heimdall; const char *FlashAction::usage = "Action: flash\n\ Arguments:\n\ - [--<partition name> <filename> ...]\n\ - [--<partition identifier> <filename> ...]\n\ - [--pit <filename>] [--verbose] [--no-reboot] [--resume] [--stdout-errors]\n\ - [--usb-log-level <none/error/warning/debug>]\n\ + [--<partition name> <filename> ...]\n\ + [--<partition identifier> <filename> ...]\n\ + [--pit <filename>] [--verbose] [--no-reboot] [--resume] [--stdout-errors]\n\ + [--usb-log-level <none/error/warning/debug>]\n\ or:\n\ --repartition --pit <filename> [--<partition name> <filename> ...]\n\ - [--<partition identifier> <filename> ...] [--verbose] [--no-reboot]\n\ - [--resume] [--stdout-errors] [--usb-log-level <none/error/warning/debug>]\n\ + [--<partition identifier> <filename> ...] [--verbose] [--no-reboot]\n\ + [--resume] [--stdout-errors] [--usb-log-level <none/error/warning/debug>]\n\ Description: Flashes one or more firmware files to your phone. Partition names\n\ (or identifiers) can be obtained by executing the print-pit action.\n\ Note: --no-reboot causes the device to remain in download mode after the action\n\ is completed. If you wish to perform another action whilst remaining in\n\ - download mode, then the following action must specify the --resume flag.\n\ + download mode, then the following action must specify the --resume flag.\n\ WARNING: If you're repartitioning it's strongly recommended you specify\n\ all files at your disposal.\n"; diff --git a/heimdall/source/PrintPitAction.cpp b/heimdall/source/PrintPitAction.cpp index 05f6de7..01f57aa 100644 --- a/heimdall/source/PrintPitAction.cpp +++ b/heimdall/source/PrintPitAction.cpp @@ -40,7 +40,7 @@ Description: Prints the contents of a PIT file in a human readable format. If\n\ connected device.\n\ Note: --no-reboot causes the device to remain in download mode after the action\n\ is completed. If you wish to perform another action whilst remaining in\n\ - download mode, then the following action must specify the --resume flag."; + download mode, then the following action must specify the --resume flag."; int PrintPitAction::Execute(int argc, char **argv) { |