binary_rootfs stage: disable mksquashfs progress bar only in quiet mode
This commit is contained in:
parent
63c1a5997d
commit
0252065950
|
@ -265,7 +265,10 @@ case "${LB_CHROOT_FILESYSTEM}" in
|
|||
# Remove stale squashfs image
|
||||
rm -f chroot/filesystem.squashfs
|
||||
|
||||
MKSQUASHFS_OPTIONS="-no-progress ${MKSQUASHFS_OPTIONS}"
|
||||
if [ "${_QUIET}" = "true" ]
|
||||
then
|
||||
MKSQUASHFS_OPTIONS="-no-progress ${MKSQUASHFS_OPTIONS}"
|
||||
fi
|
||||
|
||||
if [ "${_VERBOSE}" = "true" ]
|
||||
then
|
||||
|
|
Loading…
Reference in New Issue