diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-07-23 00:20:12 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2011-10-01 05:25:04 +0200 |
commit | 9794b3de943908858920e91bc54b4948b6d1468d (patch) | |
tree | c80608a44713666f5ddcb9297572554b1c0a12c9 | |
parent | ef7c66b58b7947f1d06c9d8b8b170b5b84592c76 (diff) | |
download | mkinitcpio-9794b3de943908858920e91bc54b4948b6d1468d.tar.gz mkinitcpio-9794b3de943908858920e91bc54b4948b6d1468d.tar.xz |
init: allow /run to be mounted with exec perms
This is already done in initscripts so we mirror it here.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
-rw-r--r-- | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ else # /dev/mem is needed if we want to load uvesafb before triggering uevents mknod /dev/mem c 1 1 fi -mount -t tmpfs run /run -o nosuid,noexec,nodev,mode=755,size=10M +mount -t tmpfs run /run -o nosuid,nodev,mode=755,size=10M echo "/sbin/modprobe" > /proc/sys/kernel/modprobe |