summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/base-files/base-files/mtx-1/profile
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-core/base-files/base-files/mtx-1/profile
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/base-files/base-files/mtx-1/profile')
-rw-r--r--meta/recipes-core/base-files/base-files/mtx-1/profile25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-core/base-files/base-files/mtx-1/profile b/meta/recipes-core/base-files/base-files/mtx-1/profile
new file mode 100644
index 0000000000..bedf2fc7d8
--- /dev/null
+++ b/meta/recipes-core/base-files/base-files/mtx-1/profile
@@ -0,0 +1,25 @@
1# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
2# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
3
4PATH="/usr/local/bin:/usr/bin:/bin"
5
6if [ "`id -u`" -eq 0 ]; then
7 PATH=$PATH:/usr/local/sbin:/usr/sbin:/sbin:
8fi
9if [ "$PS1" ]; then
10# works for bash and ash (no other shells known to be in use here)
11 PS1='\u@\h:\w\$ '
12fi
13
14if [ -d /etc/profile.d ]; then
15 for i in `ls /etc/profile.d/`; do
16 . /etc/profile.d/$i
17 done
18 unset i
19fi
20
21export PATH PS1
22
23umask 022
24
25alias ll="ls -lah" \ No newline at end of file