Revert "Mount /dev with noexec and nosuid"

This reverts commit 4ec97f2b25.
This commit is contained in:
Nick Kralevich 2010-06-15 16:57:23 -07:00
parent 5ab8fed240
commit 4ea0850642

View file

@ -673,7 +673,7 @@ int main(int argc, char **argv)
mkdir("/proc", 0755);
mkdir("/sys", 0755);
mount("tmpfs", "/dev", "tmpfs", MS_NOEXEC | MS_NOSUID, "mode=0755");
mount("tmpfs", "/dev", "tmpfs", 0, "mode=0755");
mkdir("/dev/pts", 0755);
mkdir("/dev/socket", 0755);
mount("devpts", "/dev/pts", "devpts", 0, NULL);