help
Support module loading for 2.2.x and 2.4.x Linux kernels.
+config CONFIG_FEATURE_2_6_MODULES
+ bool " Support version 2.6.x Linux kernels"
+ default n
+ depends on CONFIG_INSMOD
+ help
+ Support module loading for newer 2.6.x Linux kernels.
+
config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
bool " Module version checking"
default n
help
lsmod is used to display a list of loaded modules.
-config CONFIG_FEATURE_2_6_MODULES
- bool " Support version 2.6.x Linux kernels"
+config CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT
+ bool " lsmod pretty output for 2.6.x Linux kernels "
default n
- depends on CONFIG_INSMOD || CONFIG_LSMOD
+ depends on CONFIG_LSMOD
help
- Support module loading for newer 2.6.x Linux kernels.
+ This option makes output format of lsmod adjusted to
+ the format of module-init-tools for Linux kernel 2.6.
config CONFIG_FEATURE_QUERY_MODULE_INTERFACE
bool
{
printf("Module Size Used by");
check_tainted();
-#if defined(CONFIG_FEATURE_2_6_MODULES)
+#if defined(CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT)
{
FILE *file;
char line[4096];
}
fclose(file);
}
+ return 0; /* Success */
#else
if (bb_xprint_file_by_name("/proc/modules") < 0) {
return 0;