summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBowgo Tsai <bowgotsai@google.com>2017-03-31 04:39:46 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-03-31 04:39:46 +0200
commitd99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d (patch)
tree9a4d5ac83a4c9bfa3122dc10e7b63d8f694368ca
parentMerge "updater: Move RangeSinkWrite into RangeSinkState." am: 65c065b4bb am: 7ccb4090d1 am: 8538fab040 (diff)
parentMerge "recovery: switch to fs_mgr_read_fstab_default()" am: d0c7ae1fa6 am: 0e728806f3 (diff)
downloadandroid_bootable_recovery-d99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d.tar
android_bootable_recovery-d99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d.tar.gz
android_bootable_recovery-d99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d.tar.bz2
android_bootable_recovery-d99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d.tar.lz
android_bootable_recovery-d99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d.tar.xz
android_bootable_recovery-d99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d.tar.zst
android_bootable_recovery-d99ff0df7cba2ee7c2d0cc4e1bde5d228fb7f90d.zip
-rw-r--r--roots.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/roots.cpp b/roots.cpp
index 5ba53c245..6e5ef9810 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -44,9 +44,9 @@ void load_volume_table()
int i;
int ret;
- fstab = fs_mgr_read_fstab_with_dt("/etc/recovery.fstab");
+ fstab = fs_mgr_read_fstab_default();
if (!fstab) {
- LOG(ERROR) << "failed to read /etc/recovery.fstab";
+ LOG(ERROR) << "failed to read default fstab";
return;
}