summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2017-07-14 02:04:12 +0200
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-07-14 02:04:12 +0200
commitf7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a (patch)
tree5cc47f00741220c606da8de89971a2f4533ecf8f
parentMerge "Fix the missing char when showing recovery logs." am: 8155a8ba74 am: c61bbe158e am: 762c42d6f6 (diff)
parentRemove the obsolete reference to /file_contexts. (diff)
downloadandroid_bootable_recovery-f7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a.tar
android_bootable_recovery-f7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a.tar.gz
android_bootable_recovery-f7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a.tar.bz2
android_bootable_recovery-f7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a.tar.lz
android_bootable_recovery-f7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a.tar.xz
android_bootable_recovery-f7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a.tar.zst
android_bootable_recovery-f7cc0e0cfb61f704b1a70c4c43fa0697bca2c04a.zip
-rw-r--r--roots.cpp4
-rw-r--r--updater/install.cpp3
2 files changed, 2 insertions, 5 deletions
diff --git a/roots.cpp b/roots.cpp
index e98dfd448..c4afd5de3 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -260,8 +260,6 @@ int format_volume(const char* volume, const char* directory) {
if (result == 0 && directory != nullptr) {
const char* e2fsdroid_argv[] = { "/sbin/e2fsdroid_static",
"-e",
- "-S",
- "/file_contexts",
"-f",
directory,
"-a",
@@ -270,7 +268,7 @@ int format_volume(const char* volume, const char* directory) {
nullptr };
result = exec_cmd(e2fsdroid_argv[0], const_cast<char**>(e2fsdroid_argv));
- }
+ }
} else { /* Has to be f2fs because we checked earlier. */
if (v->key_loc != NULL && strcmp(v->key_loc, "footer") == 0 && length < 0) {
LOG(ERROR) << "format_volume: crypt footer + negative length (" << length
diff --git a/updater/install.cpp b/updater/install.cpp
index c9a3a0799..bfe91e7f9 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -322,8 +322,7 @@ Value* FormatFn(const char* name, State* state, const std::vector<std::unique_pt
return StringValue(location);
}
- const char* e2fsdroid_argv[] = { "/sbin/e2fsdroid_static", "-e", "-S",
- "/file_contexts", "-a", mount_point.c_str(),
+ const char* e2fsdroid_argv[] = { "/sbin/e2fsdroid_static", "-e", "-a", mount_point.c_str(),
location.c_str(), nullptr };
status = exec_cmd(e2fsdroid_argv[0], const_cast<char**>(e2fsdroid_argv));
if (status != 0) {