1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #ifndef UPDATER_KITS_H 16 #define UPDATER_KITS_H 17 #include <string> 18 19 // Reboot system to updater mode and trigger installing update package. 20 // @param packageName update package file name. 21 // @return returns true if trigger update package installing success, else returns false. 22 extern bool RebootAndInstallUpgradePackage(const std::string &miscFile, const std::vector<std::string> &packageName); 23 24 // Reboot system to sdcard update mode and trigger installing update package. 25 // @return returns true if trigger update package installing success, else returns false. 26 extern bool RebootAndInstallSdcardPackage(const std::string &miscFile, const std::vector<std::string> &packageName); 27 28 // Reboot system to updater mode and trigger userdata clean up. 29 // @return returns true if trigger userdata cleanup success, else returns false. 30 extern bool RebootAndCleanUserData(const std::string &miscFile, const std::string &cmd); 31 #endif /* UPDATER_KITS_H */ 32