Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ff8c6ac authored by Tao Bao's avatar Tao Bao Committed by android-build-merger
Browse files

Merge "Revert "libbootloader_message: use different fstab paths for...

Merge "Revert "libbootloader_message: use different fstab paths for normal/recovery boot"" am: 27c3e478 am: b0e768e2
am: e65835d5

Change-Id: I518933a6b2f9bd03653924bda5511f7d4a3b15f1
parents f5c40b2e e65835d5
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>

#include <string>
#include <vector>
@@ -31,13 +30,8 @@
#include <fs_mgr.h>

static std::string get_misc_blk_device(std::string* err) {
  std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(nullptr, fs_mgr_free_fstab);
  // Use different fstab paths for normal boot and recovery boot, respectively
  if (access("/sbin/recovery", F_OK) == 0) {
    fstab.reset(fs_mgr_read_fstab_with_dt("/etc/recovery.fstab"));
  } else {
    fstab.reset(fs_mgr_read_fstab_default());
  }
  std::unique_ptr<fstab, decltype(&fs_mgr_free_fstab)> fstab(fs_mgr_read_fstab_default(),
                                                             fs_mgr_free_fstab);
  if (!fstab) {
    *err = "failed to read default fstab";
    return "";