From e33eba1535373390a57c659bc0dbdf480d7617cd Mon Sep 17 00:00:00 2001 From: Alex Ferguson Date: Sat, 20 Nov 2010 15:46:10 +0200 Subject: base-files: Update issue, issue.net and profile for jornada6xx Copied profile from ben-nanonote, updated issue and issue.net strings. Signed-off-by: Alex Ferguson Signed-off-by: Kristoffer Ericson --- recipes/base-files/base-files/jornada6xx/profile | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) mode change 100755 => 100644 recipes/base-files/base-files/jornada6xx/profile (limited to 'recipes/base-files/base-files/jornada6xx/profile') diff --git a/recipes/base-files/base-files/jornada6xx/profile b/recipes/base-files/base-files/jornada6xx/profile old mode 100755 new mode 100644 index bd9e3e6158..551c90d4d8 --- a/recipes/base-files/base-files/jornada6xx/profile +++ b/recipes/base-files/base-files/jornada6xx/profile @@ -5,24 +5,26 @@ PATH="/bin:/usr/bin:/usr/local/bin:/usr/games" EDITOR="/usr/bin/nano" # needed for packages like cron TERM="linux" # Basic terminal capab. For screen etc. -if [ "`id -u`" -eq 0 ]; then - PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" -fi - if [ ! -e /etc/localtime -a ! -e /etc/TZ ]; then - TZ="UTC" # Time Zone. Look at http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html + 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 `ls /etc/profile.d/`; do - . /etc/profile.d/$i + for i in /etc/profile.d/*.sh; do + if [ -r $i ]; then + . $i + fi done unset i fi @@ -31,4 +33,5 @@ alias ls='ls --color' export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM -umask 022 \ No newline at end of file +umask 022 + -- cgit 1.2.3-korg