From: John Crispin Date: Wed, 19 Sep 2007 19:51:11 +0000 (+0000) Subject: root users folder is now in the fs and no longer /tmp X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=5ce175f7462b62c3f298fd74389c01221b77e2d5 root users folder is now in the fs and no longer /tmp SVN-Revision: 8844 --- 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 $*; }