diff options
author | Brian Orr <brianorr@google.com> | 2021-05-10 11:39:59 -0700 |
---|---|---|
committer | Brian Orr <brianorr@google.com> | 2021-05-10 11:39:59 -0700 |
commit | f79cb91b4218a68642c94a01defc0594e742b3f4 (patch) | |
tree | 01ec931931503ed80f181b2d85efb5df0079e4ba /payload_consumer/install_plan.cc | |
parent | d650df1d306a5a828e7b13a8cc954196fea44992 (diff) | |
parent | 3d4e6e0d7ed2b609e0fe2b4d0fcb250808f97476 (diff) |
Merge SP1A.210510.001
Change-Id: If7498b293041f2ae00fd93563417d60a0c13e7c9
Diffstat (limited to 'payload_consumer/install_plan.cc')
-rw-r--r-- | payload_consumer/install_plan.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/payload_consumer/install_plan.cc b/payload_consumer/install_plan.cc index 39827a4a..06b7dd8c 100644 --- a/payload_consumer/install_plan.cc +++ b/payload_consumer/install_plan.cc @@ -122,6 +122,7 @@ string InstallPlan::ToString() const { partition.target_hash.size())}, {"run_postinstall", utils::ToString(partition.run_postinstall)}, {"postinstall_path", partition.postinstall_path}, + {"readonly_target_path", partition.readonly_target_path}, {"filesystem_type", partition.filesystem_type}, }, "\n ")); @@ -165,7 +166,7 @@ bool InstallPlan::LoadPartitionsFromSlots(BootControlInterface* boot_control) { partition.name, target_slot, source_slot); TEST_AND_RETURN_FALSE(device.has_value()); partition.target_path = device->rw_device_path; - partition.postinstall_mount_device = device->mountable_device_path; + partition.readonly_target_path = device->readonly_device_path; } else { partition.target_path.clear(); } |