X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=chroot-script;fp=chroot-script;h=a27dd58baefe6c50fd47a947f3c4ac6dec05a64c;hb=1537613474d4b4483ea6321f211113a3e6522c04;hp=a5f92c402c847e97b6f182a7fd2af9a071c0d8b3;hpb=01b5b0ffb4b75b85a169003d917fbb917bafc5b1;p=grml-debootstrap.git diff --git a/chroot-script b/chroot-script index a5f92c4..a27dd58 100755 --- a/chroot-script +++ b/chroot-script @@ -481,7 +481,15 @@ createfstab(){ EOF if [ -n "$TARGET_UUID" ] ; then - echo "/dev/disk/by-uuid/${TARGET_UUID} / auto defaults,errors=remount-ro 0 1" >> /etc/fstab + local rootfs_mount_options=",errors=remount-ro" + case "${FILESYSTEM}" in + f2fs) + # errors=remount-ro is unsupported, see https://github.com/grml/grml-debootstrap/issues/163 + rootfs_mount_options="" + ;; + esac + + echo "/dev/disk/by-uuid/${TARGET_UUID} / auto defaults${rootfs_mount_options} 0 1" >> /etc/fstab else echo "Warning: couldn't identify target UUID for rootfs, your /etc/fstab might be incomplete." fi