In systemd/systemd#40485, there were some comments stating that the initrd should contain hwdb:
mkinitcpio already added a patch including it: systemd/systemd#40485 (comment)
Since 106, in hostonly mode dracut does not install the hwdb module unless it's explicitly added because there is no module that depends on it.
|
check() { |
|
if [[ $hostonly ]]; then |
|
return 255 |
|
fi |
|
|
|
return 0 |
|
} |
So the question is: is hwdb always required by systemd? or only by some of the systemd modules?
In systemd/systemd#40485, there were some comments stating that the initrd should contain hwdb:
mkinitcpio already added a patch including it: systemd/systemd#40485 (comment)
Since 106, in hostonly mode dracut does not install the hwdb module unless it's explicitly added because there is no module that depends on it.
dracut/modules.d/74hwdb/module-setup.sh
Lines 5 to 11 in f837e50
So the question is: is hwdb always required by systemd? or only by some of the systemd modules?