[oe-commits] [openembedded-core] 08/09: base-files: resize only serial tty's in profile

git at git.openembedded.org git at git.openembedded.org
Fri Mar 31 11:29:39 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 474ef7c95722aa68ee5dfbae2920d7c3d436d717
Author: Daniel Díaz <daniel.diaz at linaro.org>
AuthorDate: Thu Mar 23 15:34:44 2017 -0600

    base-files: resize only serial tty's in profile
    
    We don't want to run resize on non serial consoles. There's
    been an earlier attempt (6557787), so this builds upon that.
    
    The problem we're seeing is that if there is text buffered in
    the virtual console (like from a desperate user trying to
    enter login details), resize will get stuck while calling
      ioctl(tty, TCSETAW);
    
    Since serial consoles are named (not just numbered), this
    change limits resize's reach even further to run only on
    /dev/tty[A-z] (thus avoiding /dev/tty[0-9]).
    
    Signed-off-by: Daniel Díaz <daniel.diaz at linaro.org>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-core/base-files/base-files/profile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/base-files/base-files/profile b/meta/recipes-core/base-files/base-files/profile
index 7367fd1..c616616 100644
--- a/meta/recipes-core/base-files/base-files/profile
+++ b/meta/recipes-core/base-files/base-files/profile
@@ -26,7 +26,7 @@ if [ -x /usr/bin/resize ] && termpath="`tty`"; then
   # Make sure we are on a serial console (i.e. the device used starts with /dev/tty),
   # otherwise we confuse e.g. the eclipse launcher which tries do use ssh
   case "$termpath" in
-  /dev/tty*) resize >/dev/null
+  /dev/tty[A-z]*) resize >/dev/null
   esac
 fi
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list