aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-08-05 07:59:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-08-05 07:59:25 +0000
commit35d8c47987a96a53d810bae94b50442fda07b4fc (patch)
tree176c3c7f80ddbba635b61ae197ef38712e1c881a
parent82ad032e263de5d69a70cc9b169aab393f5a2b50 (diff)
downloadbusybox-w32-35d8c47987a96a53d810bae94b50442fda07b4fc.tar.gz
busybox-w32-35d8c47987a96a53d810bae94b50442fda07b4fc.tar.bz2
busybox-w32-35d8c47987a96a53d810bae94b50442fda07b4fc.zip
whitespace fixes, no code changed
-rw-r--r--modutils/modprobe-small.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/modutils/modprobe-small.c b/modutils/modprobe-small.c
index 4aa2b5862..ea130b83c 100644
--- a/modutils/modprobe-small.c
+++ b/modutils/modprobe-small.c
@@ -640,7 +640,7 @@ Usage: rmmod [-fhswvV] modulename ...
640 -s (or --syslog) says use syslog, not stderr 640 -s (or --syslog) says use syslog, not stderr
641 -v (or --verbose) enables more messages 641 -v (or --verbose) enables more messages
642 -V (or --version) prints the version code 642 -V (or --version) prints the version code
643 -w (or --wait) begins a module removal even if it is used 643 -w (or --wait) begins module removal even if it is used
644 and will stop new users from accessing the module (so it 644 and will stop new users from accessing the module (so it
645 should eventually fall to zero). 645 should eventually fall to zero).
646 646
@@ -658,19 +658,20 @@ depmod [-n -e -v -q -r -u] [-F kernelsyms] module1.ko module2.ko ...
658If no arguments (except options) are given, "depmod -a" is assumed. 658If no arguments (except options) are given, "depmod -a" is assumed.
659depmod will output a dependancy list suitable for the modprobe utility. 659depmod will output a dependancy list suitable for the modprobe utility.
660Options: 660Options:
661 -a, --all Probe all modules 661 -a, --all Probe all modules
662 -A, --quick Only does the work if there's a new module 662 -A, --quick Only does the work if there's a new module
663 -n, --show Write the dependency file on stdout only 663 -n, --show Write the dependency file on stdout only
664 -e, --errsyms Report not supplied symbols 664 -e, --errsyms Report not supplied symbols
665 -V, --version Print the release version 665 -V, --version Print the release version
666 -v, --verbose Enable verbose mode 666 -v, --verbose Enable verbose mode
667 -h, --help Print this usage message 667 -h, --help Print this usage message
668The following options are useful for people managing distributions: 668The following options are useful for people managing distributions:
669 -b basedirectory 669 -b basedirectory
670 --basedir basedirectory Use an image of a module tree. 670 --basedir basedirectory
671 Use an image of a module tree
671 -F kernelsyms 672 -F kernelsyms
672 --filesyms kernelsyms Use the file instead of the 673 --filesyms kernelsyms
673 current kernel symbols. 674 Use the file instead of the current kernel symbols
674*/ 675*/
675 676
676int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 677int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;