diff options
author | Thomas Zimmermann <ml@vdm-design.de> | 2010-04-01 10:18:52 +0200 |
---|---|---|
committer | Thomas Zimmermann <ml@vdm-design.de> | 2010-04-01 10:18:52 +0200 |
commit | c297f5c5ff1d2405263dcd583a9a3ade1db13d0e (patch) | |
tree | 0501a6f88f42aaf8f843f23569f1a48fab1de7ad /recipes/base-files | |
parent | 6367be9ae09f8bd3a1dd131f6f93868b63c0e363 (diff) |
base-files: move profile for SHR from shr-image.inc to base-files
Signed-off-by: Thomas Zimmermann <ml@vdm-design.de>
Diffstat (limited to 'recipes/base-files')
-rw-r--r-- | recipes/base-files/base-files/shr/profile | 49 | ||||
-rw-r--r-- | recipes/base-files/base-files_3.0.14.bb | 2 |
2 files changed, 50 insertions, 1 deletions
diff --git a/recipes/base-files/base-files/shr/profile b/recipes/base-files/base-files/shr/profile new file mode 100644 index 0000000000..e39a8f1a63 --- /dev/null +++ b/recipes/base-files/base-files/shr/profile @@ -0,0 +1,49 @@ +# /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 [ "`id -u`" -eq 0 ]; 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/*.sh; do + if [ -r $i ]; then + . $i + fi + done + unset i +fi + +export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM + +umask 022 + +alias pico=nano +alias fso='cd /local/pkg/fso' +alias ipkg='opkg' +export PS1="\[\033[01;32m\]\u@\h\[\033[01;34m\] \w $\[\033[00m\] " +if [ "$DISPLAY" = "" ] +then + export DISPLAY=localhost:0 +fi +export HISTFILESIZE=1000 +export HISTSIZE=1000 +alias rm='rm -i'; alias cp='cp -i'; alias mv='mv -i' +alias la='ls -ltrA'; alias lh='ls -ltrh'; alias lr='ls -ltr'; +alias lR='ls -ltrR' +# set your locale here: +export LANG=en_US.UTF-8 diff --git a/recipes/base-files/base-files_3.0.14.bb b/recipes/base-files/base-files_3.0.14.bb index 3e112a360b..8f1de11c7b 100644 --- a/recipes/base-files/base-files_3.0.14.bb +++ b/recipes/base-files/base-files_3.0.14.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Miscellaneous files for the base system." SECTION = "base" PRIORITY = "required" -PR = "r90" +PR = "r91" LICENSE = "GPL" SRC_URI = " \ |