summaryrefslogtreecommitdiff
path: root/ext4_utils
diff options
context:
space:
mode:
authorPatrick Tjin <pattjin@google.com>2018-03-23 13:38:05 -0700
committerPatrick Tjin <pattjin@google.com>2018-03-23 14:46:02 -0700
commit15091d05ccb8cd8e7dce61cb2e0d781006494fdc (patch)
treea69aa5696501931aab49413413d91629b711920a /ext4_utils
parent56f68caff62f404cff5491b3e84e3d031781db32 (diff)
downloadextras-15091d05ccb8cd8e7dce61cb2e0d781006494fdc.tar.gz
mkuserimg_mke2fs: Support passing reserved block percent
Add support for passing reserved block percent when making filesystem (-M) Bug: 75975085 Test: build taimen, check that -M option takes effect Change-Id: Ie70159b2cce01e0611299726378e3bcf46fde389
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 9f18c042..408b4c9e 100755
--- a/ext4_utils/mkuserimg_mke2fs.sh
+++ b/ext4_utils/mkuserimg_mke2fs.sh
@@ -8,7 +8,7 @@ Usage:
mkuserimg.sh [-s] SRC_DIR OUTPUT_FILE EXT_VARIANT MOUNT_POINT SIZE [-j <journal_size>]
[-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]
+ [-i INODES ] [-M RSV_PCT] [-e ERASE_BLOCK_SIZE] [-o FLASH_BLOCK_SIZE]
[-U MKE2FS_UUID] [-S MKE2FS_HASH_SEED] [-c] [FILE_CONTEXTS]
EOT
}
@@ -94,6 +94,11 @@ if [[ "$1" == "-i" ]]; then
shift; shift
fi
+if [[ "$1" == "-M" ]]; then
+ MKE2FS_OPTS+=" -m $2"
+ shift; shift
+fi
+
if [[ "$1" == "-e" ]]; then
if [[ $MKE2FS_EXTENDED_OPTS ]]; then
MKE2FS_EXTENDED_OPTS+=","