diff options
-rwxr-xr-x | init | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -156,10 +156,10 @@ main() { screen_init # Mount the /proc and /sys filesystems. - mount -t devtmpfs none /dev - mount -t proc none /proc - mount -t tmpfs none /run - mount -t sysfs none /sys + mount -t tmpfs none /run + mount -t devtmpfs none /dev + mount -t sysfs -o nodev,noexec,nosuid sysfs /sys + mount -t proc -o nodev,noexec,nosuid proc /proc local fakeroot='/mnt/root' |