summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/base-files/base-files/profile
diff options
context:
space:
mode:
authorTing Liu <ting.liu@freescale.com>2014-07-31 18:21:01 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-08-06 10:23:40 +0100
commit73c481d2cbc3e7c7ef9f594126aec581ec75b689 (patch)
tree04194e324c19bd75181d12ad8df0f22bb607bae4 /meta/recipes-core/base-files/base-files/profile
parenta40db96621fdbc36889a53279aa8840513444a76 (diff)
downloadpoky-73c481d2cbc3e7c7ef9f594126aec581ec75b689.tar.gz
base-files: set dynamic COLUMNS via resize command
By default, COLUMNS is set to 80. If possible, run 'resize' to determine what the current dimensions are. This avoids the final part of long lines overlap the start of the same line. (From OE-Core rev: cc6360f4c4d97e0000f9d3545f381224ee99ce7d) Signed-off-by: Ting Liu <ting.liu@freescale.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/base-files/base-files/profile')
-rw-r--r--meta/recipes-core/base-files/base-files/profile4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/base-files/base-files/profile b/meta/recipes-core/base-files/base-files/profile
index 0b2d9d79e5..88ab8d877b 100644
--- a/meta/recipes-core/base-files/base-files/profile
+++ b/meta/recipes-core/base-files/base-files/profile
@@ -26,6 +26,10 @@ if [ -d /etc/profile.d ]; then
26 unset i 26 unset i
27fi 27fi
28 28
29if [ -x /usr/bin/resize ];then
30 /usr/bin/resize >/dev/null
31fi
32
29export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM 33export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM
30 34
31umask 022 35umask 022