Skip to content

Commit

Permalink
mkfs.ext4 build incommpatible with 3.10 kernels ext4, when build on U…
Browse files Browse the repository at this point in the history
…buntu > 16.04
  • Loading branch information
hehopmajieh committed Dec 10, 2018
1 parent 672fff7 commit d4cdeaf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion SOFTWARE/A64-TERES/scripts/make_simpleimage.sh
Expand Up @@ -106,7 +106,12 @@ 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
mkfs.ext4 -F -b 4096 -E stride=2,stripe-width=1024 -L rootfs ${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
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"
rm -f ${out}2

Expand Down

0 comments on commit d4cdeaf

Please sign in to comment.