kill off insmod support for older pre 2.1 Linux kernels,
which are not supported with the current busybox 1.0 release -Erik
This commit is contained in:
@@ -11,31 +11,24 @@ config CONFIG_INSMOD
|
||||
help
|
||||
insmod is used to load specified modules in the running kernel.
|
||||
|
||||
config CONFIG_FEATURE_2_2_MODULES
|
||||
bool " Support older (pre 2.1) Linux kernels"
|
||||
default n
|
||||
depends on CONFIG_INSMOD
|
||||
help
|
||||
Provide insmod support for older (pre 2.1) Linux kernels.
|
||||
|
||||
config CONFIG_FEATURE_2_4_MODULES
|
||||
bool " Support version 2.1.x to 2.4.x Linux kernels"
|
||||
bool " Support version 2.2.x to 2.4.x Linux kernels"
|
||||
default y
|
||||
depends on CONFIG_INSMOD && !CONFIG_FEATURE_2_6_MODULES
|
||||
depends on CONFIG_INSMOD
|
||||
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 && !CONFIG_FEATURE_2_4_MODULES
|
||||
depends on CONFIG_INSMOD
|
||||
help
|
||||
Support module loading for 2.6.x Linux kernels.
|
||||
Support module loading for newer 2.6.x Linux kernels.
|
||||
|
||||
config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
|
||||
bool " Module version checking"
|
||||
default n
|
||||
depends on CONFIG_INSMOD && ( CONFIG_FEATURE_2_2_MODULES || CONFIG_FEATURE_2_4_MODULES )
|
||||
depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
|
||||
help
|
||||
Support checking of versions for modules. This is used to
|
||||
ensure that the kernel and module are made for each other.
|
||||
@@ -43,7 +36,7 @@ config CONFIG_FEATURE_INSMOD_VERSION_CHECKING
|
||||
config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
|
||||
bool " Add module symbols to kernel symbol table"
|
||||
default n
|
||||
depends on CONFIG_INSMOD && ( CONFIG_FEATURE_2_2_MODULES || CONFIG_FEATURE_2_4_MODULES )
|
||||
depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
|
||||
help
|
||||
By adding module symbols to the kernel symbol table, Oops messages
|
||||
occuring within kernel modules can be properly debugged. By enabling
|
||||
@@ -54,7 +47,7 @@ config CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS
|
||||
config CONFIG_FEATURE_INSMOD_LOADINKMEM
|
||||
bool " In kernel memory optimization (uClinux only)"
|
||||
default n
|
||||
depends on CONFIG_INSMOD && ( CONFIG_FEATURE_2_2_MODULES || CONFIG_FEATURE_2_4_MODULES )
|
||||
depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
|
||||
help
|
||||
This is a special uClinux only memory optimization that lets insmod
|
||||
load the specified kernel module directly into kernel space, reducing
|
||||
@@ -64,7 +57,7 @@ config CONFIG_FEATURE_INSMOD_LOADINKMEM
|
||||
config CONFIG_FEATURE_INSMOD_LOAD_MAP
|
||||
bool " Enable load map (-m) option"
|
||||
default n
|
||||
depends on CONFIG_INSMOD && ( CONFIG_FEATURE_2_2_MODULES || CONFIG_FEATURE_2_4_MODULES )
|
||||
depends on CONFIG_INSMOD && CONFIG_FEATURE_2_4_MODULES
|
||||
help
|
||||
Enabling this, one would be able to get a load map
|
||||
output on stdout. This makes kernel module debugging
|
||||
|
Reference in New Issue
Block a user