diff options
author | Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us> | 2015-06-17 11:51:37 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-06-17 12:08:33 +0200 |
commit | acb157e638aa93490ca84be381c28643d50d4e4a (patch) | |
tree | e09407651ad74fd20d7e16d9e58af4d144795438 /initd | |
parent | 9562ce477476a27851ec90cfbf971b8cb41c81a6 (diff) | |
download | unitd-acb157e638aa93490ca84be381c28643d50d4e4a.tar unitd-acb157e638aa93490ca84be381c28643d50d4e4a.zip |
fix /dev/shm permissions
On my Ubuntu system, the permissions are 1777. They are incorrect in
procd, leading to this:
https://forum.openwrt.org/viewtopic.php?id=57073
This in intended for both CC and DD.
Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
Diffstat (limited to 'initd')
-rw-r--r-- | initd/early.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/initd/early.c b/initd/early.c index ccf7aab..e57ea9d 100644 --- a/initd/early.c +++ b/initd/early.c @@ -64,7 +64,7 @@ early_mounts(void) mount("sysfs", "/sys", "sysfs", MS_NOATIME, 0); mount("none", "/sys/fs/cgroup", "cgroup", 0, 0); mount("tmpfs", "/dev", "tmpfs", MS_NOATIME, "mode=0755,size=512K"); - mkdir("/dev/shm", 0755); + mkdir("/dev/shm", 01777); mkdir("/dev/pts", 0755); mount("devpts", "/dev/pts", "devpts", MS_NOATIME, "mode=600"); early_dev(); |