Use the new executable for mkuserimg_mke2fs

This is in line with the change of mkuserimg_mke2fs.sh to python binary.

Bug: 112555072
Bug: 63866463
Test: unittests pass
Change-Id: I82c0be1e5bbc685edc15120da73aa43fdc9f2f05
This commit is contained in:
Tianjie Xu
2018-08-15 16:16:21 -07:00
parent 48a575c029
commit 573322279a
5 changed files with 6 additions and 6 deletions

View File

@@ -625,7 +625,7 @@ def BuildImage(in_dir, prop_dict, out_file, target_out=None):
if "flash_logical_block_size" in prop_dict:
build_command.extend(["-o", prop_dict["flash_logical_block_size"]])
# Specify UUID and hash_seed if using mke2fs.
if prop_dict["ext_mkuserimg"] == "mkuserimg_mke2fs.sh":
if prop_dict["ext_mkuserimg"] == "mkuserimg_mke2fs":
if "uuid" in prop_dict:
build_command.extend(["-U", prop_dict["uuid"]])
if "hash_seed" in prop_dict: