diff options
Diffstat (limited to 'common/platform_constants.h')
-rw-r--r-- | common/platform_constants.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/common/platform_constants.h b/common/platform_constants.h index 243af69e..06399e5c 100644 --- a/common/platform_constants.h +++ b/common/platform_constants.h @@ -54,9 +54,11 @@ extern const char kOmahaResponseDeadlineFile[]; // The stateful directory used by update_engine. extern const char kNonVolatileDirectory[]; -// Options passed to the filesystem when mounting the new partition during -// postinstall. -extern const char kPostinstallMountOptions[]; +#ifdef __ANDROID_RECOVERY__ +constexpr bool kIsRecovery = true; +#else +constexpr bool kIsRecovery = false; +#endif } // namespace constants } // namespace chromeos_update_engine |