summaryrefslogtreecommitdiff
path: root/fs_mgr/libsnapshot/device_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs_mgr/libsnapshot/device_info.h')
-rw-r--r--fs_mgr/libsnapshot/device_info.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs_mgr/libsnapshot/device_info.h b/fs_mgr/libsnapshot/device_info.h
index 7999c99c2..d8d3d91b0 100644
--- a/fs_mgr/libsnapshot/device_info.h
+++ b/fs_mgr/libsnapshot/device_info.h
@@ -29,6 +29,7 @@ class DeviceInfo final : public SnapshotManager::IDeviceInfo {
using MergeStatus = android::hardware::boot::V1_1::MergeStatus;
public:
+ std::string GetGsidDir() const override;
std::string GetMetadataDir() const override;
std::string GetSlotSuffix() const override;
std::string GetOtherSlotSuffix() const override;
@@ -38,16 +39,11 @@ class DeviceInfo final : public SnapshotManager::IDeviceInfo {
bool SetBootControlMergeStatus(MergeStatus status) override;
bool SetSlotAsUnbootable(unsigned int slot) override;
bool IsRecovery() const override;
- std::unique_ptr<IImageManager> OpenImageManager() const override;
- bool IsFirstStageInit() const override;
-
- void set_first_stage_init(bool value) { first_stage_init_ = value; }
private:
bool EnsureBootHal();
android::fs_mgr::PartitionOpener opener_;
- bool first_stage_init_ = false;
#ifdef LIBSNAPSHOT_USE_HAL
android::sp<android::hardware::boot::V1_1::IBootControl> boot_control_;
#endif