From 1ecb8681c366b1c1e58473d97cd607195a06167f Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Fri, 30 Mar 2012 20:44:45 -0700 Subject: 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 --- fastboot/engine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.1