/* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include extern int applypatch(int argc, char** argv); // This program applies binary patches to files in a way that is safe // (the original file is not touched until we have the desired // replacement for it) and idempotent (it's okay to run this program // multiple times). // // - if the sha1 hash of is , does nothing and exits // successfully. // // - otherwise, if the sha1 hash of is , applies the // bsdiff to to produce a new file (the type of patch // is automatically detected from the file header). If that new // file has sha1 hash , moves it to replace , and // exits successfully. Note that if and are // not the same, is NOT deleted on success. // may be the string "-" to mean "the same as src-file". // // - otherwise, or if any error is encountered, exits with non-zero // status. // // (or in check mode) may refer to an MTD partition // to read the source data. See the comments for the // LoadMTDContents() function above for the format of such a filename. int main(int argc, char** argv) { int result = applypatch(argc, argv); if (result == 2) { printf( "usage: %s " "[: ...]\n" " or %s -c [ ...]\n" " or %s -s \n" " or %s -l\n" "\n" "Filenames may be of the form\n" " MTD::::::...\n" "to specify reading from or writing to an MTD partition.\n\n", argv[0], argv[0], argv[0], argv[0]); } return result; }