]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/base-files/base-files/profile
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / base-files / base-files / 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="vt100"            # Basic terminal capab. For screen etc.
7
8 if [ ! -e /etc/localtime ]; then
9         TZ="UTC"                # Time Zone. Look at http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html 
10                                 # for an explanation of how to set this to your local timezone.
11         export TZ
12 fi
13
14 if [ "`id -u`" -eq 0 ]; then
15    PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:
16 fi
17 if [ "$PS1" ]; then
18 # works for bash and ash (no other shells known to be in use here)
19    PS1='\u@\h:\w\$ '
20 fi
21
22 if [ -d /etc/profile.d ]; then
23   for i in `ls /etc/profile.d/`; do
24     . /etc/profile.d/$i
25   done
26   unset i
27 fi
28
29 export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM
30
31 umask 022
32