From c0da0bac8d0999ddca5725ee51ec7d85a97e52f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=87=AF?= Date: Mon, 28 Jul 2025 13:38:16 +0000 Subject: [PATCH] update services/updater_main.cpp. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 陈凯 --- services/updater_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/updater_main.cpp b/services/updater_main.cpp index 451b250a..d131e848 100644 --- a/services/updater_main.cpp +++ b/services/updater_main.cpp @@ -624,7 +624,7 @@ static int CheckMountData() UPDATER_INIT_RECORD; constexpr int retryTime = 3; for (int i = 0; i < retryTime; i++) { - if (SetupPartitions() == 0) { + if (SetupPartitions(true, Utils::IsVabDevice()) == 0) { return 0; } LOG(INFO) << "retry mount userdata number:" << i; -- Gitee