diff options
author | Denys Vlasenko | 2016-12-23 15:12:27 +0100 |
---|---|---|
committer | Denys Vlasenko | 2017-01-01 13:01:04 +0100 |
commit | d28cd9900a58a902b1bf53404a250dfb345b2e96 (patch) | |
tree | 7e832618ab92babf39751ef1ffb65b30577765bd /modutils/rmmod.c | |
parent | 909edacc5ef8960784c5ec1ab529522bed1deaa8 (diff) | |
download | busybox-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.c | 5 |
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 |