From: John Crispin Date: Thu, 14 Mar 2013 18:36:07 +0000 (+0100) Subject: fix up the mount options to match what openwrt had before using procd as pid 1 X-Git-Url: http://git.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=9fcc900e301e0c304488b6b83f10c8db5b8f4ce0 fix up the mount options to match what openwrt had before using procd as pid 1 Signed-off-by: John Crispin --- diff --git a/early.c b/early.c index 063e1a6..27d0929 100644 --- a/early.c +++ b/early.c @@ -24,19 +24,19 @@ static void early_mounts(void) { - mount("proc", "/proc", "proc", 0, 0); - mount("sysfs", "/sys", "sysfs", 0, 0); + mount("proc", "/proc", "proc", MS_NOATIME, 0); + mount("sysfs", "/sys", "sysfs", MS_NOATIME, 0); - mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID | MS_NODEV, "size=512k,mode=1777"); + mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID | MS_NODEV | MS_NOATIME, NULL); mkdir("/tmp/run", 0777); mkdir("/tmp/lock", 0777); mkdir("/tmp/state", 0777); symlink("/tmp", "/var"); - mount("tmpfs", "/dev", "tmpfs", 0, "mode=0755,size=512K"); + mount("tmpfs", "/dev", "tmpfs", MS_NOATIME, "mode=0755,size=512K"); mkdir("/dev/shm", 0755); mkdir("/dev/pts", 0755); - mount("devpts", "/dev/pts", "devpts", 0, 0); + mount("devpts", "/dev/pts", "devpts", MS_NOATIME, "mode=600"); } static void early_dev(void)