diff options
author | Kenny Root <kroot@google.com> | 2012-03-30 20:44:45 -0700 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2012-03-30 20:46:16 -0700 |
commit | 1ecb8681c366b1c1e58473d97cd607195a06167f (patch) | |
tree | bc5e49472fedb62930809ebb75283103e3bfdefd | |
parent | f91259a8f0d75d721761d588a4b811427565c984 (diff) | |
download | system_core-1ecb8681c366b1c1e58473d97cd607195a06167f.zip system_core-1ecb8681c366b1c1e58473d97cd607195a06167f.tar.gz system_core-1ecb8681c366b1c1e58473d97cd607195a06167f.tar.bz2 |
fastboot: add support for SELinux and fs_config_func
There were some changes to make_ext4fs to add SELinux context. Also, we
changed the "android" argument to an fs_config_func that allows you to
customize the permissions put into a ext4 filesystem.
Change-Id: If23152c40659122a91771fcbd094f713b38e321e
-rw-r--r-- | fastboot/engine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fastboot/engine.c b/fastboot/engine.c index 93d24bc..994eeae 100644 --- a/fastboot/engine.c +++ b/fastboot/engine.c @@ -257,7 +257,7 @@ void generate_ext4_image(struct image_data *image) #endif reset_ext4fs_info(); info.len = image->partition_size; - make_ext4fs_internal(fd, NULL, NULL, 0, 0, 1, 0, 0, 0); + make_ext4fs_internal(fd, NULL, NULL, NULL, 0, 1, 0, 0, 0, NULL); fstat(fd, &st); image->image_size = st.st_size; |