Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
system_extras
Commits
041bdd8e
Commit
041bdd8e
authored
9 years ago
by
Mohamad Ayyash
Committed by
Android (Google) Code Review
9 years ago
Browse files
Options
Download
Plain Diff
Merge "mksquashfsimage.sh: Make disable-4k-align a paramter" into nyc-dev
parents
7354c0e1
084df12b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
squashfs_utils/mksquashfsimage.sh
squashfs_utils/mksquashfsimage.sh
+10
-1
No files found.
squashfs_utils/mksquashfsimage.sh
View file @
041bdd8e
...
...
@@ -5,7 +5,7 @@
function
usage
()
{
cat
<<
EOT
Usage:
${
0
##*/
}
SRC_DIR OUTPUT_FILE [-s] [-m MOUNT_POINT] [-d PRODUCT_OUT] [-C FS_CONFIG ] [-c FILE_CONTEXTS] [-B BLOCK_MAP_FILE] [-b BLOCK_SIZE] [-z COMPRESSOR] [-zo COMPRESSOR_OPT]
${
0
##*/
}
SRC_DIR OUTPUT_FILE [-s] [-m MOUNT_POINT] [-d PRODUCT_OUT] [-C FS_CONFIG ] [-c FILE_CONTEXTS] [-B BLOCK_MAP_FILE] [-b BLOCK_SIZE] [-z COMPRESSOR] [-zo COMPRESSOR_OPT]
[-a ]
EOT
}
...
...
@@ -79,6 +79,12 @@ if [[ "$1" == "-zo" ]]; then
shift
;
shift
fi
DISABLE_4K_ALIGN
=
false
if
[[
"
$1
"
==
"-a"
]]
;
then
DISABLE_4K_ALIGN
=
true
shift
;
fi
OPT
=
""
if
[
-n
"
$MOUNT_POINT
"
]
;
then
OPT
=
"
$OPT
-mount-point
$MOUNT_POINT
"
...
...
@@ -98,6 +104,9 @@ fi
if
[
-n
"
$BLOCK_SIZE
"
]
;
then
OPT
=
"
$OPT
-b
$BLOCK_SIZE
"
fi
if
[
"
$DISABLE_4K_ALIGN
"
=
true
]
;
then
OPT
=
"
$OPT
-disable-4k-align"
fi
MAKE_SQUASHFS_CMD
=
"mksquashfs
$SRC_DIR
/
$OUTPUT_FILE
-no-progress -comp
$COMPRESSOR
$COMPRESSOR_OPT
-no-exports -noappend -no-recovery -no-fragments -no-duplicates -android-fs-config
$OPT
"
echo
$MAKE_SQUASHFS_CMD
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment