summaryrefslogtreecommitdiffstats
path: root/roots.c
diff options
context:
space:
mode:
authorStephen Smalley <sds@tycho.nsa.gov>2012-02-09 20:13:23 +0100
committerStephen Smalley <sds@tycho.nsa.gov>2012-03-30 15:32:46 +0200
commit779701db515d1a0d363d5a8896252f331bc4e22a (patch)
tree46aacb687e7126a5a64949dd7ade2f284ee57c15 /roots.c
parentAdd libselinux to LOCAL_STATIC_LIBRARIES wherever libext4_utils is used. (diff)
downloadandroid_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar
android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.gz
android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.bz2
android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.lz
android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.xz
android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.zst
android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.zip
Diffstat (limited to 'roots.c')
-rw-r--r--roots.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/roots.c b/roots.c
index cb7e067a1..f4a256f71 100644
--- a/roots.c
+++ b/roots.c
@@ -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;