From 793f0b605c464502206ba226eb661789d1487763 Mon Sep 17 00:00:00 2001 From: osm0sis Date: Sat, 11 Jan 2020 19:52:17 -0400 Subject: [PATCH] init: fix Tegra "APP" /system partition mounting - thanks rootfan in https://github.com/topjohnwu/Magisk/issues/2063#issuecomment-573232567 Closes #2243 --- native/jni/init/mount.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/jni/init/mount.cpp b/native/jni/init/mount.cpp index f4a770f5d..82f80e89e 100644 --- a/native/jni/init/mount.cpp +++ b/native/jni/init/mount.cpp @@ -211,7 +211,7 @@ void SARInit::early_mount() { if (dev < 0) { // Try NVIDIA naming scheme strcpy(partname, "APP"); - dev = setup_block(); + dev = setup_block(false); if (dev < 0) { // We don't really know what to do at this point... LOGE("Cannot find root partition, abort\n");