git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb694c8
)
base-files: write history to /mnt/ramfs/home/$USER/ if present. otherwise disable it.
author
Rene Wagner
<rw@handhelds.org>
Thu, 12 Aug 2004 20:59:42 +0000
(20:59 +0000)
committer
Rene Wagner
<rw@handhelds.org>
Thu, 12 Aug 2004 20:59:42 +0000
(20:59 +0000)
BKrev: 411bda3eRjw5u1rQzrytMMuC6JDn0w
base-files/base-files/etc/profile
patch
|
blob
|
history
diff --git
a/base-files/base-files/etc/profile
b/base-files/base-files/etc/profile
index
08b8355
..
08c2afd
100644
(file)
--- a/
base-files/base-files/etc/profile
+++ b/
base-files/base-files/etc/profile
@@
-24,3
+24,9
@@
fi
export PATH PS1 OPIEDIR QPEDIR QTDIR
umask 022
+
+if [ -d /mnt/ramfs/home/$USER ]; then
+ export HISTFILE="/mnt/ramfs/home/$USER/.ash_history"
+else
+ export HISTFILE=""
+fi