Rename postinstall_mount_device to readonly_target_path
When postinstall_mount_device is initially introduced, it's only
intended to be used by postinstall action, hence the name. Now we plan
to use it for fs verification purpose as well, rename for better
clarity.
Test: th
Change-Id: Iff996f2f513bb44694e39d758a69851793b9a565
diff --git a/common/fake_boot_control.h b/common/fake_boot_control.h
index fc7839d..79e2139 100644
--- a/common/fake_boot_control.h
+++ b/common/fake_boot_control.h
@@ -137,7 +137,7 @@
PartitionDevice device;
device.is_dynamic = false;
device.rw_device_path = device_path->second;
- device.mountable_device_path = device.rw_device_path;
+ device.readonly_device_path = device.rw_device_path;
return device;
}