diff options
author | Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us> | 2015-07-11 03:58:38 +0200 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-09-15 21:30:11 +0200 |
commit | b6618ffab8ed4981c57f53929276559698541462 (patch) | |
tree | 92c5f1e44221ad0e21e7adae7f01bd0f2b0be424 /plug | |
parent | 9cb7be1a3267744ad64b2422e2be4eeb1763d1d2 (diff) | |
download | unitd-b6618ffab8ed4981c57f53929276559698541462.tar unitd-b6618ffab8ed4981c57f53929276559698541462.zip |
move /dev/shm to /tmp/shm
Since the /dev filesystem is tiny, /dev/shm needs to live somewhere
else.
Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
Diffstat (limited to 'plug')
-rw-r--r-- | plug/coldplug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plug/coldplug.c b/plug/coldplug.c index d3a607d..bfd3513 100644 --- a/plug/coldplug.c +++ b/plug/coldplug.c @@ -45,7 +45,7 @@ void procd_coldplug(void) umount2("/dev/pts", MNT_DETACH); umount2("/dev/", MNT_DETACH); mount("tmpfs", "/dev", "tmpfs", 0, "mode=0755,size=512K"); - mkdir("/dev/shm", 01777); + symlink("/tmp/shm", "/dev/shm"); mkdir("/dev/pts", 0755); umask(oldumask); mount("devpts", "/dev/pts", "devpts", 0, 0); |