Skip to content

Commit

Permalink
fix: add modules.builtin.modinfo to the initramfs
Browse files Browse the repository at this point in the history
This solves all issues, where builtin kernel modules are not recognized
as such.

Fixes: #1146
Fixes: #1099
  • Loading branch information
haraldh committed May 4, 2021
1 parent 10f9e56 commit 87c4c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dracut-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ for_each_module_dir() {
}

dracut_kernel_post() {
for _f in modules.builtin.bin modules.builtin modules.order; do
for _f in modules.builtin modules.builtin.modinfo modules.order; do
[[ -e $srcmods/$_f ]] && inst_simple "$srcmods/$_f" "/lib/modules/$kernel/$_f"
done

Expand Down

0 comments on commit 87c4c17

Please sign in to comment.