summaryrefslogtreecommitdiff
path: root/recipes/base-files/base-files/profile
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2016-07-25 19:39:32 +0200
committerStefan Agner <stefan.agner@toradex.com>2016-09-28 13:27:17 -0700
commit1a63d646e642b27cae88bcd6839b1a5e63e921bc (patch)
tree897b91acc497df25a32cf9eed9854f1af59827dd /recipes/base-files/base-files/profile
parent4ea9cfba51198803c102fc09c0d5804e74ec4f13 (diff)
base-files: mv all files into recipes-core/base-files
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'recipes/base-files/base-files/profile')
-rw-r--r--recipes/base-files/base-files/profile41
1 files changed, 0 insertions, 41 deletions
diff --git a/recipes/base-files/base-files/profile b/recipes/base-files/base-files/profile
deleted file mode 100644
index 7b8b80d..0000000
--- a/recipes/base-files/base-files/profile
+++ /dev/null
@@ -1,41 +0,0 @@
-# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
-# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
-
-PATH="/usr/local/bin:/usr/bin:/bin"
-EDITOR="/bin/vi" # needed for packages like cron
-test -z "$TERM" && TERM="vt100" # Basic terminal capab. For screen etc.
-
-if [ ! -e /etc/localtime ]; then
- TZ="UTC" # Time Zone. Look at http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html
- # for an explanation of how to set this to your local timezone.
- export TZ
-fi
-
-if [ "$HOME" = "/home/root" ]; then
- PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin
-fi
-if [ "$PS1" ]; then
-# works for bash and ash (no other shells known to be in use here)
- PS1='\u@\h:\w\$ '
-fi
-
-if [ -d /etc/profile.d ]; then
- for i in /etc/profile.d/* ; do
- . $i
- done
- unset i
-fi
-
-test -z "$DISPLAY" && DISPLAY=":0.0" # have the X display defined, unless it is already set, e.g. by a ssh connection
-export DISPLAY
-
-export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM
-
-# Serial consoles are not able to autoresize. Set size once upon login.
-# 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
-LOGINDEV=`tty | cut -c1-8`
-test "$LOGINDEV" = "/dev/tty" && resize
-
-umask 022
-