Jan Engelhardt
3e7521ddc2
- Remove "rmmod -w" documentation and getopt entry - modprobe: Recognize --allow-unsupported-modules on commandline (fate#316971) - libkmod-config: Recognize allow_unsupported_modules in the configuration (fate#316971) - Drop the non-upstream kmod-no-static.diff; the size difference is negligible. OBS-URL: https://build.opensuse.org/request/show/223975 OBS-URL: https://build.opensuse.org/package/show/Base:System/kmod?expand=0&rev=63
29 lines
907 B
Diff
29 lines
907 B
Diff
From da1cb1dd16edb2533ac431793e5bb3d01b243cae Mon Sep 17 00:00:00 2001
|
|
From: Michal Marek <mmarek@suse.cz>
|
|
Date: Wed, 26 Feb 2014 13:53:38 +0100
|
|
Subject: [PATCH 3/3] libkmod-config: Recognize allow_unsupported_modules in
|
|
the configuration
|
|
|
|
References: fate#316971
|
|
---
|
|
libkmod/libkmod-config.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/libkmod/libkmod-config.c b/libkmod/libkmod-config.c
|
|
index 32adb8b..3950923 100644
|
|
--- a/libkmod/libkmod-config.c
|
|
+++ b/libkmod/libkmod-config.c
|
|
@@ -662,6 +662,9 @@ static int kmod_config_parse(struct kmod_config *config, int fd,
|
|
|| streq(cmd, "config")) {
|
|
ERR(ctx, "%s: command %s is deprecated and not parsed anymore\n",
|
|
filename, cmd);
|
|
+ } else if (streq(cmd, "allow_unsupported_modules")) {
|
|
+ /* dummy option for now */
|
|
+ ;
|
|
} else {
|
|
syntax_error:
|
|
ERR(ctx, "%s line %u: ignoring bad line starting with '%s'\n",
|
|
--
|
|
1.8.4.5
|
|
|