[PATCH] Fix permissions for /etc and other dirs after clean flash (#6039)

During the first OpenWrt boot after a clean flash (when the jffs2
partition is not yet initialized) tmpfs is used instead of the usual
jffs2 overlay filesystem.  If this tmpfs is mounted with default
options, all directories created there (/etc, /etc/config, other
subdirectories in /etc) get permissions 1777 by default, and these
permissions then persist in the created jffs2 at least until
subsequent sysupgrade.  Mounting tmpfs with mode=0755 fixes the
permission problem.

Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23906 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Jo-Philipp Wich 2010-11-07 00:26:00 +00:00
parent a5fa9a2647
commit 48cc34bfa7
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ fopivot() { # <rw_root> <ro_root> <dupe?>
ramoverlay() { ramoverlay() {
mkdir -p /tmp/root mkdir -p /tmp/root
mount -t tmpfs root /tmp/root mount -t tmpfs -o mode=0755 root /tmp/root
fopivot /tmp/root /rom 1 fopivot /tmp/root /rom 1
} }