diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-02 21:05:05 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-02 21:05:23 +0200 |
commit | 122c1c819803fe742d9dac8088ac717469f3240c (patch) | |
tree | e4d1e9b80037b025a381ae94a2f73eddf0571623 /src/mount-setup.c | |
parent | 1f48cf56cb2693b84fdc76dc8df0b048ed50ef43 (diff) |
mounts: make /cgroup a tmpfs file system
Diffstat (limited to 'src/mount-setup.c')
-rw-r--r-- | src/mount-setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mount-setup.c b/src/mount-setup.c index 889cf67eb5..333107d0be 100644 --- a/src/mount-setup.c +++ b/src/mount-setup.c @@ -44,9 +44,10 @@ typedef struct MountPoint { static const MountPoint mount_table[] = { { "proc", "/proc", "proc", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV, true }, { "sysfs", "/sys", "sysfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV, true }, - { "devtmps", "/dev", "devtmpfs", "mode=755", MS_NOSUID, true }, + { "devtmpfs", "/dev", "devtmpfs", "mode=755", MS_NOSUID, true }, { "tmpfs", "/dev/shm", "tmpfs", "mode=1777", MS_NOSUID|MS_NOEXEC|MS_NODEV, true }, { "devpts", "/dev/pts", "devpts", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV, false }, + { "tmpfs", "/cgroup", "tmpfs", "mode=755", MS_NOSUID|MS_NOEXEC|MS_NODEV, true }, { "cgroup", "/cgroup/systemd", "cgroup", "none,name=systemd", MS_NOSUID|MS_NOEXEC|MS_NODEV, true }, }; |