Difference between revisions of "OpenRC, an alternative to systemd"
→Add info about /etc/conf.d/modules
imported>Aaditya |
imported>Aaditya |
||
| Line 337: | Line 337: | ||
See the [https://wiki.archlinux.org/index.php/Fstab#tmpfs Arch Wiki] for more details. | See the [https://wiki.archlinux.org/index.php/Fstab#tmpfs Arch Wiki] for more details. | ||
For OpenRC, the '''modules to be loaded at boot''' are specified in ''/etc/conf.d/modules'' rather than being present in individual files in ''/etc/modules-load.d'' | |||
The required modules can be manually moved over. | |||
My ''/etc/conf.d/modules'' file looks like the following | |||
# You can define a list modules for a specific kernel version, | |||
# a released kernel version, a main kernel version or just a list. | |||
# The most specific versioned variable will take precedence. | |||
#modules_2_6_23_gentoo_r5="ieee1394 ohci1394" | |||
#modules_2_6_23="tun ieee1394" | |||
#modules_2_6="tun" | |||
#modules_2="ipv6" | |||
#modules="ohci1394" | |||
# You can give modules a different name when they load - the new name | |||
# will also be used to pick arguments below. | |||
#modules="dummy:dummy1" | |||
# Give the modules some arguments if needed, per version if necessary. | |||
# Again, the most specific versioned variable will take precedence. | |||
#module_ieee1394_args="debug" | |||
#module_ieee1394_args_2_6_23_gentoo_r5="debug2" | |||
#module_ieee1394_args_2_6_23="debug3" | |||
#module_ieee1394_args_2_6="debug4" | |||
#module_ieee1394_args_2="debug5" | |||
# You should consult your kernel documentation and configuration | |||
# for a list of modules and their options. | |||
modules="vboxdrv" | |||
== Further Reading == | == Further Reading == | ||