aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-02-07 16:41:25 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-02-07 16:41:25 +0100
commitc2b18583a3df06aeecf535c3cea6856aa1f2e205 (patch)
tree15de075ca1b763bf6f4a47bf811950b5195683ec
parent415cc42b6aab3a3a90749354432e7d780840b1d8 (diff)
downloadbusybox-w32-c2b18583a3df06aeecf535c3cea6856aa1f2e205.tar.gz
busybox-w32-c2b18583a3df06aeecf535c3cea6856aa1f2e205.tar.bz2
busybox-w32-c2b18583a3df06aeecf535c3cea6856aa1f2e205.zip
modprobe_small: if only MODPROBE and DEPMOD are selected, no need to test for them
function old new delta modprobe_main 321 306 -15 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--modutils/modprobe-small.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c
index d6f481415..431b8aeb2 100644
--- a/modutils/modprobe-small.c
+++ b/modutils/modprobe-small.c
@@ -928,7 +928,9 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv)
928 /* Prevent ugly corner cases with no modules at all */ 928 /* Prevent ugly corner cases with no modules at all */
929 modinfo = xzalloc(sizeof(modinfo[0])); 929 modinfo = xzalloc(sizeof(modinfo[0]));
930 930
931 if (is_depmod || is_modprobe) { 931 if ((MOD_APPLET_CNT == 2 && ENABLE_DEPMOD && ENABLE_MODPROBE)
932 || is_depmod || is_modprobe
933 ) {
932 /* Goto modules directory */ 934 /* Goto modules directory */
933 xchdir(CONFIG_DEFAULT_MODULES_DIR); 935 xchdir(CONFIG_DEFAULT_MODULES_DIR);
934 uname(&uts); /* never fails */ 936 uname(&uts); /* never fails */