From d0cd2dd238eae9a268d37d1979abfde532327e7b Mon Sep 17 00:00:00 2001 From: Bigo Date: Sun, 9 Jul 2017 12:41:24 +0100 Subject: [PATCH] Update /dev and /dev/pts mount from --bind to proper fs type --- grml-debootstrap | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/grml-debootstrap b/grml-debootstrap index 18b1ef4..9eb6b9e 100755 --- a/grml-debootstrap +++ b/grml-debootstrap @@ -1241,8 +1241,8 @@ finalize_vm() { mount -t proc none "${MNTPOINT}"/proc mount -t sysfs none "${MNTPOINT}"/sys - mount --bind /dev "${MNTPOINT}"/dev - mount --bind /dev/pts "${MNTPOINT}"/dev/pts + mount -t devtmpfs udev "${MNTPOINT}"/dev + mount -t devpts devpts "${MNTPOINT}"/dev/pts # Has chroot-script installed GRUB to MBR using grub-install (successfully), already? # chroot-script skips installation for unset ${GRUB} @@ -1575,8 +1575,8 @@ chrootscript() { eend 1 else einfo "Executing chroot-script now" - mount --bind /dev "$MNTPOINT"/dev - mount --bind /dev/pts "$MNTPOINT"/dev/pts + mount -t devtmpfs udev "${MNTPOINT}"/dev + mount -t devpts devpts "${MNTPOINT}"/dev/pts if [ "$DEBUG" = "true" ] ; then chroot "$MNTPOINT" /bin/bash -x /bin/chroot-script ; RC=$? else -- 2.1.4