From: Bigo Date: Sun, 9 Jul 2017 11:41:24 +0000 (+0100) Subject: Update /dev and /dev/pts mount from --bind to proper fs type X-Git-Tag: v0.79~4 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=d0cd2dd238eae9a268d37d1979abfde532327e7b;ds=sidebyside Update /dev and /dev/pts mount from --bind to proper fs type --- 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