diff options
author | John Crispin <john@openwrt.org> | 2007-09-19 19:51:11 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2007-09-19 19:51:11 +0000 |
commit | 0a08fde2dc6eae2c603a2e87a16a84309415b4ba (patch) | |
tree | aa0e339df3575ab71ac8ab4146848f4c70179703 /target/linux | |
parent | ce63393e3663a28c8a875c16793f177c62e8d2b7 (diff) | |
download | upstream-0a08fde2dc6eae2c603a2e87a16a84309415b4ba.tar.gz upstream-0a08fde2dc6eae2c603a2e87a16a84309415b4ba.tar.bz2 upstream-0a08fde2dc6eae2c603a2e87a16a84309415b4ba.zip |
root users folder is now in the fs and no longer /tmp
SVN-Revision: 8844
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/x86/base-files.mk | 5 | ||||
-rw-r--r-- | target/linux/x86/base-files/default/etc/passwd | 2 | ||||
-rw-r--r-- | target/linux/x86/base-files/default/etc/profile | 14 |
3 files changed, 21 insertions, 0 deletions
diff --git a/target/linux/x86/base-files.mk b/target/linux/x86/base-files.mk new file mode 100644 index 0000000000..d77ab55b8e --- /dev/null +++ b/target/linux/x86/base-files.mk @@ -0,0 +1,5 @@ +define Package/base-files/install-target + mkdir -p $(1)/root +endef + + diff --git a/target/linux/x86/base-files/default/etc/passwd b/target/linux/x86/base-files/default/etc/passwd new file mode 100644 index 0000000000..6fe6ab5ad4 --- /dev/null +++ b/target/linux/x86/base-files/default/etc/passwd @@ -0,0 +1,2 @@ +root:!:0:0:root:/root:/bin/ash +nobody:*:65534:65534:nobody:/var:/bin/false diff --git a/target/linux/x86/base-files/default/etc/profile b/target/linux/x86/base-files/default/etc/profile new file mode 100644 index 0000000000..e82408ff83 --- /dev/null +++ b/target/linux/x86/base-files/default/etc/profile @@ -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 $*; } |