diff options
author | Rene Wagner <rw@handhelds.org> | 2004-08-12 23:27:57 +0000 |
---|---|---|
committer | Rene Wagner <rw@handhelds.org> | 2004-08-12 23:27:57 +0000 |
commit | 2099bbd82f92bca51683cdc298cd64fac38542f6 (patch) | |
tree | 45f4dbfd448eaa98d3c5c1969e4b2c674b7d8f76 /base-files | |
parent | 074ae3cd9f928cc924581f7877e86cf4714c3a65 (diff) |
base-files:
disable history writing altogether for now. need to find a clean way to write things to alternative locations (ramdisk, sd, ...)
BKrev: 411bfcfdDxW8SQ_QnMIwXxgASSuEGQ
Diffstat (limited to 'base-files')
-rw-r--r-- | base-files/base-files/etc/profile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/base-files/base-files/etc/profile b/base-files/base-files/etc/profile index c047b25b0e..b5e70c00ee 100644 --- a/base-files/base-files/etc/profile +++ b/base-files/base-files/etc/profile @@ -25,8 +25,5 @@ export PATH PS1 OPIEDIR QPEDIR QTDIR umask 022 -if [ -d /mnt/ram/home/$USER ]; then - export HISTFILE="/mnt/ram/home/$USER/.ash_history" -else - export HISTFILE="" -fi +# disable history writing +export HISTFILE="" |