From 287fdd0d38765bf0c49b856801699ccfbc49c8d9 Mon Sep 17 00:00:00 2001 From: jow Date: Sun, 7 Nov 2010 00:26:00 +0000 Subject: [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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23906 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/files/lib/functions/boot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package') diff --git a/package/base-files/files/lib/functions/boot.sh b/package/base-files/files/lib/functions/boot.sh index fc93eba49..66423d9aa 100644 --- a/package/base-files/files/lib/functions/boot.sh +++ b/package/base-files/files/lib/functions/boot.sh @@ -142,7 +142,7 @@ fopivot() { # ramoverlay() { mkdir -p /tmp/root - mount -t tmpfs root /tmp/root + mount -t tmpfs -o mode=0755 root /tmp/root fopivot /tmp/root /rom 1 } -- cgit v1.2.3