diff options
author | Tao Bao <tbao@google.com> | 2017-09-29 18:10:41 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-09-29 18:10:41 +0200 |
commit | d9373cf621760238e153175964485661cf7a5f81 (patch) | |
tree | 5b0f4e928a5e134207c554d8c82cdec9af0dd7c2 /otafault/config.h | |
parent | Merge "Integer overflow observed while formatting volume" (diff) | |
parent | otafault: Clean up header inclusion. (diff) | |
download | android_bootable_recovery-d9373cf621760238e153175964485661cf7a5f81.tar android_bootable_recovery-d9373cf621760238e153175964485661cf7a5f81.tar.gz android_bootable_recovery-d9373cf621760238e153175964485661cf7a5f81.tar.bz2 android_bootable_recovery-d9373cf621760238e153175964485661cf7a5f81.tar.lz android_bootable_recovery-d9373cf621760238e153175964485661cf7a5f81.tar.xz android_bootable_recovery-d9373cf621760238e153175964485661cf7a5f81.tar.zst android_bootable_recovery-d9373cf621760238e153175964485661cf7a5f81.zip |
Diffstat (limited to '')
-rw-r--r-- | otafault/config.h | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/otafault/config.h b/otafault/config.h index 4adbdd121..cc4bfd2ad 100644 --- a/otafault/config.h +++ b/otafault/config.h @@ -15,13 +15,13 @@ */ /* - * Read configuration files in the OTA package to determine which files, if any, will trigger errors. + * Read configuration files in the OTA package to determine which files, if any, will trigger + * errors. * - * OTA packages can be modified to trigger errors by adding a top-level - * directory called .libotafault, which may optionally contain up to three - * files called READ, WRITE, and FSYNC. Each one of these optional files - * contains the name of a single file on the device disk which will cause - * an IO error on the first call of the appropriate I/O action to that file. + * OTA packages can be modified to trigger errors by adding a top-level directory called + * .libotafault, which may optionally contain up to three files called READ, WRITE, and FSYNC. + * Each one of these optional files contains the name of a single file on the device disk which + * will cause an IO error on the first call of the appropriate I/O action to that file. * * Example: * ota.zip @@ -29,9 +29,9 @@ * .libotafault * WRITE * - * If the contents of the file WRITE were /system/build.prop, the first write - * action to /system/build.prop would fail with EIO. Note that READ and - * FSYNC files are absent, so these actions will not cause an error. + * If the contents of the file WRITE were /system/build.prop, the first write action to + * /system/build.prop would fail with EIO. Note that READ and FSYNC files are absent, so these + * actions will not cause an error. */ #ifndef _UPDATER_OTA_IO_CFG_H_ @@ -39,8 +39,6 @@ #include <string> -#include <stdbool.h> - #include <ziparchive/zip_archive.h> #define OTAIO_BASE_DIR ".libotafault" |