summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/modules.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/modules.c')
-rw-r--r--mdk-stage1/modules.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/mdk-stage1/modules.c b/mdk-stage1/modules.c
index a0876416e..654873146 100644
--- a/mdk-stage1/modules.c
+++ b/mdk-stage1/modules.c
@@ -373,7 +373,13 @@ static enum insmod_return insmod_with_deps(const char * mod_name, char * options
return INSMOD_OK;
log_message("needs %s", mod_name);
- return insmod_archived_file(mod_name, options, allow_modules_floppy);
+ {
+ char *file = asprintf_("/modules/%s%s", mod_name, kernel_module_extension());
+ if (access(file, R_OK) == 0)
+ return insmod_local_file(file, options);
+ else
+ return insmod_archived_file(mod_name, options, allow_modules_floppy);
+ }
}