diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2013-10-23 21:01:03 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-10-23 21:01:22 +0200 |
commit | 006e38d9558e0d8359cfd01ed22a8e84839df10a (patch) | |
tree | 2caa4822584147af357ca0140c120eaecad2c1af | |
parent | 955175ac4b9acb06101a9ec7a0b3b41d4f17087f (diff) | |
download | vyos-live-build-006e38d9558e0d8359cfd01ed22a8e84839df10a.tar.gz vyos-live-build-006e38d9558e0d8359cfd01ed22a8e84839df10a.zip |
Weakening mode on pts for compliance with eglibc 2.18 within containers during build.
-rwxr-xr-x | scripts/build/chroot_devpts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/chroot_devpts b/scripts/build/chroot_devpts index a8416c611..a7359b796 100755 --- a/scripts/build/chroot_devpts +++ b/scripts/build/chroot_devpts @@ -47,7 +47,7 @@ case "${1}" in mkdir -p chroot/dev/pts # Mounting /dev/pts - mount devpts-live -t devpts chroot/dev/pts || true + mount devpts-live -t devpts -o gid=5,mode=620 chroot/dev/pts || true # Creating stage file Create_stagefile .build/chroot_devpts |