setupBindmounts() { mount -t proc proc $BROOT_BUILDROOT_PATH/proc mount -o bind /dev $BROOT_BUILDROOT_PATH/dev [ ! -f $BROOT_BUILDROOT_PATH/dev/pts ] && mkdir -p $BROOT_BUILDROOT_PATH/dev/pts chroot $BROOT_BUILDROOT_PATH mount -t devpts devpts /dev/pts [ "x$(cat /proc/mounts | grep -q "/tmp/deb")" == "x" ] && mount -o bind /tmp/deb $BROOT_BUILDROOT_PATH/var/cache/apt/archives } destroyBindmounts() { umount $BROOT_BUILDROOT_PATH/proc umount $BROOT_BUILDROOT_PATH/dev/pts umount $BROOT_BUILDROOT_PATH/dev umount /tmp/deb }