base-files: Update issue, issue.net and profile for jornada6xx
authorAlex Ferguson <thoughtmonster@gmail.com>
Sat, 20 Nov 2010 13:46:10 +0000 (15:46 +0200)
committerKristoffer Ericson <kristoffer.ericson@gmail.com>
Sat, 20 Nov 2010 13:57:47 +0000 (14:57 +0100)
Copied profile from ben-nanonote, updated issue and issue.net strings.

Signed-off-by: Alex Ferguson <thoughtmonster@gmail.com>
Signed-off-by: Kristoffer Ericson <kristoffer.ericson@gmail.com>
recipes/base-files/base-files/jornada6xx/issue
recipes/base-files/base-files/jornada6xx/issue.net
recipes/base-files/base-files/jornada6xx/profile [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index bd9e3e6..551c90d
@@ -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
+