aboutsummaryrefslogtreecommitdiffstats
path: root/install/fuse_sdcard_install.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'install/fuse_sdcard_install.cpp')
-rw-r--r--install/fuse_sdcard_install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/fuse_sdcard_install.cpp b/install/fuse_sdcard_install.cpp
index abf3bf37..195652ce 100644
--- a/install/fuse_sdcard_install.cpp
+++ b/install/fuse_sdcard_install.cpp
@@ -131,7 +131,7 @@ static bool StartSdcardFuse(const std::string& path) {
// The installation process expects to find the sdcard unmounted. Unmount it with MNT_DETACH so
// that our open file continues to work but new references see it as unmounted.
- umount2("/sdcard", MNT_DETACH);
+ umount2("/data", MNT_DETACH);
return run_fuse_sideload(std::move(file_data_reader)) == 0;
}