move the last change to the right place
[openwrt.git] / package / base-files / files / etc / profile
index ae514b0..001fb20 100644 (file)
@@ -2,11 +2,14 @@
 [ -f /etc/banner ] && cat /etc/banner
 
 export PATH=/bin:/sbin:/usr/bin:/usr/sbin
+export HOME=/tmp
 export PS1='\u@\h:\w\$ '
 
 alias more=less
 [ -x /usr/bin/vim ] || alias vim=vi
 
+[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
+
 arp() { cat /proc/net/arp; }
-ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
+[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
 reboot() { ifdown wan 2>&1 >/dev/null ; /sbin/reboot; }
This page took 0.021432 seconds and 4 git commands to generate.