diff --git a/SOFTWARE/A64-TERES/scripts/make_simpleimage.sh b/SOFTWARE/A64-TERES/scripts/make_simpleimage.sh index 64217124..c71f21f3 100755 --- a/SOFTWARE/A64-TERES/scripts/make_simpleimage.sh +++ b/SOFTWARE/A64-TERES/scripts/make_simpleimage.sh @@ -106,10 +106,11 @@ rm -f ${out}1 # Create additional ext4 file system for rootfs dd if=/dev/zero bs=1M count=$((disk_size-boot_size-part_position/1024)) of=${out}2 - if [[ $(lsb_release -sc) == "bionic" ]]; then - mkfs.ext4 -F -O ^64bit,^csum_metadata -b 4096 -E stride=2,stripe-width=1024 -L rootfs ${out}2 - else - mkfs.ext4 -F -b 4096 -E stride=2,stripe-width=1024 -L rootfs ${out}2 +mkfs.ext4 -F -b 4096 -E stride=2,stripe-width=1024 -L rootfs ${out}2 +if [ $(lsb_release -sc) = "bionic" ]; then + tune2fs -O ^metadata_csum ${out}2 + tune2fs -O ^64bit ${out}2 + resize2fs -s ${out}2 fi #kfs.ext4 -F -b 4096 -E stride=2,stripe-width=1024 -L rootfs ${out}2 dd if=${out}2 conv=notrunc oflag=append bs=1M seek=$((part_position/1024+boot_size)) of="$out"