Skip to content

Commit

Permalink
Revert "kernel: do not try to probe builtin modules on empty kmod pac…
Browse files Browse the repository at this point in the history
…kage install"

This change currently causes some issues with loading out of tree kernel modules
so revert that commit for now.

Reverts commit 34c01e6. Fixes FS#919.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
  • Loading branch information
jow- committed Jul 21, 2017
1 parent e3d135a commit 3e26340
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions include/kernel.mk
Expand Up @@ -136,7 +136,6 @@ define ModuleAutoLoad
local mod; \
shift 2; \
for mod in $$$$$$$$mods; do \
[ -e $(2)/$(MODULES_SUBDIR)/$$$$$$$$mod.ko ] || continue; \
mkdir -p $(2)/etc/modules.d; \
echo "$$$$$$$$mod" >> $(2)/etc/modules.d/$(1); \
done; \
Expand All @@ -155,7 +154,6 @@ define ModuleAutoLoad
local mod; \
shift 3; \
for mod in $$$$$$$$mods; do \
[ -e $(2)/$(MODULES_SUBDIR)/$$$$$$$$mod.ko ] || continue; \
mkdir -p $(2)/etc/modules.d; \
echo "$$$$$$$$mod" >> $(2)/etc/modules.d/$$$$$$$$priority-$(1); \
done; \
Expand Down

0 comments on commit 3e26340

Please sign in to comment.