[systemd-commits] src/mount-setup.c
Lennart Poettering
lennart at kemper.freedesktop.org
Wed Jun 2 12:05:32 PDT 2010
src/mount-setup.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 122c1c819803fe742d9dac8088ac717469f3240c
Author: Lennart Poettering <lennart at poettering.net>
Date: Wed Jun 2 21:05:05 2010 +0200
mounts: make /cgroup a tmpfs file system
diff --git a/src/mount-setup.c b/src/mount-setup.c
index 889cf67..333107d 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 },
};
More information about the systemd-commits
mailing list