diff options
author | Aaron Ball <nullspoon@oper.io> | 2019-03-31 16:41:41 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2019-03-31 16:41:41 -0600 |
commit | 5a560fd5c92c34ca04d2ed33f4bf98c64eb210d0 (patch) | |
tree | b7a113cf771092fd25d704d5b16faa1fb6e97e19 /init | |
parent | 42c4949feddb2c7b126cd41d345d79600df05a61 (diff) | |
download | mkinitramfs-5a560fd5c92c34ca04d2ed33f4bf98c64eb210d0.tar.gz mkinitramfs-5a560fd5c92c34ca04d2ed33f4bf98c64eb210d0.tar.xz |
init: Update tmpfs mounts
Diffstat (limited to 'init')
-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' |