Am I the only one getting a build error on 23fsck failing with created
userdata.img?
I just turned the flag off for the check in build_image.py
diff --git a/tools/releasetools/build_image.py
b/tools/releasetools/build_image.py
index 94a9fda..734ca34 100755
--- a/tools/releasetools/build_image.py
+++ b/tools/releasetools/build_image.py
@@ -56,7 +56,7 @@ def BuildImage(in_dir, prop_dict, out_file):
build_command = ["mkuserimg.sh"]
if "extfs_sparse_flag" in prop_dict:
build_command.append(prop_dict["extfs_sparse_flag"])
- run_fsck = True
+ run_fsck = False
build_command.extend([in_dir, out_file, fs_type,
prop_dict["mount_point"]])
if "partition_size" in prop_dict:
--
Respectfully,
William C Roberts