summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/base-files/base-files/profile
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/base-files/base-files/profile')
-rw-r--r--meta/recipes-core/base-files/base-files/profile16
1 files changed, 12 insertions, 4 deletions
diff --git a/meta/recipes-core/base-files/base-files/profile b/meta/recipes-core/base-files/base-files/profile
index cc37e1ba77..bded3757cc 100644
--- a/meta/recipes-core/base-files/base-files/profile
+++ b/meta/recipes-core/base-files/base-files/profile
@@ -10,6 +10,12 @@ PATH="/usr/local/bin:/usr/bin:/bin"
10# Set the prompt for bash and ash (no other shells known to be in use here) 10# Set the prompt for bash and ash (no other shells known to be in use here)
11[ -z "$PS1" ] || PS1='\u@\h:\w\$ ' 11[ -z "$PS1" ] || PS1='\u@\h:\w\$ '
12 12
13# Use the EDITOR not being set as a trigger to call resize later on
14FIRSTTIMESETUP=0
15if [ -z "$EDITOR" ] ; then
16 FIRSTTIMESETUP=1
17fi
18
13if [ -d /etc/profile.d ]; then 19if [ -d /etc/profile.d ]; then
14 for i in /etc/profile.d/*.sh; do 20 for i in /etc/profile.d/*.sh; do
15 if [ -f $i -a -r $i ]; then 21 if [ -f $i -a -r $i ]; then
@@ -50,17 +56,19 @@ resize() {
50} 56}
51 fi 57 fi
52 fi 58 fi
53 # Use the EDITOR not being set as a trigger to call resize 59 # only do this for /dev/tty[A-z] which are typically
54 # and only do this for /dev/tty[A-z] which are typically
55 # serial ports 60 # serial ports
56 if [ -z "$EDITOR" -a "$SHLVL" = 1 ] ; then 61 if [ $FIRSTTIMESETUP -eq 1 -a $SHLVL -eq 1 ] ; then
57 case $(tty 2>/dev/null) in 62 case $(tty 2>/dev/null) in
58 /dev/tty[A-z]*) resize >/dev/null;; 63 /dev/tty[A-z]*) resize >/dev/null;;
59 esac 64 esac
60 fi 65 fi
61fi 66fi
62 67
63EDITOR="vi" # needed for packages like cron, git-commit 68if [ -z "$EDITOR" ]; then
69 EDITOR="vi" # needed for packages like cron, git-commit
70fi
71
64export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM 72export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM
65 73
66umask 022 74umask 022