diff options
author | Elliott Hughes <enh@google.com> | 2016-06-16 00:33:02 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-06-16 00:33:02 +0200 |
commit | b36980cc09971d3cc1125eb72d6ddbdbea82adcb (patch) | |
tree | 89ec9fd317b3354854b872bba129b5873ddacbe7 /applypatch/main.cpp | |
parent | Merge \\\"Add bootloader_message_ab struct.\\\" am: 59f04b9982 am: f57d7f02c9 (diff) | |
parent | resolve merge conflicts of 179c0d8 to stage-aosp-master (diff) | |
download | android_bootable_recovery-b36980cc09971d3cc1125eb72d6ddbdbea82adcb.tar android_bootable_recovery-b36980cc09971d3cc1125eb72d6ddbdbea82adcb.tar.gz android_bootable_recovery-b36980cc09971d3cc1125eb72d6ddbdbea82adcb.tar.bz2 android_bootable_recovery-b36980cc09971d3cc1125eb72d6ddbdbea82adcb.tar.lz android_bootable_recovery-b36980cc09971d3cc1125eb72d6ddbdbea82adcb.tar.xz android_bootable_recovery-b36980cc09971d3cc1125eb72d6ddbdbea82adcb.tar.zst android_bootable_recovery-b36980cc09971d3cc1125eb72d6ddbdbea82adcb.zip |
Diffstat (limited to '')
-rw-r--r-- | applypatch/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applypatch/main.cpp b/applypatch/main.cpp index 0ff8cbf9a..1968ae48f 100644 --- a/applypatch/main.cpp +++ b/applypatch/main.cpp @@ -160,9 +160,9 @@ static int PatchMode(int argc, char** argv) { // - otherwise, or if any error is encountered, exits with non-zero // status. // -// <src-file> (or <file> in check mode) may refer to an MTD partition +// <src-file> (or <file> in check mode) may refer to an EMMC partition // to read the source data. See the comments for the -// LoadMTDContents() function above for the format of such a filename. +// LoadPartitionContents() function for the format of such a filename. int main(int argc, char** argv) { if (argc < 2) { @@ -175,8 +175,8 @@ int main(int argc, char** argv) { " or %s -l\n" "\n" "Filenames may be of the form\n" - " MTD:<partition>:<len_1>:<sha1_1>:<len_2>:<sha1_2>:...\n" - "to specify reading from or writing to an MTD partition.\n\n", + " EMMC:<partition>:<len_1>:<sha1_1>:<len_2>:<sha1_2>:...\n" + "to specify reading from or writing to an EMMC partition.\n\n", argv[0], argv[0], argv[0], argv[0]); return 2; } |