diff options
author | Rob Landley <rob@landley.net> | 2005-05-04 00:25:49 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-05-04 00:25:49 +0000 |
commit | 15d3f7f143127fa0a09cc6793ad5fba689cbc1a2 (patch) | |
tree | 445b20bc9b73ebb5f02d63853755ef29c1e4ced7 /modutils | |
parent | 627814bdc3ef9b405a77686d73e7b53ebd767a07 (diff) |
Takeharu Kato's patch added 2.6 support to lsmod; this changes menuconfig
dependencies so 2.6 support depends on insmod or lsmod...
Diffstat (limited to 'modutils')
-rw-r--r-- | modutils/Config.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modutils/Config.in b/modutils/Config.in index ada69d752..81214f73a 100644 --- a/modutils/Config.in +++ b/modutils/Config.in @@ -18,13 +18,6 @@ config CONFIG_FEATURE_2_4_MODULES 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 @@ -80,6 +73,13 @@ config CONFIG_LSMOD 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" + default n + depends on CONFIG_INSMOD || CONFIG_LSMOD + help + Support module loading for newer 2.6.x Linux kernels. + config CONFIG_FEATURE_QUERY_MODULE_INTERFACE bool default y |