From 1a5e11c874a1f53c5205140a9d675b7e6404bbc9 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 16 Oct 2010 01:56:41 +0200 Subject: modutils/*: move help bits into corresponding .c files Signed-off-by: Denys Vlasenko --- modutils/depmod.c | 5 +++++ modutils/insmod.c | 2 ++ modutils/lsmod.c | 7 +++++++ modutils/modprobe-small.c | 43 ++++++++++++++++++++++++++++++++++++++++++- modutils/rmmod.c | 13 +++++++++++++ 5 files changed, 69 insertions(+), 1 deletion(-) (limited to 'modutils') diff --git a/modutils/depmod.c b/modutils/depmod.c index 6a43aa110..fec649882 100644 --- a/modutils/depmod.c +++ b/modutils/depmod.c @@ -10,6 +10,11 @@ //applet:IF_DEPMOD(APPLET(depmod, _BB_DIR_SBIN, _BB_SUID_DROP)) +//usage:#if !ENABLE_MODPROBE_SMALL +//usage:#define depmod_trivial_usage NOUSAGE_STR +//usage:#define depmod_full_usage "" +//usage:#endif + #include "libbb.h" #include "modutils.h" #include /* uname() */ diff --git a/modutils/insmod.c b/modutils/insmod.c index d1f1b076b..7ec3cae47 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -15,6 +15,7 @@ /* 2.6 style insmod has no options and required filename * (not module name - .ko can't be omitted) */ +//usage:#if !ENABLE_MODPROBE_SMALL //usage:#define insmod_trivial_usage //usage: IF_FEATURE_2_4_MODULES("[OPTIONS] MODULE ") //usage: IF_NOT_FEATURE_2_4_MODULES("FILE ") @@ -33,6 +34,7 @@ //usage: ) //usage: "\n -x Don't export externs" //usage: ) +//usage:#endif int insmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int insmod_main(int argc UNUSED_PARAM, char **argv) diff --git a/modutils/lsmod.c b/modutils/lsmod.c index a1477ed85..ab7c11f2a 100644 --- a/modutils/lsmod.c +++ b/modutils/lsmod.c @@ -10,6 +10,13 @@ //applet:IF_LSMOD(APPLET(lsmod, _BB_DIR_SBIN, _BB_SUID_DROP)) +//usage:#if !ENABLE_MODPROBE_SMALL +//usage:#define lsmod_trivial_usage +//usage: "" +//usage:#define lsmod_full_usage "\n\n" +//usage: "List the currently loaded kernel modules" +//usage:#endif + #include "libbb.h" #include "unicode.h" diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c index 86470892a..ec3ddfb8f 100644 --- a/modutils/modprobe-small.c +++ b/modutils/modprobe-small.c @@ -694,6 +694,46 @@ The following options are useful for people managing distributions: */ //usage:#if ENABLE_MODPROBE_SMALL + +//usage:#define depmod_trivial_usage NOUSAGE_STR +//usage:#define depmod_full_usage "" + +//usage:#define lsmod_trivial_usage +//usage: "" +//usage:#define lsmod_full_usage "\n\n" +//usage: "List the currently loaded kernel modules" + +//usage:#define insmod_trivial_usage +//usage: IF_FEATURE_2_4_MODULES("[OPTIONS] MODULE ") +//usage: IF_NOT_FEATURE_2_4_MODULES("FILE ") +//usage: "[SYMBOL=VALUE]..." +//usage:#define insmod_full_usage "\n\n" +//usage: "Load the specified kernel modules into the kernel" +//usage: IF_FEATURE_2_4_MODULES( "\n" +//usage: "\nOptions:" +//usage: "\n -f Force module to load into the wrong kernel version" +//usage: "\n -k Make module autoclean-able" +//usage: "\n -v Verbose" +//usage: "\n -q Quiet" +//usage: "\n -L Lock: prevent simultaneous loads" +//usage: IF_FEATURE_INSMOD_LOAD_MAP( +//usage: "\n -m Output load map to stdout" +//usage: ) +//usage: "\n -x Don't export externs" +//usage: ) + +//usage:#define rmmod_trivial_usage +//usage: "[-wfa] [MODULE]..." +//usage:#define rmmod_full_usage "\n\n" +//usage: "Unload kernel modules\n" +//usage: "\nOptions:" +//usage: "\n -w Wait until the module is no longer used" +//usage: "\n -f Force unload" +//usage: "\n -a Remove all unused modules (recursively)" +//usage: +//usage:#define rmmod_example_usage +//usage: "$ rmmod tulip\n" + //usage:#define modprobe_trivial_usage //usage: "[-qfwrsv] MODULE [symbol=value]..." //usage:#define modprobe_full_usage "\n\n" @@ -704,7 +744,8 @@ The following options are useful for people managing distributions: //usage: "\n -f Force" //usage: "\n -w Wait for unload" //usage: "\n -s Report via syslog instead of stderr" -//usage:#endif /* ENABLE_MODPROBE_SMALL */ + +//usage:#endif int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; int modprobe_main(int argc UNUSED_PARAM, char **argv) diff --git a/modutils/rmmod.c b/modutils/rmmod.c index 51390eb83..dde77731f 100644 --- a/modutils/rmmod.c +++ b/modutils/rmmod.c @@ -10,6 +10,19 @@ //applet:IF_RMMOD(APPLET(rmmod, _BB_DIR_SBIN, _BB_SUID_DROP)) +//usage:#if !ENABLE_MODPROBE_SMALL +//usage:#define rmmod_trivial_usage +//usage: "[-wfa] [MODULE]..." +//usage:#define rmmod_full_usage "\n\n" +//usage: "Unload kernel modules\n" +//usage: "\nOptions:" +//usage: "\n -w Wait until the module is no longer used" +//usage: "\n -f Force unload" +//usage: "\n -a Remove all unused modules (recursively)" +//usage:#define rmmod_example_usage +//usage: "$ rmmod tulip\n" +//usage:#endif + #include "libbb.h" #include "modutils.h" -- cgit v1.2.3