From: Michael Prokop Date: Fri, 4 Jun 2021 08:50:41 +0000 (+0200) Subject: Merge remote-tracking branch 'origin/pr/175' X-Git-Tag: v0.98~4 X-Git-Url: https://git.grml.org/?a=commitdiff_plain;h=e914b6aa3fbdfbd281b1fa6ca17e7adbe99e5d7c;hp=1801808abd60403717962f13ce6aaf861e1a7459;p=grml-debootstrap.git Merge remote-tracking branch 'origin/pr/175' --- diff --git a/grml-debootstrap b/grml-debootstrap index 52d428f..2d9aa1d 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -1546,8 +1546,11 @@ if [[ -z "${GRUB}" ]] || ! dd if="${GRUB}" bs=512 count=1 2>/dev/null | cat -v | f2fs) chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos f2fs ;; - # NOTE - we might need to distinguish between further filesystems - *) + xfs) + chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos xfs + ;; + # NOTE - we might need to distinguish between further filesystems + *) chroot "${MNTPOINT}" grub-mkimage -O i386-pc -p "(hd0,msdos1)/boot/grub" -o /tmp/core.img biosdisk part_msdos ext2 ;; esac