diff options
author | Matt Housh <jaeger@crux.nu> | 2014-02-24 22:09:16 -0600 |
---|---|---|
committer | Matt Housh <jaeger@crux.nu> | 2014-02-24 22:09:16 -0600 |
commit | 4fde551b21d7cbf8f8b5d3f2474b4f698089517f (patch) | |
tree | f2050f7284dcc88329f5a9c06861e9138050b439 /iso | |
parent | 760fa70983cac1504a628ddf2bfe2c0894ab4aa2 (diff) | |
download | iso-4fde551b21d7cbf8f8b5d3f2474b4f698089517f.tar.gz iso-4fde551b21d7cbf8f8b5d3f2474b4f698089517f.tar.xz |
setup-chroot: update devpts mount options
Diffstat (limited to 'iso')
-rwxr-xr-x | iso/bin/setup-chroot | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/iso/bin/setup-chroot b/iso/bin/setup-chroot index 1d453d8..d7768e9 100755 --- a/iso/bin/setup-chroot +++ b/iso/bin/setup-chroot @@ -4,7 +4,6 @@ mount --bind /dev /mnt/dev mount --bind /tmp /mnt/tmp mount -t proc proc /mnt/proc mount -t sysfs none /mnt/sys -mount -t devpts devpts /mnt/dev/pts +mount -t devpts -o noexec,nosuid,gid=tty,mode=0620 devpts /mnt/dev/pts chroot /mnt /bin/bash - |