aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/module.c b/kernel/module.c
index 4edbd9c11aca..9ad9ee9406d6 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -2730,6 +2730,10 @@ static int check_module_license_and_versions(struct module *mod)
2730 if (strcmp(mod->name, "driverloader") == 0) 2730 if (strcmp(mod->name, "driverloader") == 0)
2731 add_taint_module(mod, TAINT_PROPRIETARY_MODULE); 2731 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2732 2732
2733 /* lve claims to be GPL but upstream won't provide source */
2734 if (strcmp(mod->name, "lve") == 0)
2735 add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
2736
2733#ifdef CONFIG_MODVERSIONS 2737#ifdef CONFIG_MODVERSIONS
2734 if ((mod->num_syms && !mod->crcs) 2738 if ((mod->num_syms && !mod->crcs)
2735 || (mod->num_gpl_syms && !mod->gpl_crcs) 2739 || (mod->num_gpl_syms && !mod->gpl_crcs)