summaryrefslogtreecommitdiffstats
path: root/initd/early.c
diff options
context:
space:
mode:
Diffstat (limited to 'initd/early.c')
-rw-r--r--initd/early.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/initd/early.c b/initd/early.c
index 3f9cf69..89c8104 100644
--- a/initd/early.c
+++ b/initd/early.c
@@ -66,16 +66,20 @@ 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", 01777);
+ symlink("/tmp/shm", "/dev/shm");
mkdir("/dev/pts", 0755);
mount("devpts", "/dev/pts", "devpts", MS_NOATIME, "mode=600");
early_dev();
early_console("/dev/console");
- if (mount_zram_on_tmp())
+ if (mount_zram_on_tmp()) {
mount("tmpfs", "/tmp", "tmpfs", MS_NOSUID | MS_NODEV | MS_NOATIME, NULL);
- else
- mkdev("*", 0600);
+ mkdir("/tmp/shm", 01777);
+ } else {
+ mkdir("/tmp/shm", 01777);
+ mount("tmpfs", "/tmp/shm", "tmpfs", MS_NOSUID | MS_NODEV | MS_NOATIME,
+ "mode=01777");
+ }
mkdir("/tmp/run", 0777);
mkdir("/tmp/lock", 0777);
mkdir("/tmp/state", 0777);