summaryrefslogtreecommitdiff
path: root/modutils/rmmod.c
diff options
context:
space:
mode:
authorDenys Vlasenko2016-12-23 15:12:27 +0100
committerDenys Vlasenko2017-01-01 13:01:04 +0100
commitd28cd9900a58a902b1bf53404a250dfb345b2e96 (patch)
tree7e832618ab92babf39751ef1ffb65b30577765bd /modutils/rmmod.c
parent909edacc5ef8960784c5ec1ab529522bed1deaa8 (diff)
downloadbusybox-d28cd9900a58a902b1bf53404a250dfb345b2e96.zip
busybox-d28cd9900a58a902b1bf53404a250dfb345b2e96.tar.gz
modprobe-small: make applets individually selectable
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'modutils/rmmod.c')
-rw-r--r--modutils/rmmod.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/modutils/rmmod.c b/modutils/rmmod.c
index e035883..4c4d508 100644
--- a/modutils/rmmod.c
+++ b/modutils/rmmod.c
@@ -10,14 +10,15 @@
//config:config RMMOD
//config: bool "rmmod"
//config: default n
-//config: depends on !MODPROBE_SMALL
//config: select PLATFORM_LINUX
//config: help
//config: rmmod is used to unload specified modules from the kernel.
-//applet:IF_RMMOD(APPLET(rmmod, BB_DIR_SBIN, BB_SUID_DROP))
+//applet:IF_RMMOD(IF_NOT_MODPROBE_SMALL(APPLET(rmmod, BB_DIR_SBIN, BB_SUID_DROP)))
+//kbuild:ifneq ($(CONFIG_MODPROBE_SMALL),y)
//kbuild:lib-$(CONFIG_RMMOD) += rmmod.o modutils.o
+//kbuild:endif
//usage:#if !ENABLE_MODPROBE_SMALL
//usage:#define rmmod_trivial_usage