summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/base-files
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2017-07-12 10:44:12 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-17 14:01:39 +0100
commitb066632e2ee0e65b80b6c436072bedba820f2604 (patch)
tree4ec6edffbfd3ef32f9f7a4911a1788d3bd25826a /meta/recipes-core/base-files
parent3ae1f267d4fd887e6b7039cada73b5de034a846d (diff)
downloadpoky-b066632e2ee0e65b80b6c436072bedba820f2604.tar.gz
base-files: ignore "mesg n" error messages
When using "su - myuser" to change from root to a non-privileged user, "mesg n" from the default .profile fails with "mesg: error: tty device is not owned by group `tty' or "mesg: cannot open /dev/ttyS0: Permission denied", depending on whether mesg comes from busybox or util-linux. This does not happen during a normal login because permissions on /dev/tty* get changed while doing that, something that isn't possible with plain "su -". As the error can't be avoided and failures of mesg probably aren't particularly important, now error messages get dumped to /dev/null. [YOCTO #11127] (From OE-Core rev: 4511a524f906c97db7c7674ad34e7bc8630649e3) Signed-off-by: Patrick Ohly <patrick.ohly@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/base-files')
-rw-r--r--meta/recipes-core/base-files/base-files/share/dot.profile3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-core/base-files/base-files/share/dot.profile b/meta/recipes-core/base-files/base-files/share/dot.profile
index 979793e8b5..a87316077c 100644
--- a/meta/recipes-core/base-files/base-files/share/dot.profile
+++ b/meta/recipes-core/base-files/base-files/share/dot.profile
@@ -7,4 +7,5 @@ fi
7# path set by /etc/profile 7# path set by /etc/profile
8# export PATH 8# export PATH
9 9
10mesg n 10# Might fail after "su - myuser" when /dev/tty* is not writable by "myuser".
11mesg n 2>/dev/null