Merge \"Pass block_list param to mksquashfs\" into nyc-dev

am: 3bddf74752

Change-Id: I713c6a60d10ef1e85475e462bb34c89751f74e7d
This commit is contained in:
Mohamad Ayyash 2016-06-15 16:58:36 +00:00 committed by android-build-merger
commit f80e55b821

View file

@ -400,6 +400,8 @@ def BuildImage(in_dir, prop_dict, out_file, target_out=None):
build_command.extend(["-C", fs_config])
if "selinux_fc" in prop_dict:
build_command.extend(["-c", prop_dict["selinux_fc"]])
if "block_list" in prop_dict:
build_command.extend(["-B", prop_dict["block_list"]])
if "squashfs_compressor" in prop_dict:
build_command.extend(["-z", prop_dict["squashfs_compressor"]])
if "squashfs_compressor_opt" in prop_dict: