Merge "first_stage_mount: Bind mount /system after switch root"

This commit is contained in:
Yi-yo Chiang 2022-07-18 09:47:56 +00:00 committed by Gerrit Code Review
commit 53f1fab6ac

View file

@ -518,6 +518,12 @@ bool FirstStageMount::TrySwitchSystemAsRoot() {
SwitchRoot("/system");
// Make /system a mountpoint so that adb-remount can move submounts under /system.
if (access("/system", F_OK) == 0 &&
mount("/system", "/system", nullptr, MS_BIND, nullptr) != 0) {
PLOG(WARNING) << "Failed to bind mount /system for overlayfs";
}
return true;
}