diff options
author | Kenny Root <kroot@android.com> | 2012-03-31 00:18:10 +0200 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-03-31 00:18:11 +0200 |
commit | 155cd3c155004433215147437cdf71844c9efd87 (patch) | |
tree | 46aacb687e7126a5a64949dd7ade2f284ee57c15 /roots.c | |
parent | Reconcile with ics-mr1-release (diff) | |
parent | Extend recovery and updater to support setting file security contexts. (diff) | |
download | android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.gz android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.bz2 android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.lz android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.xz android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.zst android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.zip |
Diffstat (limited to 'roots.c')
-rw-r--r-- | roots.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -31,6 +31,8 @@ static int num_volumes = 0; static Volume* device_volumes = NULL; +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; |