mirror of
https://github.com/pygos/init-scripts.git
synced 2024-11-14 17:07:11 +01:00
14 lines
407 B
Text
14 lines
407 B
Text
|
description "mount /sys"
|
||
|
type wait
|
||
|
target boot
|
||
|
after procfs
|
||
|
before vfs
|
||
|
|
||
|
exec {
|
||
|
mount -t sysfs sysfs /sys
|
||
|
"@SCRIPTDIR@/trymount.sh" /sys/kernel/security securityfs nodev,noexec,nosuid
|
||
|
"@SCRIPTDIR@/trymount.sh" /sys/kernel/config configfs nodev,noexec,nosuid
|
||
|
"@SCRIPTDIR@/trymount.sh" /sys/fs/fuse/connections fusectl nodev,noexec,nosuid
|
||
|
"@SCRIPTDIR@/trymount.sh" /sys/firmware/efi/efivars efivarfs ro
|
||
|
}
|