mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
root users folder is now in the fs and no longer /tmp
SVN-Revision: 8844
This commit is contained in:
parent
ce63393e36
commit
0a08fde2dc
5
target/linux/x86/base-files.mk
Normal file
5
target/linux/x86/base-files.mk
Normal file
@ -0,0 +1,5 @@
|
||||
define Package/base-files/install-target
|
||||
mkdir -p $(1)/root
|
||||
endef
|
||||
|
||||
|
2
target/linux/x86/base-files/default/etc/passwd
Normal file
2
target/linux/x86/base-files/default/etc/passwd
Normal file
@ -0,0 +1,2 @@
|
||||
root:!:0:0:root:/root:/bin/ash
|
||||
nobody:*:65534:65534:nobody:/var:/bin/false
|
14
target/linux/x86/base-files/default/etc/profile
Normal file
14
target/linux/x86/base-files/default/etc/profile
Normal file
@ -0,0 +1,14 @@
|
||||
#!/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 New Issue
Block a user