summaryrefslogtreecommitdiffstats
path: root/roots.cpp
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2012-03-31 05:48:34 +0200
committerKenny Root <kroot@google.com>2012-03-31 06:26:01 +0200
commit41dda82d847ae8c261b09c383806b412d680f935 (patch)
tree98edeec4fa5d9df2d0104624d66b1608cecdaf50 /roots.cpp
parentMerge "fail edify script if set_perm() or symlink() fails" (diff)
parentam 155cd3c1: Merge changes Ied379f26,I09fb9d56 (diff)
downloadandroid_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.gz
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.bz2
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.lz
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.xz
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.tar.zst
android_bootable_recovery-41dda82d847ae8c261b09c383806b412d680f935.zip
Diffstat (limited to 'roots.cpp')
-rw-r--r--roots.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/roots.cpp b/roots.cpp
index 9345cb0a2..ca37cf149 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -31,6 +31,8 @@
static int num_volumes = 0;
static Volume* device_volumes = NULL;
+extern struct selabel_handle *sehandle;
+
static int parse_options(char* options, Volume* volume) {
char* option;
while ((option = strtok(options, ","))) {
@@ -269,7 +271,7 @@ int format_volume(const char* volume) {
}
if (strcmp(v->fs_type, "ext4") == 0) {
- int result = make_ext4fs(v->device, v->length);
+ int result = make_ext4fs(v->device, v->length, volume, sehandle);
if (result != 0) {
LOGE("format_volume: make_extf4fs failed on %s\n", v->device);
return -1;