From 86fabbe4d00ad709af569a5515a0cd6ae741e22e Mon Sep 17 00:00:00 2001 From: bigbiff Date: Mon, 22 Jun 2020 17:07:27 -0400 Subject: [PATCH] vendor partition: mount if found in super Change-Id: I6348511087aca6fc722dc48677794e0d8b4a63fa --- twrp.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/twrp.cpp b/twrp.cpp index b5f922b5..b84971ce 100755 --- a/twrp.cpp +++ b/twrp.cpp @@ -400,6 +400,9 @@ int main(int argc, char **argv) { LOGERR("Unable to prepare super volumes.\n"); } sys->Mount(true); + if (ven) { + ven->Mount(true); + } twrpApex apex; if (!apex.loadApexImages()) { LOGERR("Unable to load apex images from %s\n", APEX_DIR);