increase dvbapp PR.
[vuplus_openvuplus] / meta-openvuplus / recipes-core / base-files / base-files / vuplus / profile
1 # /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
2 # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
3
4 PATH="/usr/local/bin:/usr/bin:/bin"
5 EDITOR="/bin/vi"        # needed for packages like cron
6 TERM="xterm"            # Basic terminal capab. For screen etc.
7
8 if [ "`id -u`" -eq 0 ]; then
9    PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:
10 fi
11 if [ "$PS1" ]; then
12 # works for bash and ash (no other shells known to be in use here)
13    PS1='\u@\h:\w\$ '
14 fi
15
16 if [ -d /etc/profile.d ]; then
17   for i in `ls /etc/profile.d/`; do
18     . /etc/profile.d/$i
19   done
20   unset i
21 fi
22
23 export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM
24
25 umask 022
26