Merge "Enable metadata encryption for userdata_gsi." am: 99046b75c4

am: 8b90acafcd

Change-Id: I1a8bde686283af1f467edaeb5c735f6ed1721234
gugelfrei
David Anderson 5 years ago committed by android-build-merger
commit 1f4307e51e

@ -226,7 +226,7 @@ static int process_config(VolumeManager* vm, bool* has_adoptable, bool* has_quot
*has_adoptable = false;
*has_quota = false;
*has_reserved = false;
for (const auto& entry : fstab_default) {
for (auto& entry : fstab_default) {
if (entry.fs_mgr_flags.quota) {
*has_quota = true;
}
@ -234,6 +234,11 @@ static int process_config(VolumeManager* vm, bool* has_adoptable, bool* has_quot
*has_reserved = true;
}
/* Make sure logical partitions have an updated blk_device. */
if (entry.fs_mgr_flags.logical && !fs_mgr_update_logical_partition(&entry)) {
PLOG(FATAL) << "could not find logical partition " << entry.blk_device;
}
if (entry.fs_mgr_flags.vold_managed) {
if (entry.fs_mgr_flags.nonremovable) {
LOG(WARNING) << "nonremovable no longer supported; ignoring volume";

Loading…
Cancel
Save