| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The previous configuration loaded in this order:
1. /etc/modules
2. /etc/modules-load.d/*.conf
3. /run/modules-load.d/*.conf
4. /usr/lib/modules-load.d/*.conf
5. /lib/modules-load.d/*.conf
This is completely backwards and with this commit it will now be.
1. /lib/modules-load.d/*.conf -> System and base packages configuration
2. /usr/lib/modules-load.d/*.conf -> Other packages configuration
3. /etc/modules -> Local admin configuration
4. /etc/modules-load.d/*.conf -> Local admin configuration (preferred)
5. /run/modules-load.d/*.conf -> Runtime configuration
|
| |
|
|
|
|
|
|
|
|
|
| |
Old sed script did not remove blank lines, so one could easily get:
modprobe: ERROR: missing parameters. See -h.
during boot, e.g. from comment in /etc/modules-load.d/lm_sensors.conf
generated by sensors-detect (from lm_sensors-detect package).
|
|
|
|
|
|
|
|
| |
This makes it convenient for scripts to generate module lists to load at
boot, for example lm_sensors. (ref #4186)
We also get some systemd compatibility:
http://www.freedesktop.org/software/systemd/man/modules-load.d.html
|
|
|
|
|
|
|
|
|
|
| |
ref #3699
The following services should not be started on LXC:
- hwdrivers
- keymaps
- modloop
- modules
|
| |
|
|
added maintainer to several packages as well
|