getty: comment out parity detection code; improve usage text
[oweals/busybox.git] / modutils / insmod.c
index 4d211f50ce74a50b231e7cef5b9e3e56f7f9c10a..e5b46f402fe23a310ad3af0a33a5d3acb2744daf 100644 (file)
@@ -4,12 +4,38 @@
  *
  * Copyright (C) 2008 Timo Teras <timo.teras@iki.fi>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
+//applet:IF_INSMOD(APPLET(insmod, BB_DIR_SBIN, BB_SUID_DROP))
+
 #include "libbb.h"
 #include "modutils.h"
 
+/* 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 ")
+//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:#endif
+
 int insmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int insmod_main(int argc UNUSED_PARAM, char **argv)
 {
@@ -19,12 +45,12 @@ int insmod_main(int argc UNUSED_PARAM, char **argv)
        /* Compat note:
         * 2.6 style insmod has no options and required filename
         * (not module name - .ko can't be omitted).
-        * 2.4 style insmod can take module name without .ko
+        * 2.4 style insmod can take module name without .o
         * and performs module search in default directories
         * or in $MODPATH.
         */
 
-       USE_FEATURE_2_4_MODULES(
+       IF_FEATURE_2_4_MODULES(
                getopt32(argv, INSMOD_OPTS INSMOD_ARGS);
                argv += optind - 1;
        );
@@ -35,7 +61,7 @@ int insmod_main(int argc UNUSED_PARAM, char **argv)
 
        rc = bb_init_module(filename, parse_cmdline_module_options(argv));
        if (rc)
-               bb_error_msg("cannot insert '%s': %s", filename, moderror(rc));
+               bb_error_msg("can't insert '%s': %s", filename, moderror(rc));
 
        return rc;
 }