summaryrefslogtreecommitdiff
path: root/ext4_utils
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2018-01-24 04:21:59 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2018-01-24 04:21:59 +0000
commitcfb32d24898589ee8e1ec6b075c443689c9c7137 (patch)
tree743a326e472acfe93dacbfdeae783111499e0915 /ext4_utils
parente6572e3c6f406552383e9bf14136c1b1fa8c79e2 (diff)
parent48c84d1d8a876f4942a192901051c809ede23f42 (diff)
downloadextras-cfb32d24898589ee8e1ec6b075c443689c9c7137.tar.gz
Merge "ext4_utils: add option to compact duplicated blocks"
Diffstat (limited to 'ext4_utils')
-rwxr-xr-xext4_utils/mkuserimg_mke2fs.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/ext4_utils/mkuserimg_mke2fs.sh b/ext4_utils/mkuserimg_mke2fs.sh
index 8ba8777a..9f18c042 100755
--- a/ext4_utils/mkuserimg_mke2fs.sh
+++ b/ext4_utils/mkuserimg_mke2fs.sh
@@ -9,7 +9,7 @@ mkuserimg.sh [-s] SRC_DIR OUTPUT_FILE EXT_VARIANT MOUNT_POINT SIZE [-j <journal_
[-T TIMESTAMP] [-C FS_CONFIG] [-D PRODUCT_OUT] [-B BLOCK_LIST_FILE]
[-d BASE_ALLOC_FILE_IN ] [-A BASE_ALLOC_FILE_OUT ] [-L LABEL]
[-i INODES ] [-e ERASE_BLOCK_SIZE] [-o FLASH_BLOCK_SIZE]
- [-U MKE2FS_UUID] [-S MKE2FS_HASH_SEED] [FILE_CONTEXTS]
+ [-U MKE2FS_UUID] [-S MKE2FS_HASH_SEED] [-c] [FILE_CONTEXTS]
EOT
}
@@ -124,6 +124,11 @@ if [[ "$1" == "-S" ]]; then
shift; shift
fi
+if [[ "$1" == "-c" ]]; then
+ E2FSDROID_OPTS+=" -s"
+ shift;
+fi
+
if [[ $MKE2FS_EXTENDED_OPTS ]]; then
MKE2FS_OPTS+=" -E $MKE2FS_EXTENDED_OPTS"
fi