aboutsummaryrefslogtreecommitdiffstats
path: root/base-files
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-06-06 21:13:06 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-06-06 21:13:06 +0000
commit770af488582441a0dce0632514e13bc61fa6b1bf (patch)
tree97096074bdc53f0875a3db6f32f1221a2afe6f58 /base-files
parent4dc3e13132019d16a001afa64c4c380b52a8f9f6 (diff)
downloadopenembedded-770af488582441a0dce0632514e13bc61fa6b1bf.tar.gz
Merge bk://openembedded@openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages 2004/06/06 23:13:00+02:00 uni-frankfurt.de!mickeyl run /sbin/ldconfig during bootmisc.sh 2004/06/06 22:50:48+02:00 uni-frankfurt.de!mickeyl make /etc/profile source everything in /etc/profile.d we should check if we could use run-parts, but i'm not sure if this can source scripts BKrev: 40c388e2zNj7HHEgPtOl93czD_t5LQ
Diffstat (limited to 'base-files')
-rw-r--r--base-files/base-files/etc/profile7
1 files changed, 7 insertions, 0 deletions
diff --git a/base-files/base-files/etc/profile b/base-files/base-files/etc/profile
index 2e28fc777b..08b8355cc1 100644
--- a/base-files/base-files/etc/profile
+++ b/base-files/base-files/etc/profile
@@ -14,6 +14,13 @@ if [ "$PS1" ]; then
PS1='\u@\h:\w\$ '
fi
+if [ -d /etc/profile.d ]; then
+ for i in `ls /etc/profile.d/`; do
+ . /etc/profile.d/$i
+ done
+ unset i
+fi
+
export PATH PS1 OPIEDIR QPEDIR QTDIR
umask 022