From 779701db515d1a0d363d5a8896252f331bc4e22a Mon Sep 17 00:00:00 2001 From: Stephen Smalley Date: Thu, 9 Feb 2012 14:13:23 -0500 Subject: Extend recovery and updater to support setting file security contexts. Extend minzip, recovery, and updater to set the security context on files based on the file_contexts configuration included in the package. Change-Id: Ied379f266a16c64f2b4dca15dc39b98fcce16f29 --- roots.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'roots.c') 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; -- cgit v1.2.3