Add missing /dev/pts

Missing /dev/pts causing "Can not write log, openpty() failed (/dev/pts not mounted?)"
pull/2/head
Teguh Sobirin 2016-04-16 21:02:48 +07:00
parent 99bf2f4d61
commit 20f687e907
1 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,10 @@ on_chroot() {
if ! mount | grep -q `realpath ${ROOTFS_DIR}/dev`; then if ! mount | grep -q `realpath ${ROOTFS_DIR}/dev`; then
mount --bind /dev ${ROOTFS_DIR}/dev mount --bind /dev ${ROOTFS_DIR}/dev
fi fi
if ! mount | grep -q `realpath ${ROOTFS_DIR}/dev/pts`; then
mount --bind /dev/pts ${ROOTFS_DIR}/dev/pts
fi
if ! mount | grep -q `realpath ${ROOTFS_DIR}/sys`; then if ! mount | grep -q `realpath ${ROOTFS_DIR}/sys`; then
mount --bind /sys ${ROOTFS_DIR}/sys mount --bind /sys ${ROOTFS_DIR}/sys