index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | archiso/mkarchiso | 5 |
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index f9c64ac..b6c5822 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -155,11 +155,6 @@ _cleanup_airootfs() { } _run_mksquashfs() { - # Set default mksquashfs options - if (( ${#airootfs_image_tool_options[@]} < 1 )); then - airootfs_image_tool_options=('-comp' 'xz') - fi - local image_path="${isofs_dir}/${install_dir}/${arch}/airootfs.sfs" if [[ "${quiet}" == "y" ]]; then mksquashfs "$@" "${image_path}" -noappend "${airootfs_image_tool_options[@]}" -no-progress > /dev/null |