made HOME=/root global instead of x86 specific
SVN-Revision: 8845
This commit is contained in:
parent
0a08fde2dc
commit
f3b9e06a14
6 changed files with 3 additions and 23 deletions
|
@ -156,6 +156,7 @@ define Package/base-files$(TARGET)/install
|
|||
mkdir -p $(1)/usr/bin
|
||||
mkdir -p $(1)/sys
|
||||
mkdir -p $(1)/www
|
||||
mkdir -p $(1)/root
|
||||
ln -sf /proc/mounts $(1)/etc/mtab
|
||||
rm -f $(1)/var
|
||||
ln -sf /tmp $(1)/var
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
root:!:0:0:root:/tmp:/bin/ash
|
||||
root:!:0:0:root:/root:/bin/ash
|
||||
nobody:*:65534:65534:nobody:/var:/bin/false
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
[ -f /etc/banner ] && cat /etc/banner
|
||||
|
||||
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
||||
export HOME=/tmp
|
||||
export HOME=/root
|
||||
export PS1='\u@\h:\w\$ '
|
||||
|
||||
[ -x /bin/more ] || alias more=less
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
define Package/base-files/install-target
|
||||
mkdir -p $(1)/root
|
||||
endef
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
root:!:0:0:root:/root:/bin/ash
|
||||
nobody:*:65534:65534:nobody:/var:/bin/false
|
|
@ -1,14 +0,0 @@
|
|||
#!/bin/sh
|
||||
[ -f /etc/banner ] && cat /etc/banner
|
||||
|
||||
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
||||
export HOME=/root
|
||||
export PS1='\u@\h:\w\$ '
|
||||
|
||||
[ -x /bin/more ] || alias more=less
|
||||
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
|
||||
|
||||
[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
|
||||
|
||||
[ -x /sbin/arp ] || arp() { cat /proc/net/arp; }
|
||||
[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
|
Loading…
Reference in a new issue