diff options
author | Erfan Abdi <erfangplus@gmail.com> | 2020-04-14 23:07:33 +0430 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2023-12-25 21:42:48 +0800 |
commit | 16c61d1adcc599f78fa093c4ab37b9e7f497de43 (patch) | |
tree | 3440b464de0e57b9701c42cbeee620ea02cd0663 | |
parent | 7125322cd4cc06838b85bed6d033f95bc547bef5 (diff) |
recovery: Map logical partitions before installation
Change-Id: I785b49086a2baf462e97be831b495d7db72f7a42
-rw-r--r-- | recovery_main.cpp | 2 | ||||
-rw-r--r-- | recovery_utils/include/recovery_utils/roots.h | 2 | ||||
-rw-r--r-- | recovery_utils/roots.cpp | 17 |
3 files changed, 20 insertions, 1 deletions
diff --git a/recovery_main.cpp b/recovery_main.cpp index 9a358aba..b0eda510 100644 --- a/recovery_main.cpp +++ b/recovery_main.cpp @@ -538,7 +538,7 @@ int main(int argc, char** argv) { } case Device::ENTER_FASTBOOT: - if (android::fs_mgr::LogicalPartitionsMapped()) { + if (logical_partitions_mapped()) { ui->Print("Partitions may be mounted - rebooting to enter fastboot."); Reboot("fastboot"); } else { diff --git a/recovery_utils/include/recovery_utils/roots.h b/recovery_utils/include/recovery_utils/roots.h index 92ee756f..b778cfd8 100644 --- a/recovery_utils/include/recovery_utils/roots.h +++ b/recovery_utils/include/recovery_utils/roots.h @@ -56,3 +56,5 @@ int setup_install_mounts(); // Returns true if there is /cache in the volumes. bool HasCache(); + +bool logical_partitions_mapped(); diff --git a/recovery_utils/roots.cpp b/recovery_utils/roots.cpp index 62ccdb6a..5eaa7e94 100644 --- a/recovery_utils/roots.cpp +++ b/recovery_utils/roots.cpp @@ -37,6 +37,7 @@ #include <ext4_utils/wipe.h> #include <fs_mgr.h> #include <fs_mgr/roots.h> +#include <fs_mgr_dm_linear.h> #include "otautil/sysutil.h" @@ -293,6 +294,8 @@ int format_volume(const std::string& volume) { return format_volume(volume, ""); } +static bool logical_partitions_auto_mapped = false; + int setup_install_mounts() { if (fstab.empty()) { LOG(ERROR) << "can't set up install mounts: no fstab loaded"; @@ -317,6 +320,16 @@ int setup_install_mounts() { } } } + // Map logical partitions + if (android::base::GetBoolProperty("ro.boot.dynamic_partitions", false) && + !logical_partitions_mapped()) { + std::string super_name = fs_mgr_get_super_partition_name(); + if (!android::fs_mgr::CreateLogicalPartitions("/dev/block/by-name/" + super_name)) { + LOG(ERROR) << "Failed to map logical partitions"; + } else { + logical_partitions_auto_mapped = true; + } + } return 0; } @@ -325,3 +338,7 @@ bool HasCache() { static bool has_cache = volume_for_mount_point(CACHE_ROOT) != nullptr; return has_cache; } + +bool logical_partitions_mapped() { + return android::fs_mgr::LogicalPartitionsMapped() || logical_partitions_auto_mapped; +} |