diff options
author | R. Dale Thomas <rdt@knoppmyth.net> | 2008-10-04 16:46:34 (GMT) |
---|---|---|
committer | R. Dale Thomas <rdt@knoppmyth.net> | 2008-10-04 16:46:34 (GMT) |
commit | 4b76a925847572de86f13f9407d0be3641fa9d5d (patch) | |
tree | 9c1ac24295df132e5a5571e116560428e70e2963 /templates/enter_dev_chroot.sh | |
parent | 5a180c0eb35639912cff68b08def263b5b14b4a2 (diff) | |
parent | 8202aecfb8f6937a30bfd06f2d586e45596d445a (diff) | |
download | linhes_dev-4b76a925847572de86f13f9407d0be3641fa9d5d.zip |
Merge branch 'HEAD' of ssh://rdt@knoppmyth.net/mount/repository/LinHES-dev.git
Diffstat (limited to 'templates/enter_dev_chroot.sh')
-rw-r--r-- | templates/enter_dev_chroot.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/enter_dev_chroot.sh b/templates/enter_dev_chroot.sh index 8f5eb40..1bf957b 100644 --- a/templates/enter_dev_chroot.sh +++ b/templates/enter_dev_chroot.sh @@ -66,6 +66,7 @@ fi [ -e $BROOT/dev/random ] || mknod $BROOT/dev/random c 1 8 [ -e $BROOT/dev/urandom ] || mknod $BROOT/dev/urandom c 1 9 [ -e $BROOT/dev/tty ] || mknod $BROOT/dev/tty c 5 0 +[ -e $BROOT/dev/ptmx ] || mknod $BROOT/dev/ptmx c 5 2 @@ -162,7 +163,7 @@ fi echo -e "\e]0;chroot-pkgbuild\a" #used for Konsole echo -e "\e]30;chroot-pkgbuild\a" -env -i /usr/sbin/chroot $BROOT /bin/bash --login +env -i TERM=$TERM /usr/sbin/chroot $BROOT /bin/bash --login |